blob: f86ae51c28061f77ecf33235dc6cda8c3df54aaa [file] [log] [blame]
Steve Narofff8ecff22008-05-01 22:18:59 +00001//===--- SemaInit.cpp - Semantic Analysis for Initializers ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner0cb78032009-02-24 22:27:37 +000010// This file implements semantic analysis for initializers. The main entry
11// point is Sema::CheckInitList(), but all of the work is performed
12// within the InitListChecker class.
13//
Chris Lattner9ececce2009-02-24 22:48:58 +000014// This file also implements Sema::CheckInitializerTypes.
Steve Narofff8ecff22008-05-01 22:18:59 +000015//
16//===----------------------------------------------------------------------===//
17
Douglas Gregor3e1e5272009-12-09 23:02:17 +000018#include "SemaInit.h"
Douglas Gregor4e0299b2010-01-01 00:03:05 +000019#include "Lookup.h"
Steve Narofff8ecff22008-05-01 22:18:59 +000020#include "Sema.h"
Tanya Lattner5029d562010-03-07 04:17:15 +000021#include "clang/Lex/Preprocessor.h"
Douglas Gregore4a0bb72009-01-22 00:58:24 +000022#include "clang/Parse/Designator.h"
Steve Narofff8ecff22008-05-01 22:18:59 +000023#include "clang/AST/ASTContext.h"
Anders Carlsson98cee2f2009-05-27 16:10:08 +000024#include "clang/AST/ExprCXX.h"
Chris Lattnerd8b741c82009-02-24 23:10:27 +000025#include "clang/AST/ExprObjC.h"
Douglas Gregor1b303932009-12-22 15:35:07 +000026#include "clang/AST/TypeLoc.h"
Douglas Gregor3e1e5272009-12-09 23:02:17 +000027#include "llvm/Support/ErrorHandling.h"
Douglas Gregor85df8d82009-01-29 00:45:39 +000028#include <map>
Douglas Gregore4a0bb72009-01-22 00:58:24 +000029using namespace clang;
Steve Narofff8ecff22008-05-01 22:18:59 +000030
Chris Lattner0cb78032009-02-24 22:27:37 +000031//===----------------------------------------------------------------------===//
32// Sema Initialization Checking
33//===----------------------------------------------------------------------===//
34
Chris Lattnerd8b741c82009-02-24 23:10:27 +000035static Expr *IsStringInit(Expr *Init, QualType DeclType, ASTContext &Context) {
Chris Lattnera9196812009-02-26 23:26:43 +000036 const ArrayType *AT = Context.getAsArrayType(DeclType);
37 if (!AT) return 0;
38
Eli Friedman893abe42009-05-29 18:22:49 +000039 if (!isa<ConstantArrayType>(AT) && !isa<IncompleteArrayType>(AT))
40 return 0;
41
Chris Lattnera9196812009-02-26 23:26:43 +000042 // See if this is a string literal or @encode.
43 Init = Init->IgnoreParens();
Mike Stump11289f42009-09-09 15:08:12 +000044
Chris Lattnera9196812009-02-26 23:26:43 +000045 // Handle @encode, which is a narrow string.
46 if (isa<ObjCEncodeExpr>(Init) && AT->getElementType()->isCharType())
47 return Init;
48
49 // Otherwise we can only handle string literals.
50 StringLiteral *SL = dyn_cast<StringLiteral>(Init);
Chris Lattner012b3392009-02-26 23:42:47 +000051 if (SL == 0) return 0;
Eli Friedman42a84652009-05-31 10:54:53 +000052
53 QualType ElemTy = Context.getCanonicalType(AT->getElementType());
Chris Lattnera9196812009-02-26 23:26:43 +000054 // char array can be initialized with a narrow string.
55 // Only allow char x[] = "foo"; not char x[] = L"foo";
56 if (!SL->isWide())
Eli Friedman42a84652009-05-31 10:54:53 +000057 return ElemTy->isCharType() ? Init : 0;
Chris Lattnera9196812009-02-26 23:26:43 +000058
Eli Friedman42a84652009-05-31 10:54:53 +000059 // wchar_t array can be initialized with a wide string: C99 6.7.8p15 (with
60 // correction from DR343): "An array with element type compatible with a
61 // qualified or unqualified version of wchar_t may be initialized by a wide
62 // string literal, optionally enclosed in braces."
63 if (Context.typesAreCompatible(Context.getWCharType(),
64 ElemTy.getUnqualifiedType()))
Chris Lattnera9196812009-02-26 23:26:43 +000065 return Init;
Mike Stump11289f42009-09-09 15:08:12 +000066
Chris Lattner0cb78032009-02-24 22:27:37 +000067 return 0;
68}
69
Chris Lattnerd8b741c82009-02-24 23:10:27 +000070static void CheckStringInit(Expr *Str, QualType &DeclT, Sema &S) {
71 // Get the length of the string as parsed.
72 uint64_t StrLength =
73 cast<ConstantArrayType>(Str->getType())->getSize().getZExtValue();
74
Mike Stump11289f42009-09-09 15:08:12 +000075
Chris Lattnerd8b741c82009-02-24 23:10:27 +000076 const ArrayType *AT = S.Context.getAsArrayType(DeclT);
Chris Lattner0cb78032009-02-24 22:27:37 +000077 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Mike Stump11289f42009-09-09 15:08:12 +000078 // C99 6.7.8p14. We have an array of character type with unknown size
Chris Lattner0cb78032009-02-24 22:27:37 +000079 // being initialized to a string literal.
80 llvm::APSInt ConstVal(32);
Chris Lattner94e6c4b2009-02-24 23:01:39 +000081 ConstVal = StrLength;
Chris Lattner0cb78032009-02-24 22:27:37 +000082 // Return a new array type (C99 6.7.8p22).
John McCallc5b82252009-10-16 00:14:28 +000083 DeclT = S.Context.getConstantArrayType(IAT->getElementType(),
84 ConstVal,
85 ArrayType::Normal, 0);
Chris Lattner94e6c4b2009-02-24 23:01:39 +000086 return;
Chris Lattner0cb78032009-02-24 22:27:37 +000087 }
Mike Stump11289f42009-09-09 15:08:12 +000088
Eli Friedman893abe42009-05-29 18:22:49 +000089 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Mike Stump11289f42009-09-09 15:08:12 +000090
Eli Friedman893abe42009-05-29 18:22:49 +000091 // C99 6.7.8p14. We have an array of character type with known size. However,
92 // the size may be smaller or larger than the string we are initializing.
93 // FIXME: Avoid truncation for 64-bit length strings.
94 if (StrLength-1 > CAT->getSize().getZExtValue())
95 S.Diag(Str->getSourceRange().getBegin(),
96 diag::warn_initializer_string_for_char_array_too_long)
97 << Str->getSourceRange();
Mike Stump11289f42009-09-09 15:08:12 +000098
Eli Friedman893abe42009-05-29 18:22:49 +000099 // Set the type to the actual size that we are initializing. If we have
100 // something like:
101 // char x[1] = "foo";
102 // then this will set the string literal's type to char[1].
103 Str->setType(DeclT);
Chris Lattner0cb78032009-02-24 22:27:37 +0000104}
105
Chris Lattner0cb78032009-02-24 22:27:37 +0000106//===----------------------------------------------------------------------===//
107// Semantic checking for initializer lists.
108//===----------------------------------------------------------------------===//
109
Douglas Gregorcde232f2009-01-29 01:05:33 +0000110/// @brief Semantic checking for initializer lists.
111///
112/// The InitListChecker class contains a set of routines that each
113/// handle the initialization of a certain kind of entity, e.g.,
114/// arrays, vectors, struct/union types, scalars, etc. The
115/// InitListChecker itself performs a recursive walk of the subobject
116/// structure of the type to be initialized, while stepping through
117/// the initializer list one element at a time. The IList and Index
118/// parameters to each of the Check* routines contain the active
119/// (syntactic) initializer list and the index into that initializer
120/// list that represents the current initializer. Each routine is
121/// responsible for moving that Index forward as it consumes elements.
122///
123/// Each Check* routine also has a StructuredList/StructuredIndex
124/// arguments, which contains the current the "structured" (semantic)
125/// initializer list and the index into that initializer list where we
126/// are copying initializers as we map them over to the semantic
127/// list. Once we have completed our recursive walk of the subobject
128/// structure, we will have constructed a full semantic initializer
129/// list.
130///
131/// C99 designators cause changes in the initializer list traversal,
132/// because they make the initialization "jump" into a specific
133/// subobject and then continue the initialization from that
134/// point. CheckDesignatedInitializer() recursively steps into the
135/// designated subobject and manages backing out the recursion to
136/// initialize the subobjects after the one designated.
Chris Lattner9ececce2009-02-24 22:48:58 +0000137namespace {
Douglas Gregor85df8d82009-01-29 00:45:39 +0000138class InitListChecker {
Chris Lattnerb0912a52009-02-24 22:50:46 +0000139 Sema &SemaRef;
Douglas Gregor85df8d82009-01-29 00:45:39 +0000140 bool hadError;
141 std::map<InitListExpr *, InitListExpr *> SyntacticToSemantic;
142 InitListExpr *FullyStructuredList;
Mike Stump11289f42009-09-09 15:08:12 +0000143
Anders Carlsson6cabf312010-01-23 23:23:01 +0000144 void CheckImplicitInitList(const InitializedEntity &Entity,
Anders Carlssondbb25a32010-01-23 20:47:59 +0000145 InitListExpr *ParentIList, QualType T,
Douglas Gregorcde232f2009-01-29 01:05:33 +0000146 unsigned &Index, InitListExpr *StructuredList,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000147 unsigned &StructuredIndex,
148 bool TopLevelObject = false);
Anders Carlsson6cabf312010-01-23 23:23:01 +0000149 void CheckExplicitInitList(const InitializedEntity &Entity,
Anders Carlssond0849252010-01-23 19:55:29 +0000150 InitListExpr *IList, QualType &T,
Douglas Gregorcde232f2009-01-29 01:05:33 +0000151 unsigned &Index, InitListExpr *StructuredList,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000152 unsigned &StructuredIndex,
153 bool TopLevelObject = false);
Anders Carlsson6cabf312010-01-23 23:23:01 +0000154 void CheckListElementTypes(const InitializedEntity &Entity,
Anders Carlssond0849252010-01-23 19:55:29 +0000155 InitListExpr *IList, QualType &DeclType,
Mike Stump11289f42009-09-09 15:08:12 +0000156 bool SubobjectIsDesignatorContext,
Douglas Gregor85df8d82009-01-29 00:45:39 +0000157 unsigned &Index,
Douglas Gregorcde232f2009-01-29 01:05:33 +0000158 InitListExpr *StructuredList,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000159 unsigned &StructuredIndex,
160 bool TopLevelObject = false);
Anders Carlsson6cabf312010-01-23 23:23:01 +0000161 void CheckSubElementType(const InitializedEntity &Entity,
Anders Carlssond0849252010-01-23 19:55:29 +0000162 InitListExpr *IList, QualType ElemType,
Douglas Gregor85df8d82009-01-29 00:45:39 +0000163 unsigned &Index,
Douglas Gregorcde232f2009-01-29 01:05:33 +0000164 InitListExpr *StructuredList,
165 unsigned &StructuredIndex);
Anders Carlsson6cabf312010-01-23 23:23:01 +0000166 void CheckScalarType(const InitializedEntity &Entity,
Anders Carlssond0849252010-01-23 19:55:29 +0000167 InitListExpr *IList, QualType DeclType,
Douglas Gregor85df8d82009-01-29 00:45:39 +0000168 unsigned &Index,
Douglas Gregorcde232f2009-01-29 01:05:33 +0000169 InitListExpr *StructuredList,
170 unsigned &StructuredIndex);
Anders Carlsson6cabf312010-01-23 23:23:01 +0000171 void CheckReferenceType(const InitializedEntity &Entity,
172 InitListExpr *IList, QualType DeclType,
Douglas Gregord14247a2009-01-30 22:09:00 +0000173 unsigned &Index,
174 InitListExpr *StructuredList,
175 unsigned &StructuredIndex);
Anders Carlsson6cabf312010-01-23 23:23:01 +0000176 void CheckVectorType(const InitializedEntity &Entity,
Anders Carlssond0849252010-01-23 19:55:29 +0000177 InitListExpr *IList, QualType DeclType, unsigned &Index,
Douglas Gregorcde232f2009-01-29 01:05:33 +0000178 InitListExpr *StructuredList,
179 unsigned &StructuredIndex);
Anders Carlsson6cabf312010-01-23 23:23:01 +0000180 void CheckStructUnionTypes(const InitializedEntity &Entity,
Anders Carlsson73eb7cd2010-01-23 20:20:40 +0000181 InitListExpr *IList, QualType DeclType,
Mike Stump11289f42009-09-09 15:08:12 +0000182 RecordDecl::field_iterator Field,
Douglas Gregor85df8d82009-01-29 00:45:39 +0000183 bool SubobjectIsDesignatorContext, unsigned &Index,
Douglas Gregorcde232f2009-01-29 01:05:33 +0000184 InitListExpr *StructuredList,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000185 unsigned &StructuredIndex,
186 bool TopLevelObject = false);
Anders Carlsson6cabf312010-01-23 23:23:01 +0000187 void CheckArrayType(const InitializedEntity &Entity,
Anders Carlsson0cf999b2010-01-23 20:13:41 +0000188 InitListExpr *IList, QualType &DeclType,
Mike Stump11289f42009-09-09 15:08:12 +0000189 llvm::APSInt elementIndex,
Douglas Gregor85df8d82009-01-29 00:45:39 +0000190 bool SubobjectIsDesignatorContext, unsigned &Index,
Douglas Gregorcde232f2009-01-29 01:05:33 +0000191 InitListExpr *StructuredList,
192 unsigned &StructuredIndex);
Anders Carlsson6cabf312010-01-23 23:23:01 +0000193 bool CheckDesignatedInitializer(const InitializedEntity &Entity,
Anders Carlsson3fa93b72010-01-23 22:49:02 +0000194 InitListExpr *IList, DesignatedInitExpr *DIE,
Douglas Gregora5324162009-04-15 04:56:10 +0000195 unsigned DesigIdx,
Mike Stump11289f42009-09-09 15:08:12 +0000196 QualType &CurrentObjectType,
Douglas Gregor85df8d82009-01-29 00:45:39 +0000197 RecordDecl::field_iterator *NextField,
198 llvm::APSInt *NextElementIndex,
199 unsigned &Index,
200 InitListExpr *StructuredList,
201 unsigned &StructuredIndex,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000202 bool FinishSubobjectInit,
203 bool TopLevelObject);
Douglas Gregor85df8d82009-01-29 00:45:39 +0000204 InitListExpr *getStructuredSubobjectInit(InitListExpr *IList, unsigned Index,
205 QualType CurrentObjectType,
206 InitListExpr *StructuredList,
207 unsigned StructuredIndex,
208 SourceRange InitRange);
Douglas Gregorcde232f2009-01-29 01:05:33 +0000209 void UpdateStructuredListElement(InitListExpr *StructuredList,
210 unsigned &StructuredIndex,
Douglas Gregor85df8d82009-01-29 00:45:39 +0000211 Expr *expr);
212 int numArrayElements(QualType DeclType);
213 int numStructUnionElements(QualType DeclType);
Douglas Gregord14247a2009-01-30 22:09:00 +0000214
Douglas Gregor2bb07652009-12-22 00:05:34 +0000215 void FillInValueInitForField(unsigned Init, FieldDecl *Field,
216 const InitializedEntity &ParentEntity,
217 InitListExpr *ILE, bool &RequiresSecondPass);
Douglas Gregor723796a2009-12-16 06:35:08 +0000218 void FillInValueInitializations(const InitializedEntity &Entity,
219 InitListExpr *ILE, bool &RequiresSecondPass);
Douglas Gregor85df8d82009-01-29 00:45:39 +0000220public:
Douglas Gregor723796a2009-12-16 06:35:08 +0000221 InitListChecker(Sema &S, const InitializedEntity &Entity,
222 InitListExpr *IL, QualType &T);
Douglas Gregor85df8d82009-01-29 00:45:39 +0000223 bool HadError() { return hadError; }
224
225 // @brief Retrieves the fully-structured initializer list used for
226 // semantic analysis and code generation.
227 InitListExpr *getFullyStructuredList() const { return FullyStructuredList; }
228};
Chris Lattner9ececce2009-02-24 22:48:58 +0000229} // end anonymous namespace
Chris Lattnerd9ae05b2009-01-29 05:10:57 +0000230
Douglas Gregor2bb07652009-12-22 00:05:34 +0000231void InitListChecker::FillInValueInitForField(unsigned Init, FieldDecl *Field,
232 const InitializedEntity &ParentEntity,
233 InitListExpr *ILE,
234 bool &RequiresSecondPass) {
235 SourceLocation Loc = ILE->getSourceRange().getBegin();
236 unsigned NumInits = ILE->getNumInits();
237 InitializedEntity MemberEntity
238 = InitializedEntity::InitializeMember(Field, &ParentEntity);
239 if (Init >= NumInits || !ILE->getInit(Init)) {
240 // FIXME: We probably don't need to handle references
241 // specially here, since value-initialization of references is
242 // handled in InitializationSequence.
243 if (Field->getType()->isReferenceType()) {
244 // C++ [dcl.init.aggr]p9:
245 // If an incomplete or empty initializer-list leaves a
246 // member of reference type uninitialized, the program is
247 // ill-formed.
248 SemaRef.Diag(Loc, diag::err_init_reference_member_uninitialized)
249 << Field->getType()
250 << ILE->getSyntacticForm()->getSourceRange();
251 SemaRef.Diag(Field->getLocation(),
252 diag::note_uninit_reference_member);
253 hadError = true;
254 return;
255 }
256
257 InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
258 true);
259 InitializationSequence InitSeq(SemaRef, MemberEntity, Kind, 0, 0);
260 if (!InitSeq) {
261 InitSeq.Diagnose(SemaRef, MemberEntity, Kind, 0, 0);
262 hadError = true;
263 return;
264 }
265
266 Sema::OwningExprResult MemberInit
267 = InitSeq.Perform(SemaRef, MemberEntity, Kind,
268 Sema::MultiExprArg(SemaRef, 0, 0));
269 if (MemberInit.isInvalid()) {
270 hadError = true;
271 return;
272 }
273
274 if (hadError) {
275 // Do nothing
276 } else if (Init < NumInits) {
277 ILE->setInit(Init, MemberInit.takeAs<Expr>());
278 } else if (InitSeq.getKind()
279 == InitializationSequence::ConstructorInitialization) {
280 // Value-initialization requires a constructor call, so
281 // extend the initializer list to include the constructor
282 // call and make a note that we'll need to take another pass
283 // through the initializer list.
Ted Kremenek013041e2010-02-19 01:50:18 +0000284 ILE->updateInit(Init, MemberInit.takeAs<Expr>());
Douglas Gregor2bb07652009-12-22 00:05:34 +0000285 RequiresSecondPass = true;
286 }
287 } else if (InitListExpr *InnerILE
288 = dyn_cast<InitListExpr>(ILE->getInit(Init)))
289 FillInValueInitializations(MemberEntity, InnerILE,
290 RequiresSecondPass);
291}
292
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000293/// Recursively replaces NULL values within the given initializer list
294/// with expressions that perform value-initialization of the
295/// appropriate type.
Douglas Gregor723796a2009-12-16 06:35:08 +0000296void
297InitListChecker::FillInValueInitializations(const InitializedEntity &Entity,
298 InitListExpr *ILE,
299 bool &RequiresSecondPass) {
Mike Stump11289f42009-09-09 15:08:12 +0000300 assert((ILE->getType() != SemaRef.Context.VoidTy) &&
Douglas Gregord14247a2009-01-30 22:09:00 +0000301 "Should not have void type");
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000302 SourceLocation Loc = ILE->getSourceRange().getBegin();
303 if (ILE->getSyntacticForm())
304 Loc = ILE->getSyntacticForm()->getSourceRange().getBegin();
Mike Stump11289f42009-09-09 15:08:12 +0000305
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000306 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) {
Douglas Gregor2bb07652009-12-22 00:05:34 +0000307 if (RType->getDecl()->isUnion() &&
308 ILE->getInitializedFieldInUnion())
309 FillInValueInitForField(0, ILE->getInitializedFieldInUnion(),
310 Entity, ILE, RequiresSecondPass);
311 else {
312 unsigned Init = 0;
313 for (RecordDecl::field_iterator
314 Field = RType->getDecl()->field_begin(),
315 FieldEnd = RType->getDecl()->field_end();
316 Field != FieldEnd; ++Field) {
317 if (Field->isUnnamedBitfield())
318 continue;
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000319
Douglas Gregor2bb07652009-12-22 00:05:34 +0000320 if (hadError)
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000321 return;
Douglas Gregor2bb07652009-12-22 00:05:34 +0000322
323 FillInValueInitForField(Init, *Field, Entity, ILE, RequiresSecondPass);
324 if (hadError)
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000325 return;
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000326
Douglas Gregor2bb07652009-12-22 00:05:34 +0000327 ++Init;
Douglas Gregor723796a2009-12-16 06:35:08 +0000328
Douglas Gregor2bb07652009-12-22 00:05:34 +0000329 // Only look at the first initialization of a union.
330 if (RType->getDecl()->isUnion())
331 break;
332 }
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000333 }
334
335 return;
Mike Stump11289f42009-09-09 15:08:12 +0000336 }
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000337
338 QualType ElementType;
Mike Stump11289f42009-09-09 15:08:12 +0000339
Douglas Gregor723796a2009-12-16 06:35:08 +0000340 InitializedEntity ElementEntity = Entity;
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000341 unsigned NumInits = ILE->getNumInits();
342 unsigned NumElements = NumInits;
Chris Lattnerb0912a52009-02-24 22:50:46 +0000343 if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) {
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000344 ElementType = AType->getElementType();
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000345 if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType))
346 NumElements = CAType->getSize().getZExtValue();
Douglas Gregor723796a2009-12-16 06:35:08 +0000347 ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context,
348 0, Entity);
John McCall9dd450b2009-09-21 23:43:11 +0000349 } else if (const VectorType *VType = ILE->getType()->getAs<VectorType>()) {
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000350 ElementType = VType->getElementType();
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000351 NumElements = VType->getNumElements();
Douglas Gregor723796a2009-12-16 06:35:08 +0000352 ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context,
353 0, Entity);
Mike Stump11289f42009-09-09 15:08:12 +0000354 } else
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000355 ElementType = ILE->getType();
Mike Stump11289f42009-09-09 15:08:12 +0000356
Douglas Gregor723796a2009-12-16 06:35:08 +0000357
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000358 for (unsigned Init = 0; Init != NumElements; ++Init) {
Douglas Gregor4f4b1862009-12-16 18:50:27 +0000359 if (hadError)
360 return;
361
Anders Carlssoned8d80d2010-01-23 04:34:47 +0000362 if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement ||
363 ElementEntity.getKind() == InitializedEntity::EK_VectorElement)
Douglas Gregor723796a2009-12-16 06:35:08 +0000364 ElementEntity.setElementIndex(Init);
365
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000366 if (Init >= NumInits || !ILE->getInit(Init)) {
Douglas Gregor723796a2009-12-16 06:35:08 +0000367 InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
368 true);
369 InitializationSequence InitSeq(SemaRef, ElementEntity, Kind, 0, 0);
370 if (!InitSeq) {
371 InitSeq.Diagnose(SemaRef, ElementEntity, Kind, 0, 0);
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000372 hadError = true;
373 return;
374 }
375
Douglas Gregor723796a2009-12-16 06:35:08 +0000376 Sema::OwningExprResult ElementInit
377 = InitSeq.Perform(SemaRef, ElementEntity, Kind,
378 Sema::MultiExprArg(SemaRef, 0, 0));
379 if (ElementInit.isInvalid()) {
Douglas Gregor4f4b1862009-12-16 18:50:27 +0000380 hadError = true;
Douglas Gregor723796a2009-12-16 06:35:08 +0000381 return;
382 }
383
384 if (hadError) {
385 // Do nothing
386 } else if (Init < NumInits) {
387 ILE->setInit(Init, ElementInit.takeAs<Expr>());
388 } else if (InitSeq.getKind()
389 == InitializationSequence::ConstructorInitialization) {
390 // Value-initialization requires a constructor call, so
391 // extend the initializer list to include the constructor
392 // call and make a note that we'll need to take another pass
393 // through the initializer list.
Ted Kremenek013041e2010-02-19 01:50:18 +0000394 ILE->updateInit(Init, ElementInit.takeAs<Expr>());
Douglas Gregor723796a2009-12-16 06:35:08 +0000395 RequiresSecondPass = true;
396 }
Mike Stump12b8ce12009-08-04 21:02:39 +0000397 } else if (InitListExpr *InnerILE
Douglas Gregor723796a2009-12-16 06:35:08 +0000398 = dyn_cast<InitListExpr>(ILE->getInit(Init)))
399 FillInValueInitializations(ElementEntity, InnerILE, RequiresSecondPass);
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000400 }
401}
402
Chris Lattnerd9ae05b2009-01-29 05:10:57 +0000403
Douglas Gregor723796a2009-12-16 06:35:08 +0000404InitListChecker::InitListChecker(Sema &S, const InitializedEntity &Entity,
405 InitListExpr *IL, QualType &T)
Chris Lattnerb0912a52009-02-24 22:50:46 +0000406 : SemaRef(S) {
Steve Narofff8ecff22008-05-01 22:18:59 +0000407 hadError = false;
Eli Friedman5a36d3f2008-05-19 20:00:43 +0000408
Eli Friedman23a9e312008-05-19 19:16:24 +0000409 unsigned newIndex = 0;
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000410 unsigned newStructuredIndex = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000411 FullyStructuredList
Douglas Gregor5741efb2009-03-01 17:12:46 +0000412 = getStructuredSubobjectInit(IL, newIndex, T, 0, 0, IL->getSourceRange());
Anders Carlsson6cabf312010-01-23 23:23:01 +0000413 CheckExplicitInitList(Entity, IL, T, newIndex,
Anders Carlssond0849252010-01-23 19:55:29 +0000414 FullyStructuredList, newStructuredIndex,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000415 /*TopLevelObject=*/true);
Eli Friedman5a36d3f2008-05-19 20:00:43 +0000416
Douglas Gregor723796a2009-12-16 06:35:08 +0000417 if (!hadError) {
418 bool RequiresSecondPass = false;
419 FillInValueInitializations(Entity, FullyStructuredList, RequiresSecondPass);
Douglas Gregor4f4b1862009-12-16 18:50:27 +0000420 if (RequiresSecondPass && !hadError)
Douglas Gregor723796a2009-12-16 06:35:08 +0000421 FillInValueInitializations(Entity, FullyStructuredList,
422 RequiresSecondPass);
423 }
Steve Narofff8ecff22008-05-01 22:18:59 +0000424}
425
426int InitListChecker::numArrayElements(QualType DeclType) {
Eli Friedman85f54972008-05-25 13:22:35 +0000427 // FIXME: use a proper constant
428 int maxElements = 0x7FFFFFFF;
Chris Lattner7adf0762008-08-04 07:31:14 +0000429 if (const ConstantArrayType *CAT =
Chris Lattnerb0912a52009-02-24 22:50:46 +0000430 SemaRef.Context.getAsConstantArrayType(DeclType)) {
Steve Narofff8ecff22008-05-01 22:18:59 +0000431 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
432 }
433 return maxElements;
434}
435
436int InitListChecker::numStructUnionElements(QualType DeclType) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000437 RecordDecl *structDecl = DeclType->getAs<RecordType>()->getDecl();
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000438 int InitializableMembers = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000439 for (RecordDecl::field_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000440 Field = structDecl->field_begin(),
441 FieldEnd = structDecl->field_end();
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000442 Field != FieldEnd; ++Field) {
443 if ((*Field)->getIdentifier() || !(*Field)->isBitField())
444 ++InitializableMembers;
445 }
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +0000446 if (structDecl->isUnion())
Eli Friedman0e56c822008-05-25 14:03:31 +0000447 return std::min(InitializableMembers, 1);
448 return InitializableMembers - structDecl->hasFlexibleArrayMember();
Steve Narofff8ecff22008-05-01 22:18:59 +0000449}
450
Anders Carlsson6cabf312010-01-23 23:23:01 +0000451void InitListChecker::CheckImplicitInitList(const InitializedEntity &Entity,
Anders Carlssondbb25a32010-01-23 20:47:59 +0000452 InitListExpr *ParentIList,
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000453 QualType T, unsigned &Index,
454 InitListExpr *StructuredList,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000455 unsigned &StructuredIndex,
456 bool TopLevelObject) {
Steve Narofff8ecff22008-05-01 22:18:59 +0000457 int maxElements = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000458
Steve Narofff8ecff22008-05-01 22:18:59 +0000459 if (T->isArrayType())
460 maxElements = numArrayElements(T);
461 else if (T->isStructureType() || T->isUnionType())
462 maxElements = numStructUnionElements(T);
Eli Friedman23a9e312008-05-19 19:16:24 +0000463 else if (T->isVectorType())
John McCall9dd450b2009-09-21 23:43:11 +0000464 maxElements = T->getAs<VectorType>()->getNumElements();
Steve Narofff8ecff22008-05-01 22:18:59 +0000465 else
466 assert(0 && "CheckImplicitInitList(): Illegal type");
Eli Friedman23a9e312008-05-19 19:16:24 +0000467
Eli Friedmane0f832b2008-05-25 13:49:22 +0000468 if (maxElements == 0) {
Chris Lattnerb0912a52009-02-24 22:50:46 +0000469 SemaRef.Diag(ParentIList->getInit(Index)->getLocStart(),
Eli Friedmane0f832b2008-05-25 13:49:22 +0000470 diag::err_implicit_empty_initializer);
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000471 ++Index;
Eli Friedmane0f832b2008-05-25 13:49:22 +0000472 hadError = true;
473 return;
474 }
475
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000476 // Build a structured initializer list corresponding to this subobject.
477 InitListExpr *StructuredSubobjectInitList
Mike Stump11289f42009-09-09 15:08:12 +0000478 = getStructuredSubobjectInit(ParentIList, Index, T, StructuredList,
479 StructuredIndex,
Douglas Gregor5741efb2009-03-01 17:12:46 +0000480 SourceRange(ParentIList->getInit(Index)->getSourceRange().getBegin(),
481 ParentIList->getSourceRange().getEnd()));
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000482 unsigned StructuredSubobjectInitIndex = 0;
Eli Friedman23a9e312008-05-19 19:16:24 +0000483
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000484 // Check the element types and build the structural subobject.
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000485 unsigned StartIndex = Index;
Anders Carlssondbb25a32010-01-23 20:47:59 +0000486 CheckListElementTypes(Entity, ParentIList, T,
487 /*SubobjectIsDesignatorContext=*/false, Index,
Mike Stump11289f42009-09-09 15:08:12 +0000488 StructuredSubobjectInitList,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000489 StructuredSubobjectInitIndex,
490 TopLevelObject);
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000491 unsigned EndIndex = (Index == StartIndex? StartIndex : Index - 1);
Douglas Gregor07d8e3a2009-03-20 00:32:56 +0000492 StructuredSubobjectInitList->setType(T);
493
Douglas Gregor5741efb2009-03-01 17:12:46 +0000494 // Update the structured sub-object initializer so that it's ending
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000495 // range corresponds with the end of the last initializer it used.
496 if (EndIndex < ParentIList->getNumInits()) {
Mike Stump11289f42009-09-09 15:08:12 +0000497 SourceLocation EndLoc
Douglas Gregora5c9e1a2009-02-02 17:43:21 +0000498 = ParentIList->getInit(EndIndex)->getSourceRange().getEnd();
499 StructuredSubobjectInitList->setRBraceLoc(EndLoc);
500 }
Tanya Lattner5029d562010-03-07 04:17:15 +0000501
502 // Warn about missing braces.
503 if (T->isArrayType() || T->isRecordType()) {
Tanya Lattner5cbff482010-03-07 04:40:06 +0000504 SemaRef.Diag(StructuredSubobjectInitList->getLocStart(),
505 diag::warn_missing_braces)
Tanya Lattner5029d562010-03-07 04:17:15 +0000506 << StructuredSubobjectInitList->getSourceRange()
507 << CodeModificationHint::CreateInsertion(
508 StructuredSubobjectInitList->getLocStart(),
Tanya Lattner5cbff482010-03-07 04:40:06 +0000509 "{")
Tanya Lattner5029d562010-03-07 04:17:15 +0000510 << CodeModificationHint::CreateInsertion(
511 SemaRef.PP.getLocForEndOfToken(
Tanya Lattner5cb196e2010-03-07 04:47:12 +0000512 StructuredSubobjectInitList->getLocEnd()),
513 "}");
Tanya Lattner5029d562010-03-07 04:17:15 +0000514 }
Steve Narofff8ecff22008-05-01 22:18:59 +0000515}
516
Anders Carlsson6cabf312010-01-23 23:23:01 +0000517void InitListChecker::CheckExplicitInitList(const InitializedEntity &Entity,
Anders Carlssond0849252010-01-23 19:55:29 +0000518 InitListExpr *IList, QualType &T,
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000519 unsigned &Index,
520 InitListExpr *StructuredList,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000521 unsigned &StructuredIndex,
522 bool TopLevelObject) {
Eli Friedman5a36d3f2008-05-19 20:00:43 +0000523 assert(IList->isExplicit() && "Illegal Implicit InitListExpr");
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000524 SyntacticToSemantic[IList] = StructuredList;
525 StructuredList->setSyntacticForm(IList);
Anders Carlssond0849252010-01-23 19:55:29 +0000526 CheckListElementTypes(Entity, IList, T, /*SubobjectIsDesignatorContext=*/true,
527 Index, StructuredList, StructuredIndex, TopLevelObject);
Douglas Gregor34c0a902010-02-09 00:50:06 +0000528 IList->setType(T.getNonReferenceType());
529 StructuredList->setType(T.getNonReferenceType());
Eli Friedman85f54972008-05-25 13:22:35 +0000530 if (hadError)
531 return;
Eli Friedman5a36d3f2008-05-19 20:00:43 +0000532
Eli Friedman85f54972008-05-25 13:22:35 +0000533 if (Index < IList->getNumInits()) {
Eli Friedman5a36d3f2008-05-19 20:00:43 +0000534 // We have leftover initializers
Eli Friedmanbd327452009-05-29 20:20:05 +0000535 if (StructuredIndex == 1 &&
536 IsStringInit(StructuredList->getInit(0), T, SemaRef.Context)) {
Douglas Gregor1cba5fe2009-02-18 22:23:55 +0000537 unsigned DK = diag::warn_excess_initializers_in_char_array_initializer;
Eli Friedmanbd327452009-05-29 20:20:05 +0000538 if (SemaRef.getLangOptions().CPlusPlus) {
Douglas Gregor1cba5fe2009-02-18 22:23:55 +0000539 DK = diag::err_excess_initializers_in_char_array_initializer;
Eli Friedmanbd327452009-05-29 20:20:05 +0000540 hadError = true;
541 }
Eli Friedmanfeb4cc12008-05-19 20:12:18 +0000542 // Special-case
Chris Lattnerb0912a52009-02-24 22:50:46 +0000543 SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
Chris Lattnerf490e152008-11-19 05:27:50 +0000544 << IList->getInit(Index)->getSourceRange();
Eli Friedmand0e48ea2008-05-20 05:25:56 +0000545 } else if (!T->isIncompleteType()) {
Douglas Gregord42a0fb2009-01-30 22:26:29 +0000546 // Don't complain for incomplete types, since we'll get an error
547 // elsewhere
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000548 QualType CurrentObjectType = StructuredList->getType();
Mike Stump11289f42009-09-09 15:08:12 +0000549 int initKind =
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000550 CurrentObjectType->isArrayType()? 0 :
551 CurrentObjectType->isVectorType()? 1 :
552 CurrentObjectType->isScalarType()? 2 :
553 CurrentObjectType->isUnionType()? 3 :
554 4;
Douglas Gregor1cba5fe2009-02-18 22:23:55 +0000555
556 unsigned DK = diag::warn_excess_initializers;
Eli Friedmanbd327452009-05-29 20:20:05 +0000557 if (SemaRef.getLangOptions().CPlusPlus) {
558 DK = diag::err_excess_initializers;
559 hadError = true;
560 }
Nate Begeman425038c2009-07-07 21:53:06 +0000561 if (SemaRef.getLangOptions().OpenCL && initKind == 1) {
562 DK = diag::err_excess_initializers;
563 hadError = true;
564 }
Douglas Gregor1cba5fe2009-02-18 22:23:55 +0000565
Chris Lattnerb0912a52009-02-24 22:50:46 +0000566 SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000567 << initKind << IList->getInit(Index)->getSourceRange();
Eli Friedman5a36d3f2008-05-19 20:00:43 +0000568 }
569 }
Eli Friedman6fcdec22008-05-19 20:20:43 +0000570
Eli Friedman0b4af8f2009-05-16 11:45:48 +0000571 if (T->isScalarType() && !TopLevelObject)
Chris Lattnerb0912a52009-02-24 22:50:46 +0000572 SemaRef.Diag(IList->getLocStart(), diag::warn_braces_around_scalar_init)
Douglas Gregor170512f2009-04-01 23:51:29 +0000573 << IList->getSourceRange()
Chris Lattner3c7b86f2009-12-06 17:36:05 +0000574 << CodeModificationHint::CreateRemoval(IList->getLocStart())
575 << CodeModificationHint::CreateRemoval(IList->getLocEnd());
Steve Narofff8ecff22008-05-01 22:18:59 +0000576}
577
Anders Carlsson6cabf312010-01-23 23:23:01 +0000578void InitListChecker::CheckListElementTypes(const InitializedEntity &Entity,
Anders Carlssond0849252010-01-23 19:55:29 +0000579 InitListExpr *IList,
Mike Stump11289f42009-09-09 15:08:12 +0000580 QualType &DeclType,
Douglas Gregord7fb85e2009-01-22 23:26:18 +0000581 bool SubobjectIsDesignatorContext,
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000582 unsigned &Index,
583 InitListExpr *StructuredList,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000584 unsigned &StructuredIndex,
585 bool TopLevelObject) {
Eli Friedman5a36d3f2008-05-19 20:00:43 +0000586 if (DeclType->isScalarType()) {
Anders Carlssond0849252010-01-23 19:55:29 +0000587 CheckScalarType(Entity, IList, DeclType, Index,
588 StructuredList, StructuredIndex);
Eli Friedman5a36d3f2008-05-19 20:00:43 +0000589 } else if (DeclType->isVectorType()) {
Anders Carlssond0849252010-01-23 19:55:29 +0000590 CheckVectorType(Entity, IList, DeclType, Index,
591 StructuredList, StructuredIndex);
Douglas Gregorddb24852009-01-30 17:31:00 +0000592 } else if (DeclType->isAggregateType()) {
593 if (DeclType->isRecordType()) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000594 RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
Anders Carlsson73eb7cd2010-01-23 20:20:40 +0000595 CheckStructUnionTypes(Entity, IList, DeclType, RD->field_begin(),
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000596 SubobjectIsDesignatorContext, Index,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000597 StructuredList, StructuredIndex,
598 TopLevelObject);
Douglas Gregord7fb85e2009-01-22 23:26:18 +0000599 } else if (DeclType->isArrayType()) {
Douglas Gregor033d1252009-01-23 16:54:12 +0000600 llvm::APSInt Zero(
Chris Lattnerb0912a52009-02-24 22:50:46 +0000601 SemaRef.Context.getTypeSize(SemaRef.Context.getSizeType()),
Douglas Gregor033d1252009-01-23 16:54:12 +0000602 false);
Anders Carlsson0cf999b2010-01-23 20:13:41 +0000603 CheckArrayType(Entity, IList, DeclType, Zero,
604 SubobjectIsDesignatorContext, Index,
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000605 StructuredList, StructuredIndex);
Mike Stump12b8ce12009-08-04 21:02:39 +0000606 } else
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000607 assert(0 && "Aggregate that isn't a structure or array?!");
Steve Naroffeaf58532008-08-10 16:05:48 +0000608 } else if (DeclType->isVoidType() || DeclType->isFunctionType()) {
609 // This type is invalid, issue a diagnostic.
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000610 ++Index;
Chris Lattnerb0912a52009-02-24 22:50:46 +0000611 SemaRef.Diag(IList->getLocStart(), diag::err_illegal_initializer_type)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000612 << DeclType;
Eli Friedmand0e48ea2008-05-20 05:25:56 +0000613 hadError = true;
Douglas Gregord14247a2009-01-30 22:09:00 +0000614 } else if (DeclType->isRecordType()) {
615 // C++ [dcl.init]p14:
616 // [...] If the class is an aggregate (8.5.1), and the initializer
617 // is a brace-enclosed list, see 8.5.1.
618 //
619 // Note: 8.5.1 is handled below; here, we diagnose the case where
620 // we have an initializer list and a destination type that is not
621 // an aggregate.
622 // FIXME: In C++0x, this is yet another form of initialization.
Chris Lattnerb0912a52009-02-24 22:50:46 +0000623 SemaRef.Diag(IList->getLocStart(), diag::err_init_non_aggr_init_list)
Douglas Gregord14247a2009-01-30 22:09:00 +0000624 << DeclType << IList->getSourceRange();
625 hadError = true;
626 } else if (DeclType->isReferenceType()) {
Anders Carlsson6cabf312010-01-23 23:23:01 +0000627 CheckReferenceType(Entity, IList, DeclType, Index,
628 StructuredList, StructuredIndex);
Steve Narofff8ecff22008-05-01 22:18:59 +0000629 } else {
630 // In C, all types are either scalars or aggregates, but
Mike Stump11289f42009-09-09 15:08:12 +0000631 // additional handling is needed here for C++ (and possibly others?).
Steve Narofff8ecff22008-05-01 22:18:59 +0000632 assert(0 && "Unsupported initializer type");
633 }
634}
635
Anders Carlsson6cabf312010-01-23 23:23:01 +0000636void InitListChecker::CheckSubElementType(const InitializedEntity &Entity,
Anders Carlssond0849252010-01-23 19:55:29 +0000637 InitListExpr *IList,
Mike Stump11289f42009-09-09 15:08:12 +0000638 QualType ElemType,
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000639 unsigned &Index,
640 InitListExpr *StructuredList,
641 unsigned &StructuredIndex) {
Douglas Gregorf6d27522009-01-29 00:39:20 +0000642 Expr *expr = IList->getInit(Index);
Eli Friedman5a36d3f2008-05-19 20:00:43 +0000643 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
644 unsigned newIndex = 0;
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000645 unsigned newStructuredIndex = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000646 InitListExpr *newStructuredList
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000647 = getStructuredSubobjectInit(IList, Index, ElemType,
648 StructuredList, StructuredIndex,
649 SubInitList->getSourceRange());
Anders Carlssond0849252010-01-23 19:55:29 +0000650 CheckExplicitInitList(Entity, SubInitList, ElemType, newIndex,
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000651 newStructuredList, newStructuredIndex);
652 ++StructuredIndex;
653 ++Index;
Chris Lattnerd8b741c82009-02-24 23:10:27 +0000654 } else if (Expr *Str = IsStringInit(expr, ElemType, SemaRef.Context)) {
655 CheckStringInit(Str, ElemType, SemaRef);
Chris Lattneredbf3ba2009-02-24 22:41:04 +0000656 UpdateStructuredListElement(StructuredList, StructuredIndex, Str);
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000657 ++Index;
Eli Friedman5a36d3f2008-05-19 20:00:43 +0000658 } else if (ElemType->isScalarType()) {
Anders Carlssond0849252010-01-23 19:55:29 +0000659 CheckScalarType(Entity, IList, ElemType, Index,
660 StructuredList, StructuredIndex);
Douglas Gregord14247a2009-01-30 22:09:00 +0000661 } else if (ElemType->isReferenceType()) {
Anders Carlsson6cabf312010-01-23 23:23:01 +0000662 CheckReferenceType(Entity, IList, ElemType, Index,
663 StructuredList, StructuredIndex);
Eli Friedman23a9e312008-05-19 19:16:24 +0000664 } else {
Chris Lattnerb0912a52009-02-24 22:50:46 +0000665 if (SemaRef.getLangOptions().CPlusPlus) {
Douglas Gregord14247a2009-01-30 22:09:00 +0000666 // C++ [dcl.init.aggr]p12:
667 // All implicit type conversions (clause 4) are considered when
668 // initializing the aggregate member with an ini- tializer from
669 // an initializer-list. If the initializer can initialize a
670 // member, the member is initialized. [...]
Anders Carlsson03068aa2009-08-27 17:18:13 +0000671
Anders Carlsson0bd52402010-01-24 00:19:41 +0000672 // FIXME: Better EqualLoc?
673 InitializationKind Kind =
674 InitializationKind::CreateCopy(expr->getLocStart(), SourceLocation());
675 InitializationSequence Seq(SemaRef, Entity, Kind, &expr, 1);
676
677 if (Seq) {
678 Sema::OwningExprResult Result =
679 Seq.Perform(SemaRef, Entity, Kind,
680 Sema::MultiExprArg(SemaRef, (void **)&expr, 1));
681 if (Result.isInvalid())
Douglas Gregord14247a2009-01-30 22:09:00 +0000682 hadError = true;
Anders Carlsson0bd52402010-01-24 00:19:41 +0000683
684 UpdateStructuredListElement(StructuredList, StructuredIndex,
685 Result.takeAs<Expr>());
Douglas Gregord14247a2009-01-30 22:09:00 +0000686 ++Index;
687 return;
688 }
689
690 // Fall through for subaggregate initialization
691 } else {
Mike Stump11289f42009-09-09 15:08:12 +0000692 // C99 6.7.8p13:
Douglas Gregord14247a2009-01-30 22:09:00 +0000693 //
694 // The initializer for a structure or union object that has
695 // automatic storage duration shall be either an initializer
696 // list as described below, or a single expression that has
697 // compatible structure or union type. In the latter case, the
698 // initial value of the object, including unnamed members, is
699 // that of the expression.
Eli Friedman9782caa2009-06-13 10:38:46 +0000700 if ((ElemType->isRecordType() || ElemType->isVectorType()) &&
Eli Friedman893abe42009-05-29 18:22:49 +0000701 SemaRef.Context.hasSameUnqualifiedType(expr->getType(), ElemType)) {
Douglas Gregord14247a2009-01-30 22:09:00 +0000702 UpdateStructuredListElement(StructuredList, StructuredIndex, expr);
703 ++Index;
704 return;
705 }
706
707 // Fall through for subaggregate initialization
708 }
709
710 // C++ [dcl.init.aggr]p12:
Mike Stump11289f42009-09-09 15:08:12 +0000711 //
Douglas Gregord14247a2009-01-30 22:09:00 +0000712 // [...] Otherwise, if the member is itself a non-empty
713 // subaggregate, brace elision is assumed and the initializer is
714 // considered for the initialization of the first member of
715 // the subaggregate.
716 if (ElemType->isAggregateType() || ElemType->isVectorType()) {
Anders Carlssondbb25a32010-01-23 20:47:59 +0000717 CheckImplicitInitList(Entity, IList, ElemType, Index, StructuredList,
Douglas Gregord14247a2009-01-30 22:09:00 +0000718 StructuredIndex);
719 ++StructuredIndex;
720 } else {
721 // We cannot initialize this element, so let
722 // PerformCopyInitialization produce the appropriate diagnostic.
Anders Carlssona18f0fb2010-01-30 01:56:32 +0000723 SemaRef.PerformCopyInitialization(Entity, SourceLocation(),
724 SemaRef.Owned(expr));
725 IList->setInit(Index, 0);
Douglas Gregord14247a2009-01-30 22:09:00 +0000726 hadError = true;
727 ++Index;
728 ++StructuredIndex;
729 }
730 }
Eli Friedman23a9e312008-05-19 19:16:24 +0000731}
732
Anders Carlsson6cabf312010-01-23 23:23:01 +0000733void InitListChecker::CheckScalarType(const InitializedEntity &Entity,
Anders Carlssond0849252010-01-23 19:55:29 +0000734 InitListExpr *IList, QualType DeclType,
Douglas Gregorf6d27522009-01-29 00:39:20 +0000735 unsigned &Index,
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000736 InitListExpr *StructuredList,
737 unsigned &StructuredIndex) {
Steve Narofff8ecff22008-05-01 22:18:59 +0000738 if (Index < IList->getNumInits()) {
Douglas Gregorf6d27522009-01-29 00:39:20 +0000739 Expr *expr = IList->getInit(Index);
Eli Friedman5a36d3f2008-05-19 20:00:43 +0000740 if (isa<InitListExpr>(expr)) {
Chris Lattnerb0912a52009-02-24 22:50:46 +0000741 SemaRef.Diag(IList->getLocStart(),
Chris Lattnerf490e152008-11-19 05:27:50 +0000742 diag::err_many_braces_around_scalar_init)
743 << IList->getSourceRange();
Eli Friedmanfeb4cc12008-05-19 20:12:18 +0000744 hadError = true;
745 ++Index;
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000746 ++StructuredIndex;
Eli Friedmanfeb4cc12008-05-19 20:12:18 +0000747 return;
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000748 } else if (isa<DesignatedInitExpr>(expr)) {
Mike Stump11289f42009-09-09 15:08:12 +0000749 SemaRef.Diag(expr->getSourceRange().getBegin(),
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000750 diag::err_designator_for_scalar_init)
751 << DeclType << expr->getSourceRange();
752 hadError = true;
753 ++Index;
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000754 ++StructuredIndex;
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000755 return;
Steve Narofff8ecff22008-05-01 22:18:59 +0000756 }
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000757
Anders Carlsson26d05642010-01-23 18:35:41 +0000758 Sema::OwningExprResult Result =
Eli Friedman673f94a2010-01-25 17:04:54 +0000759 SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(),
760 SemaRef.Owned(expr));
Anders Carlsson26d05642010-01-23 18:35:41 +0000761
Chandler Carruthdfe198b2010-02-13 07:23:01 +0000762 Expr *ResultExpr = 0;
Anders Carlsson26d05642010-01-23 18:35:41 +0000763
764 if (Result.isInvalid())
Eli Friedmanfeb4cc12008-05-19 20:12:18 +0000765 hadError = true; // types weren't compatible.
Anders Carlsson26d05642010-01-23 18:35:41 +0000766 else {
767 ResultExpr = Result.takeAs<Expr>();
768
769 if (ResultExpr != expr) {
770 // The type was promoted, update initializer list.
771 IList->setInit(Index, ResultExpr);
772 }
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000773 }
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000774 if (hadError)
775 ++StructuredIndex;
776 else
Anders Carlsson26d05642010-01-23 18:35:41 +0000777 UpdateStructuredListElement(StructuredList, StructuredIndex, ResultExpr);
Steve Narofff8ecff22008-05-01 22:18:59 +0000778 ++Index;
Eli Friedmanfeb4cc12008-05-19 20:12:18 +0000779 } else {
Chris Lattnerb0912a52009-02-24 22:50:46 +0000780 SemaRef.Diag(IList->getLocStart(), diag::err_empty_scalar_initializer)
Chris Lattnerf490e152008-11-19 05:27:50 +0000781 << IList->getSourceRange();
Eli Friedmanfeb4cc12008-05-19 20:12:18 +0000782 hadError = true;
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000783 ++Index;
784 ++StructuredIndex;
Eli Friedmanfeb4cc12008-05-19 20:12:18 +0000785 return;
Steve Narofff8ecff22008-05-01 22:18:59 +0000786 }
Steve Narofff8ecff22008-05-01 22:18:59 +0000787}
788
Anders Carlsson6cabf312010-01-23 23:23:01 +0000789void InitListChecker::CheckReferenceType(const InitializedEntity &Entity,
790 InitListExpr *IList, QualType DeclType,
Douglas Gregord14247a2009-01-30 22:09:00 +0000791 unsigned &Index,
792 InitListExpr *StructuredList,
793 unsigned &StructuredIndex) {
794 if (Index < IList->getNumInits()) {
795 Expr *expr = IList->getInit(Index);
796 if (isa<InitListExpr>(expr)) {
Chris Lattnerb0912a52009-02-24 22:50:46 +0000797 SemaRef.Diag(IList->getLocStart(), diag::err_init_non_aggr_init_list)
Douglas Gregord14247a2009-01-30 22:09:00 +0000798 << DeclType << IList->getSourceRange();
799 hadError = true;
800 ++Index;
801 ++StructuredIndex;
802 return;
Mike Stump11289f42009-09-09 15:08:12 +0000803 }
Douglas Gregord14247a2009-01-30 22:09:00 +0000804
Anders Carlssona91be642010-01-29 02:47:33 +0000805 Sema::OwningExprResult Result =
806 SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(),
807 SemaRef.Owned(expr));
808
809 if (Result.isInvalid())
Douglas Gregord14247a2009-01-30 22:09:00 +0000810 hadError = true;
Anders Carlssona91be642010-01-29 02:47:33 +0000811
812 expr = Result.takeAs<Expr>();
813 IList->setInit(Index, expr);
814
Douglas Gregord14247a2009-01-30 22:09:00 +0000815 if (hadError)
816 ++StructuredIndex;
817 else
818 UpdateStructuredListElement(StructuredList, StructuredIndex, expr);
819 ++Index;
820 } else {
Mike Stump87c57ac2009-05-16 07:39:55 +0000821 // FIXME: It would be wonderful if we could point at the actual member. In
822 // general, it would be useful to pass location information down the stack,
823 // so that we know the location (or decl) of the "current object" being
824 // initialized.
Mike Stump11289f42009-09-09 15:08:12 +0000825 SemaRef.Diag(IList->getLocStart(),
Douglas Gregord14247a2009-01-30 22:09:00 +0000826 diag::err_init_reference_member_uninitialized)
827 << DeclType
828 << IList->getSourceRange();
829 hadError = true;
830 ++Index;
831 ++StructuredIndex;
832 return;
833 }
834}
835
Anders Carlsson6cabf312010-01-23 23:23:01 +0000836void InitListChecker::CheckVectorType(const InitializedEntity &Entity,
Anders Carlssond0849252010-01-23 19:55:29 +0000837 InitListExpr *IList, QualType DeclType,
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000838 unsigned &Index,
839 InitListExpr *StructuredList,
840 unsigned &StructuredIndex) {
Steve Narofff8ecff22008-05-01 22:18:59 +0000841 if (Index < IList->getNumInits()) {
John McCall9dd450b2009-09-21 23:43:11 +0000842 const VectorType *VT = DeclType->getAs<VectorType>();
Nate Begeman5ec4b312009-08-10 23:49:36 +0000843 unsigned maxElements = VT->getNumElements();
844 unsigned numEltsInit = 0;
Steve Narofff8ecff22008-05-01 22:18:59 +0000845 QualType elementType = VT->getElementType();
Mike Stump11289f42009-09-09 15:08:12 +0000846
Nate Begeman5ec4b312009-08-10 23:49:36 +0000847 if (!SemaRef.getLangOptions().OpenCL) {
Anders Carlsson6cabf312010-01-23 23:23:01 +0000848 InitializedEntity ElementEntity =
849 InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
Anders Carlssond0849252010-01-23 19:55:29 +0000850
Anders Carlsson6cabf312010-01-23 23:23:01 +0000851 for (unsigned i = 0; i < maxElements; ++i, ++numEltsInit) {
852 // Don't attempt to go past the end of the init list
853 if (Index >= IList->getNumInits())
854 break;
Anders Carlssond0849252010-01-23 19:55:29 +0000855
Anders Carlsson6cabf312010-01-23 23:23:01 +0000856 ElementEntity.setElementIndex(Index);
857 CheckSubElementType(ElementEntity, IList, elementType, Index,
858 StructuredList, StructuredIndex);
859 }
Nate Begeman5ec4b312009-08-10 23:49:36 +0000860 } else {
Anders Carlsson6cabf312010-01-23 23:23:01 +0000861 InitializedEntity ElementEntity =
862 InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
863
Nate Begeman5ec4b312009-08-10 23:49:36 +0000864 // OpenCL initializers allows vectors to be constructed from vectors.
865 for (unsigned i = 0; i < maxElements; ++i) {
866 // Don't attempt to go past the end of the init list
867 if (Index >= IList->getNumInits())
868 break;
Anders Carlsson6cabf312010-01-23 23:23:01 +0000869
870 ElementEntity.setElementIndex(Index);
871
Nate Begeman5ec4b312009-08-10 23:49:36 +0000872 QualType IType = IList->getInit(Index)->getType();
873 if (!IType->isVectorType()) {
Anders Carlsson6cabf312010-01-23 23:23:01 +0000874 CheckSubElementType(ElementEntity, IList, elementType, Index,
Nate Begeman5ec4b312009-08-10 23:49:36 +0000875 StructuredList, StructuredIndex);
876 ++numEltsInit;
877 } else {
John McCall9dd450b2009-09-21 23:43:11 +0000878 const VectorType *IVT = IType->getAs<VectorType>();
Nate Begeman5ec4b312009-08-10 23:49:36 +0000879 unsigned numIElts = IVT->getNumElements();
880 QualType VecType = SemaRef.Context.getExtVectorType(elementType,
881 numIElts);
Anders Carlsson6cabf312010-01-23 23:23:01 +0000882 CheckSubElementType(ElementEntity, IList, VecType, Index,
Nate Begeman5ec4b312009-08-10 23:49:36 +0000883 StructuredList, StructuredIndex);
884 numEltsInit += numIElts;
885 }
886 }
Steve Narofff8ecff22008-05-01 22:18:59 +0000887 }
Mike Stump11289f42009-09-09 15:08:12 +0000888
Nate Begeman5ec4b312009-08-10 23:49:36 +0000889 // OpenCL & AltiVec require all elements to be initialized.
890 if (numEltsInit != maxElements)
891 if (SemaRef.getLangOptions().OpenCL || SemaRef.getLangOptions().AltiVec)
892 SemaRef.Diag(IList->getSourceRange().getBegin(),
893 diag::err_vector_incorrect_num_initializers)
894 << (numEltsInit < maxElements) << maxElements << numEltsInit;
Steve Narofff8ecff22008-05-01 22:18:59 +0000895 }
896}
897
Anders Carlsson6cabf312010-01-23 23:23:01 +0000898void InitListChecker::CheckArrayType(const InitializedEntity &Entity,
Anders Carlsson0cf999b2010-01-23 20:13:41 +0000899 InitListExpr *IList, QualType &DeclType,
Douglas Gregord7fb85e2009-01-22 23:26:18 +0000900 llvm::APSInt elementIndex,
Mike Stump11289f42009-09-09 15:08:12 +0000901 bool SubobjectIsDesignatorContext,
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000902 unsigned &Index,
903 InitListExpr *StructuredList,
904 unsigned &StructuredIndex) {
Steve Narofff8ecff22008-05-01 22:18:59 +0000905 // Check for the special-case of initializing an array with a string.
906 if (Index < IList->getNumInits()) {
Chris Lattnerd8b741c82009-02-24 23:10:27 +0000907 if (Expr *Str = IsStringInit(IList->getInit(Index), DeclType,
908 SemaRef.Context)) {
909 CheckStringInit(Str, DeclType, SemaRef);
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000910 // We place the string literal directly into the resulting
911 // initializer list. This is the only place where the structure
912 // of the structured initializer list doesn't match exactly,
913 // because doing so would involve allocating one character
914 // constant for each string.
Chris Lattneredbf3ba2009-02-24 22:41:04 +0000915 UpdateStructuredListElement(StructuredList, StructuredIndex, Str);
Chris Lattnerb0912a52009-02-24 22:50:46 +0000916 StructuredList->resizeInits(SemaRef.Context, StructuredIndex);
Steve Narofff8ecff22008-05-01 22:18:59 +0000917 ++Index;
Steve Narofff8ecff22008-05-01 22:18:59 +0000918 return;
919 }
920 }
Chris Lattner7adf0762008-08-04 07:31:14 +0000921 if (const VariableArrayType *VAT =
Chris Lattnerb0912a52009-02-24 22:50:46 +0000922 SemaRef.Context.getAsVariableArrayType(DeclType)) {
Eli Friedman85f54972008-05-25 13:22:35 +0000923 // Check for VLAs; in standard C it would be possible to check this
924 // earlier, but I don't know where clang accepts VLAs (gcc accepts
925 // them in all sorts of strange places).
Chris Lattnerb0912a52009-02-24 22:50:46 +0000926 SemaRef.Diag(VAT->getSizeExpr()->getLocStart(),
Chris Lattnerf490e152008-11-19 05:27:50 +0000927 diag::err_variable_object_no_init)
928 << VAT->getSizeExpr()->getSourceRange();
Eli Friedman85f54972008-05-25 13:22:35 +0000929 hadError = true;
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000930 ++Index;
931 ++StructuredIndex;
Eli Friedman85f54972008-05-25 13:22:35 +0000932 return;
933 }
934
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000935 // We might know the maximum number of elements in advance.
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000936 llvm::APSInt maxElements(elementIndex.getBitWidth(),
937 elementIndex.isUnsigned());
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000938 bool maxElementsKnown = false;
939 if (const ConstantArrayType *CAT =
Chris Lattnerb0912a52009-02-24 22:50:46 +0000940 SemaRef.Context.getAsConstantArrayType(DeclType)) {
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000941 maxElements = CAT->getSize();
Douglas Gregor033d1252009-01-23 16:54:12 +0000942 elementIndex.extOrTrunc(maxElements.getBitWidth());
Douglas Gregor583cf0a2009-01-23 18:58:42 +0000943 elementIndex.setIsUnsigned(maxElements.isUnsigned());
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000944 maxElementsKnown = true;
945 }
946
Chris Lattnerb0912a52009-02-24 22:50:46 +0000947 QualType elementType = SemaRef.Context.getAsArrayType(DeclType)
Chris Lattner7adf0762008-08-04 07:31:14 +0000948 ->getElementType();
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000949 while (Index < IList->getNumInits()) {
950 Expr *Init = IList->getInit(Index);
951 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) {
Douglas Gregord7fb85e2009-01-22 23:26:18 +0000952 // If we're not the subobject that matches up with the '{' for
953 // the designator, we shouldn't be handling the
954 // designator. Return immediately.
955 if (!SubobjectIsDesignatorContext)
956 return;
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000957
Douglas Gregord7fb85e2009-01-22 23:26:18 +0000958 // Handle this designated initializer. elementIndex will be
959 // updated to be the next array element we'll initialize.
Anders Carlsson3fa93b72010-01-23 22:49:02 +0000960 if (CheckDesignatedInitializer(Entity, IList, DIE, 0,
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000961 DeclType, 0, &elementIndex, Index,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +0000962 StructuredList, StructuredIndex, true,
963 false)) {
Douglas Gregord7fb85e2009-01-22 23:26:18 +0000964 hadError = true;
965 continue;
966 }
967
Douglas Gregor033d1252009-01-23 16:54:12 +0000968 if (elementIndex.getBitWidth() > maxElements.getBitWidth())
969 maxElements.extend(elementIndex.getBitWidth());
970 else if (elementIndex.getBitWidth() < maxElements.getBitWidth())
971 elementIndex.extend(maxElements.getBitWidth());
Douglas Gregor583cf0a2009-01-23 18:58:42 +0000972 elementIndex.setIsUnsigned(maxElements.isUnsigned());
Douglas Gregor033d1252009-01-23 16:54:12 +0000973
Douglas Gregord7fb85e2009-01-22 23:26:18 +0000974 // If the array is of incomplete type, keep track of the number of
975 // elements in the initializer.
976 if (!maxElementsKnown && elementIndex > maxElements)
977 maxElements = elementIndex;
978
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000979 continue;
980 }
981
982 // If we know the maximum number of elements, and we've already
983 // hit it, stop consuming elements in the initializer list.
984 if (maxElementsKnown && elementIndex == maxElements)
Steve Narofff8ecff22008-05-01 22:18:59 +0000985 break;
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000986
Anders Carlsson6cabf312010-01-23 23:23:01 +0000987 InitializedEntity ElementEntity =
Anders Carlsson0cf999b2010-01-23 20:13:41 +0000988 InitializedEntity::InitializeElement(SemaRef.Context, StructuredIndex,
Anders Carlsson6cabf312010-01-23 23:23:01 +0000989 Entity);
990 // Check this element.
991 CheckSubElementType(ElementEntity, IList, elementType, Index,
992 StructuredList, StructuredIndex);
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000993 ++elementIndex;
994
995 // If the array is of incomplete type, keep track of the number of
996 // elements in the initializer.
997 if (!maxElementsKnown && elementIndex > maxElements)
998 maxElements = elementIndex;
Steve Narofff8ecff22008-05-01 22:18:59 +0000999 }
Eli Friedmanbe7e42b2009-05-29 20:17:55 +00001000 if (!hadError && DeclType->isIncompleteArrayType()) {
Steve Narofff8ecff22008-05-01 22:18:59 +00001001 // If this is an incomplete array type, the actual type needs to
Daniel Dunbaraa64b7e2008-08-18 20:28:46 +00001002 // be calculated here.
Douglas Gregor583cf0a2009-01-23 18:58:42 +00001003 llvm::APSInt Zero(maxElements.getBitWidth(), maxElements.isUnsigned());
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001004 if (maxElements == Zero) {
Daniel Dunbaraa64b7e2008-08-18 20:28:46 +00001005 // Sizing an array implicitly to zero is not allowed by ISO C,
1006 // but is supported by GNU.
Chris Lattnerb0912a52009-02-24 22:50:46 +00001007 SemaRef.Diag(IList->getLocStart(),
Daniel Dunbaraa64b7e2008-08-18 20:28:46 +00001008 diag::ext_typecheck_zero_array_size);
Steve Narofff8ecff22008-05-01 22:18:59 +00001009 }
Daniel Dunbaraa64b7e2008-08-18 20:28:46 +00001010
Mike Stump11289f42009-09-09 15:08:12 +00001011 DeclType = SemaRef.Context.getConstantArrayType(elementType, maxElements,
Daniel Dunbaraa64b7e2008-08-18 20:28:46 +00001012 ArrayType::Normal, 0);
Steve Narofff8ecff22008-05-01 22:18:59 +00001013 }
1014}
1015
Anders Carlsson6cabf312010-01-23 23:23:01 +00001016void InitListChecker::CheckStructUnionTypes(const InitializedEntity &Entity,
Anders Carlsson73eb7cd2010-01-23 20:20:40 +00001017 InitListExpr *IList,
Mike Stump11289f42009-09-09 15:08:12 +00001018 QualType DeclType,
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001019 RecordDecl::field_iterator Field,
Mike Stump11289f42009-09-09 15:08:12 +00001020 bool SubobjectIsDesignatorContext,
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001021 unsigned &Index,
1022 InitListExpr *StructuredList,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001023 unsigned &StructuredIndex,
1024 bool TopLevelObject) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001025 RecordDecl* structDecl = DeclType->getAs<RecordType>()->getDecl();
Mike Stump11289f42009-09-09 15:08:12 +00001026
Eli Friedman23a9e312008-05-19 19:16:24 +00001027 // If the record is invalid, some of it's members are invalid. To avoid
1028 // confusion, we forgo checking the intializer for the entire record.
1029 if (structDecl->isInvalidDecl()) {
1030 hadError = true;
1031 return;
Mike Stump11289f42009-09-09 15:08:12 +00001032 }
Douglas Gregor0202cb42009-01-29 17:44:32 +00001033
1034 if (DeclType->isUnionType() && IList->getNumInits() == 0) {
1035 // Value-initialize the first named member of the union.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001036 RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001037 for (RecordDecl::field_iterator FieldEnd = RD->field_end();
Douglas Gregor0202cb42009-01-29 17:44:32 +00001038 Field != FieldEnd; ++Field) {
1039 if (Field->getDeclName()) {
1040 StructuredList->setInitializedFieldInUnion(*Field);
1041 break;
1042 }
1043 }
1044 return;
1045 }
1046
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001047 // If structDecl is a forward declaration, this loop won't do
1048 // anything except look at designated initializers; That's okay,
1049 // because an error should get printed out elsewhere. It might be
1050 // worthwhile to skip over the rest of the initializer, though.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001051 RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001052 RecordDecl::field_iterator FieldEnd = RD->field_end();
Douglas Gregora9add4e2009-02-12 19:00:39 +00001053 bool InitializedSomething = false;
John McCalle40b58e2010-03-11 19:32:38 +00001054 bool CheckForMissingFields = true;
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001055 while (Index < IList->getNumInits()) {
1056 Expr *Init = IList->getInit(Index);
1057
1058 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) {
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001059 // If we're not the subobject that matches up with the '{' for
1060 // the designator, we shouldn't be handling the
1061 // designator. Return immediately.
1062 if (!SubobjectIsDesignatorContext)
1063 return;
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001064
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001065 // Handle this designated initializer. Field will be updated to
1066 // the next field that we'll be initializing.
Anders Carlsson3fa93b72010-01-23 22:49:02 +00001067 if (CheckDesignatedInitializer(Entity, IList, DIE, 0,
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001068 DeclType, &Field, 0, Index,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001069 StructuredList, StructuredIndex,
1070 true, TopLevelObject))
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001071 hadError = true;
1072
Douglas Gregora9add4e2009-02-12 19:00:39 +00001073 InitializedSomething = true;
John McCalle40b58e2010-03-11 19:32:38 +00001074
1075 // Disable check for missing fields when designators are used.
1076 // This matches gcc behaviour.
1077 CheckForMissingFields = false;
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001078 continue;
1079 }
1080
1081 if (Field == FieldEnd) {
1082 // We've run out of fields. We're done.
1083 break;
1084 }
1085
Douglas Gregora9add4e2009-02-12 19:00:39 +00001086 // We've already initialized a member of a union. We're done.
1087 if (InitializedSomething && DeclType->isUnionType())
1088 break;
1089
Douglas Gregor91f84212008-12-11 16:49:14 +00001090 // If we've hit the flexible array member at the end, we're done.
1091 if (Field->getType()->isIncompleteArrayType())
1092 break;
1093
Douglas Gregor51695702009-01-29 16:53:55 +00001094 if (Field->isUnnamedBitfield()) {
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001095 // Don't initialize unnamed bitfields, e.g. "int : 20;"
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001096 ++Field;
Eli Friedman23a9e312008-05-19 19:16:24 +00001097 continue;
Steve Narofff8ecff22008-05-01 22:18:59 +00001098 }
Douglas Gregor91f84212008-12-11 16:49:14 +00001099
Anders Carlsson6cabf312010-01-23 23:23:01 +00001100 InitializedEntity MemberEntity =
1101 InitializedEntity::InitializeMember(*Field, &Entity);
1102 CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
1103 StructuredList, StructuredIndex);
Douglas Gregora9add4e2009-02-12 19:00:39 +00001104 InitializedSomething = true;
Douglas Gregor51695702009-01-29 16:53:55 +00001105
1106 if (DeclType->isUnionType()) {
1107 // Initialize the first field within the union.
1108 StructuredList->setInitializedFieldInUnion(*Field);
Douglas Gregor51695702009-01-29 16:53:55 +00001109 }
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001110
1111 ++Field;
Steve Narofff8ecff22008-05-01 22:18:59 +00001112 }
Douglas Gregor91f84212008-12-11 16:49:14 +00001113
John McCalle40b58e2010-03-11 19:32:38 +00001114 // Emit warnings for missing struct field initializers.
1115 if (CheckForMissingFields && Field != FieldEnd &&
1116 !Field->getType()->isIncompleteArrayType() && !DeclType->isUnionType()) {
1117 // It is possible we have one or more unnamed bitfields remaining.
1118 // Find first (if any) named field and emit warning.
1119 for (RecordDecl::field_iterator it = Field, end = RD->field_end();
1120 it != end; ++it) {
1121 if (!it->isUnnamedBitfield()) {
1122 SemaRef.Diag(IList->getSourceRange().getEnd(),
1123 diag::warn_missing_field_initializers) << it->getName();
1124 break;
1125 }
1126 }
1127 }
1128
Mike Stump11289f42009-09-09 15:08:12 +00001129 if (Field == FieldEnd || !Field->getType()->isIncompleteArrayType() ||
Douglas Gregor07d8e3a2009-03-20 00:32:56 +00001130 Index >= IList->getNumInits())
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001131 return;
1132
1133 // Handle GNU flexible array initializers.
Mike Stump11289f42009-09-09 15:08:12 +00001134 if (!TopLevelObject &&
Douglas Gregor07d8e3a2009-03-20 00:32:56 +00001135 (!isa<InitListExpr>(IList->getInit(Index)) ||
1136 cast<InitListExpr>(IList->getInit(Index))->getNumInits() > 0)) {
Mike Stump11289f42009-09-09 15:08:12 +00001137 SemaRef.Diag(IList->getInit(Index)->getSourceRange().getBegin(),
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001138 diag::err_flexible_array_init_nonempty)
1139 << IList->getInit(Index)->getSourceRange().getBegin();
Chris Lattnerb0912a52009-02-24 22:50:46 +00001140 SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001141 << *Field;
1142 hadError = true;
Douglas Gregor07d8e3a2009-03-20 00:32:56 +00001143 ++Index;
1144 return;
1145 } else {
Mike Stump11289f42009-09-09 15:08:12 +00001146 SemaRef.Diag(IList->getInit(Index)->getSourceRange().getBegin(),
Douglas Gregor07d8e3a2009-03-20 00:32:56 +00001147 diag::ext_flexible_array_init)
1148 << IList->getInit(Index)->getSourceRange().getBegin();
1149 SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
1150 << *Field;
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001151 }
1152
Anders Carlsson6cabf312010-01-23 23:23:01 +00001153 InitializedEntity MemberEntity =
1154 InitializedEntity::InitializeMember(*Field, &Entity);
Anders Carlssondbb25a32010-01-23 20:47:59 +00001155
Anders Carlsson6cabf312010-01-23 23:23:01 +00001156 if (isa<InitListExpr>(IList->getInit(Index)))
1157 CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
1158 StructuredList, StructuredIndex);
1159 else
1160 CheckImplicitInitList(MemberEntity, IList, Field->getType(), Index,
Anders Carlssondbb25a32010-01-23 20:47:59 +00001161 StructuredList, StructuredIndex);
Steve Narofff8ecff22008-05-01 22:18:59 +00001162}
Steve Narofff8ecff22008-05-01 22:18:59 +00001163
Douglas Gregord5846a12009-04-15 06:41:24 +00001164/// \brief Expand a field designator that refers to a member of an
1165/// anonymous struct or union into a series of field designators that
1166/// refers to the field within the appropriate subobject.
1167///
1168/// Field/FieldIndex will be updated to point to the (new)
1169/// currently-designated field.
1170static void ExpandAnonymousFieldDesignator(Sema &SemaRef,
Mike Stump11289f42009-09-09 15:08:12 +00001171 DesignatedInitExpr *DIE,
1172 unsigned DesigIdx,
Douglas Gregord5846a12009-04-15 06:41:24 +00001173 FieldDecl *Field,
1174 RecordDecl::field_iterator &FieldIter,
1175 unsigned &FieldIndex) {
1176 typedef DesignatedInitExpr::Designator Designator;
1177
1178 // Build the path from the current object to the member of the
1179 // anonymous struct/union (backwards).
1180 llvm::SmallVector<FieldDecl *, 4> Path;
1181 SemaRef.BuildAnonymousStructUnionMemberPath(Field, Path);
Mike Stump11289f42009-09-09 15:08:12 +00001182
Douglas Gregord5846a12009-04-15 06:41:24 +00001183 // Build the replacement designators.
1184 llvm::SmallVector<Designator, 4> Replacements;
1185 for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator
1186 FI = Path.rbegin(), FIEnd = Path.rend();
1187 FI != FIEnd; ++FI) {
1188 if (FI + 1 == FIEnd)
Mike Stump11289f42009-09-09 15:08:12 +00001189 Replacements.push_back(Designator((IdentifierInfo *)0,
Douglas Gregord5846a12009-04-15 06:41:24 +00001190 DIE->getDesignator(DesigIdx)->getDotLoc(),
1191 DIE->getDesignator(DesigIdx)->getFieldLoc()));
1192 else
1193 Replacements.push_back(Designator((IdentifierInfo *)0, SourceLocation(),
1194 SourceLocation()));
1195 Replacements.back().setField(*FI);
1196 }
1197
1198 // Expand the current designator into the set of replacement
1199 // designators, so we have a full subobject path down to where the
1200 // member of the anonymous struct/union is actually stored.
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00001201 DIE->ExpandDesignator(SemaRef.Context, DesigIdx, &Replacements[0],
Douglas Gregord5846a12009-04-15 06:41:24 +00001202 &Replacements[0] + Replacements.size());
Mike Stump11289f42009-09-09 15:08:12 +00001203
Douglas Gregord5846a12009-04-15 06:41:24 +00001204 // Update FieldIter/FieldIndex;
1205 RecordDecl *Record = cast<RecordDecl>(Path.back()->getDeclContext());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001206 FieldIter = Record->field_begin();
Douglas Gregord5846a12009-04-15 06:41:24 +00001207 FieldIndex = 0;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001208 for (RecordDecl::field_iterator FEnd = Record->field_end();
Douglas Gregord5846a12009-04-15 06:41:24 +00001209 FieldIter != FEnd; ++FieldIter) {
1210 if (FieldIter->isUnnamedBitfield())
1211 continue;
1212
1213 if (*FieldIter == Path.back())
1214 return;
1215
1216 ++FieldIndex;
1217 }
1218
1219 assert(false && "Unable to find anonymous struct/union field");
1220}
1221
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001222/// @brief Check the well-formedness of a C99 designated initializer.
1223///
1224/// Determines whether the designated initializer @p DIE, which
1225/// resides at the given @p Index within the initializer list @p
1226/// IList, is well-formed for a current object of type @p DeclType
1227/// (C99 6.7.8). The actual subobject that this designator refers to
Mike Stump11289f42009-09-09 15:08:12 +00001228/// within the current subobject is returned in either
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001229/// @p NextField or @p NextElementIndex (whichever is appropriate).
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001230///
1231/// @param IList The initializer list in which this designated
1232/// initializer occurs.
1233///
Douglas Gregora5324162009-04-15 04:56:10 +00001234/// @param DIE The designated initializer expression.
1235///
1236/// @param DesigIdx The index of the current designator.
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001237///
1238/// @param DeclType The type of the "current object" (C99 6.7.8p17),
1239/// into which the designation in @p DIE should refer.
1240///
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001241/// @param NextField If non-NULL and the first designator in @p DIE is
1242/// a field, this will be set to the field declaration corresponding
1243/// to the field named by the designator.
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001244///
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001245/// @param NextElementIndex If non-NULL and the first designator in @p
1246/// DIE is an array designator or GNU array-range designator, this
1247/// will be set to the last index initialized by this designator.
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001248///
1249/// @param Index Index into @p IList where the designated initializer
1250/// @p DIE occurs.
1251///
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001252/// @param StructuredList The initializer list expression that
1253/// describes all of the subobject initializers in the order they'll
1254/// actually be initialized.
1255///
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001256/// @returns true if there was an error, false otherwise.
Mike Stump11289f42009-09-09 15:08:12 +00001257bool
Anders Carlsson6cabf312010-01-23 23:23:01 +00001258InitListChecker::CheckDesignatedInitializer(const InitializedEntity &Entity,
Anders Carlsson3fa93b72010-01-23 22:49:02 +00001259 InitListExpr *IList,
Mike Stump11289f42009-09-09 15:08:12 +00001260 DesignatedInitExpr *DIE,
Douglas Gregora5324162009-04-15 04:56:10 +00001261 unsigned DesigIdx,
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001262 QualType &CurrentObjectType,
1263 RecordDecl::field_iterator *NextField,
1264 llvm::APSInt *NextElementIndex,
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001265 unsigned &Index,
1266 InitListExpr *StructuredList,
Douglas Gregor17bd0942009-01-28 23:36:17 +00001267 unsigned &StructuredIndex,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001268 bool FinishSubobjectInit,
1269 bool TopLevelObject) {
Douglas Gregora5324162009-04-15 04:56:10 +00001270 if (DesigIdx == DIE->size()) {
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001271 // Check the actual initialization for the designated object type.
1272 bool prevHadError = hadError;
Douglas Gregorf6d27522009-01-29 00:39:20 +00001273
1274 // Temporarily remove the designator expression from the
1275 // initializer list that the child calls see, so that we don't try
1276 // to re-process the designator.
1277 unsigned OldIndex = Index;
1278 IList->setInit(OldIndex, DIE->getInit());
1279
Anders Carlsson3fa93b72010-01-23 22:49:02 +00001280 CheckSubElementType(Entity, IList, CurrentObjectType, Index,
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001281 StructuredList, StructuredIndex);
Douglas Gregorf6d27522009-01-29 00:39:20 +00001282
1283 // Restore the designated initializer expression in the syntactic
1284 // form of the initializer list.
1285 if (IList->getInit(OldIndex) != DIE->getInit())
1286 DIE->setInit(IList->getInit(OldIndex));
1287 IList->setInit(OldIndex, DIE);
1288
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001289 return hadError && !prevHadError;
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001290 }
1291
Douglas Gregora5324162009-04-15 04:56:10 +00001292 bool IsFirstDesignator = (DesigIdx == 0);
Mike Stump11289f42009-09-09 15:08:12 +00001293 assert((IsFirstDesignator || StructuredList) &&
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001294 "Need a non-designated initializer list to start from");
1295
Douglas Gregora5324162009-04-15 04:56:10 +00001296 DesignatedInitExpr::Designator *D = DIE->getDesignator(DesigIdx);
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001297 // Determine the structural initializer list that corresponds to the
1298 // current subobject.
1299 StructuredList = IsFirstDesignator? SyntacticToSemantic[IList]
Mike Stump11289f42009-09-09 15:08:12 +00001300 : getStructuredSubobjectInit(IList, Index, CurrentObjectType,
Douglas Gregor5741efb2009-03-01 17:12:46 +00001301 StructuredList, StructuredIndex,
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001302 SourceRange(D->getStartLocation(),
1303 DIE->getSourceRange().getEnd()));
1304 assert(StructuredList && "Expected a structured initializer list");
1305
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001306 if (D->isFieldDesignator()) {
1307 // C99 6.7.8p7:
1308 //
1309 // If a designator has the form
1310 //
1311 // . identifier
1312 //
1313 // then the current object (defined below) shall have
1314 // structure or union type and the identifier shall be the
Mike Stump11289f42009-09-09 15:08:12 +00001315 // name of a member of that type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001316 const RecordType *RT = CurrentObjectType->getAs<RecordType>();
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001317 if (!RT) {
1318 SourceLocation Loc = D->getDotLoc();
1319 if (Loc.isInvalid())
1320 Loc = D->getFieldLoc();
Chris Lattnerb0912a52009-02-24 22:50:46 +00001321 SemaRef.Diag(Loc, diag::err_field_designator_non_aggr)
1322 << SemaRef.getLangOptions().CPlusPlus << CurrentObjectType;
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001323 ++Index;
1324 return true;
1325 }
1326
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001327 // Note: we perform a linear search of the fields here, despite
1328 // the fact that we have a faster lookup method, because we always
1329 // need to compute the field's index.
Douglas Gregord5846a12009-04-15 06:41:24 +00001330 FieldDecl *KnownField = D->getField();
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001331 IdentifierInfo *FieldName = D->getFieldName();
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001332 unsigned FieldIndex = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001333 RecordDecl::field_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001334 Field = RT->getDecl()->field_begin(),
1335 FieldEnd = RT->getDecl()->field_end();
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001336 for (; Field != FieldEnd; ++Field) {
1337 if (Field->isUnnamedBitfield())
1338 continue;
1339
Douglas Gregord5846a12009-04-15 06:41:24 +00001340 if (KnownField == *Field || Field->getIdentifier() == FieldName)
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001341 break;
1342
1343 ++FieldIndex;
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001344 }
1345
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001346 if (Field == FieldEnd) {
Douglas Gregord5846a12009-04-15 06:41:24 +00001347 // There was no normal field in the struct with the designated
1348 // name. Perform another lookup for this name, which may find
1349 // something that we can't designate (e.g., a member function),
1350 // may find nothing, or may find a member of an anonymous
Mike Stump11289f42009-09-09 15:08:12 +00001351 // struct/union.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001352 DeclContext::lookup_result Lookup = RT->getDecl()->lookup(FieldName);
Douglas Gregor4e0299b2010-01-01 00:03:05 +00001353 FieldDecl *ReplacementField = 0;
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001354 if (Lookup.first == Lookup.second) {
Douglas Gregor4e0299b2010-01-01 00:03:05 +00001355 // Name lookup didn't find anything. Determine whether this
1356 // was a typo for another field name.
1357 LookupResult R(SemaRef, FieldName, D->getFieldLoc(),
1358 Sema::LookupMemberName);
1359 if (SemaRef.CorrectTypo(R, /*Scope=*/0, /*SS=*/0, RT->getDecl()) &&
1360 (ReplacementField = R.getAsSingle<FieldDecl>()) &&
1361 ReplacementField->getDeclContext()->getLookupContext()
1362 ->Equals(RT->getDecl())) {
1363 SemaRef.Diag(D->getFieldLoc(),
1364 diag::err_field_designator_unknown_suggest)
1365 << FieldName << CurrentObjectType << R.getLookupName()
1366 << CodeModificationHint::CreateReplacement(D->getFieldLoc(),
1367 R.getLookupName().getAsString());
Douglas Gregor6da83622010-01-07 00:17:44 +00001368 SemaRef.Diag(ReplacementField->getLocation(),
1369 diag::note_previous_decl)
1370 << ReplacementField->getDeclName();
Douglas Gregor4e0299b2010-01-01 00:03:05 +00001371 } else {
1372 SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_unknown)
1373 << FieldName << CurrentObjectType;
1374 ++Index;
1375 return true;
1376 }
1377 } else if (!KnownField) {
1378 // Determine whether we found a field at all.
1379 ReplacementField = dyn_cast<FieldDecl>(*Lookup.first);
1380 }
1381
1382 if (!ReplacementField) {
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001383 // Name lookup found something, but it wasn't a field.
Chris Lattnerb0912a52009-02-24 22:50:46 +00001384 SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_nonfield)
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001385 << FieldName;
Mike Stump11289f42009-09-09 15:08:12 +00001386 SemaRef.Diag((*Lookup.first)->getLocation(),
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001387 diag::note_field_designator_found);
Eli Friedman8d25b092009-04-16 17:49:48 +00001388 ++Index;
1389 return true;
Douglas Gregord5846a12009-04-15 06:41:24 +00001390 }
Douglas Gregor4e0299b2010-01-01 00:03:05 +00001391
1392 if (!KnownField &&
1393 cast<RecordDecl>((ReplacementField)->getDeclContext())
1394 ->isAnonymousStructOrUnion()) {
1395 // Handle an field designator that refers to a member of an
1396 // anonymous struct or union.
1397 ExpandAnonymousFieldDesignator(SemaRef, DIE, DesigIdx,
1398 ReplacementField,
1399 Field, FieldIndex);
1400 D = DIE->getDesignator(DesigIdx);
1401 } else if (!KnownField) {
1402 // The replacement field comes from typo correction; find it
1403 // in the list of fields.
1404 FieldIndex = 0;
1405 Field = RT->getDecl()->field_begin();
1406 for (; Field != FieldEnd; ++Field) {
1407 if (Field->isUnnamedBitfield())
1408 continue;
1409
1410 if (ReplacementField == *Field ||
1411 Field->getIdentifier() == ReplacementField->getIdentifier())
1412 break;
1413
1414 ++FieldIndex;
1415 }
1416 }
Douglas Gregord5846a12009-04-15 06:41:24 +00001417 } else if (!KnownField &&
1418 cast<RecordDecl>((*Field)->getDeclContext())
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001419 ->isAnonymousStructOrUnion()) {
Douglas Gregord5846a12009-04-15 06:41:24 +00001420 ExpandAnonymousFieldDesignator(SemaRef, DIE, DesigIdx, *Field,
1421 Field, FieldIndex);
1422 D = DIE->getDesignator(DesigIdx);
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001423 }
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001424
1425 // All of the fields of a union are located at the same place in
1426 // the initializer list.
Douglas Gregor51695702009-01-29 16:53:55 +00001427 if (RT->getDecl()->isUnion()) {
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001428 FieldIndex = 0;
Douglas Gregor51695702009-01-29 16:53:55 +00001429 StructuredList->setInitializedFieldInUnion(*Field);
1430 }
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001431
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001432 // Update the designator with the field declaration.
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001433 D->setField(*Field);
Mike Stump11289f42009-09-09 15:08:12 +00001434
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001435 // Make sure that our non-designated initializer list has space
1436 // for a subobject corresponding to this field.
1437 if (FieldIndex >= StructuredList->getNumInits())
Chris Lattnerb0912a52009-02-24 22:50:46 +00001438 StructuredList->resizeInits(SemaRef.Context, FieldIndex + 1);
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001439
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001440 // This designator names a flexible array member.
1441 if (Field->getType()->isIncompleteArrayType()) {
1442 bool Invalid = false;
Douglas Gregora5324162009-04-15 04:56:10 +00001443 if ((DesigIdx + 1) != DIE->size()) {
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001444 // We can't designate an object within the flexible array
1445 // member (because GCC doesn't allow it).
Mike Stump11289f42009-09-09 15:08:12 +00001446 DesignatedInitExpr::Designator *NextD
Douglas Gregora5324162009-04-15 04:56:10 +00001447 = DIE->getDesignator(DesigIdx + 1);
Mike Stump11289f42009-09-09 15:08:12 +00001448 SemaRef.Diag(NextD->getStartLocation(),
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001449 diag::err_designator_into_flexible_array_member)
Mike Stump11289f42009-09-09 15:08:12 +00001450 << SourceRange(NextD->getStartLocation(),
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001451 DIE->getSourceRange().getEnd());
Chris Lattnerb0912a52009-02-24 22:50:46 +00001452 SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001453 << *Field;
1454 Invalid = true;
1455 }
1456
1457 if (!hadError && !isa<InitListExpr>(DIE->getInit())) {
1458 // The initializer is not an initializer list.
Chris Lattnerb0912a52009-02-24 22:50:46 +00001459 SemaRef.Diag(DIE->getInit()->getSourceRange().getBegin(),
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001460 diag::err_flexible_array_init_needs_braces)
1461 << DIE->getInit()->getSourceRange();
Chris Lattnerb0912a52009-02-24 22:50:46 +00001462 SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001463 << *Field;
1464 Invalid = true;
1465 }
1466
1467 // Handle GNU flexible array initializers.
Mike Stump11289f42009-09-09 15:08:12 +00001468 if (!Invalid && !TopLevelObject &&
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001469 cast<InitListExpr>(DIE->getInit())->getNumInits() > 0) {
Mike Stump11289f42009-09-09 15:08:12 +00001470 SemaRef.Diag(DIE->getSourceRange().getBegin(),
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001471 diag::err_flexible_array_init_nonempty)
1472 << DIE->getSourceRange().getBegin();
Chris Lattnerb0912a52009-02-24 22:50:46 +00001473 SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001474 << *Field;
1475 Invalid = true;
1476 }
1477
1478 if (Invalid) {
1479 ++Index;
1480 return true;
1481 }
1482
1483 // Initialize the array.
1484 bool prevHadError = hadError;
1485 unsigned newStructuredIndex = FieldIndex;
1486 unsigned OldIndex = Index;
1487 IList->setInit(Index, DIE->getInit());
Anders Carlsson6cabf312010-01-23 23:23:01 +00001488
1489 InitializedEntity MemberEntity =
1490 InitializedEntity::InitializeMember(*Field, &Entity);
1491 CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001492 StructuredList, newStructuredIndex);
Anders Carlsson6cabf312010-01-23 23:23:01 +00001493
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001494 IList->setInit(OldIndex, DIE);
1495 if (hadError && !prevHadError) {
1496 ++Field;
1497 ++FieldIndex;
1498 if (NextField)
1499 *NextField = Field;
1500 StructuredIndex = FieldIndex;
1501 return true;
1502 }
1503 } else {
1504 // Recurse to check later designated subobjects.
1505 QualType FieldType = (*Field)->getType();
1506 unsigned newStructuredIndex = FieldIndex;
Anders Carlsson3fa93b72010-01-23 22:49:02 +00001507
1508 InitializedEntity MemberEntity =
Anders Carlsson6cabf312010-01-23 23:23:01 +00001509 InitializedEntity::InitializeMember(*Field, &Entity);
1510 if (CheckDesignatedInitializer(MemberEntity, IList, DIE, DesigIdx + 1,
Anders Carlsson3fa93b72010-01-23 22:49:02 +00001511 FieldType, 0, 0, Index,
1512 StructuredList, newStructuredIndex,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001513 true, false))
1514 return true;
1515 }
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001516
1517 // Find the position of the next field to be initialized in this
1518 // subobject.
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001519 ++Field;
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001520 ++FieldIndex;
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001521
1522 // If this the first designator, our caller will continue checking
1523 // the rest of this struct/class/union subobject.
1524 if (IsFirstDesignator) {
1525 if (NextField)
1526 *NextField = Field;
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001527 StructuredIndex = FieldIndex;
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001528 return false;
1529 }
1530
Douglas Gregor17bd0942009-01-28 23:36:17 +00001531 if (!FinishSubobjectInit)
1532 return false;
1533
Douglas Gregord5846a12009-04-15 06:41:24 +00001534 // We've already initialized something in the union; we're done.
1535 if (RT->getDecl()->isUnion())
1536 return hadError;
1537
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001538 // Check the remaining fields within this class/struct/union subobject.
1539 bool prevHadError = hadError;
Anders Carlsson73eb7cd2010-01-23 20:20:40 +00001540
Anders Carlsson6cabf312010-01-23 23:23:01 +00001541 CheckStructUnionTypes(Entity, IList, CurrentObjectType, Field, false, Index,
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001542 StructuredList, FieldIndex);
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001543 return hadError && !prevHadError;
1544 }
1545
1546 // C99 6.7.8p6:
1547 //
1548 // If a designator has the form
1549 //
1550 // [ constant-expression ]
1551 //
1552 // then the current object (defined below) shall have array
1553 // type and the expression shall be an integer constant
1554 // expression. If the array is of unknown size, any
1555 // nonnegative value is valid.
1556 //
1557 // Additionally, cope with the GNU extension that permits
1558 // designators of the form
1559 //
1560 // [ constant-expression ... constant-expression ]
Chris Lattnerb0912a52009-02-24 22:50:46 +00001561 const ArrayType *AT = SemaRef.Context.getAsArrayType(CurrentObjectType);
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001562 if (!AT) {
Chris Lattnerb0912a52009-02-24 22:50:46 +00001563 SemaRef.Diag(D->getLBracketLoc(), diag::err_array_designator_non_array)
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001564 << CurrentObjectType;
1565 ++Index;
1566 return true;
1567 }
1568
1569 Expr *IndexExpr = 0;
Douglas Gregor17bd0942009-01-28 23:36:17 +00001570 llvm::APSInt DesignatedStartIndex, DesignatedEndIndex;
1571 if (D->isArrayDesignator()) {
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001572 IndexExpr = DIE->getArrayIndex(*D);
Chris Lattnerc71d08b2009-04-25 21:59:05 +00001573 DesignatedStartIndex = IndexExpr->EvaluateAsInt(SemaRef.Context);
Douglas Gregor17bd0942009-01-28 23:36:17 +00001574 DesignatedEndIndex = DesignatedStartIndex;
1575 } else {
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001576 assert(D->isArrayRangeDesignator() && "Need array-range designator");
Douglas Gregor17bd0942009-01-28 23:36:17 +00001577
Mike Stump11289f42009-09-09 15:08:12 +00001578
1579 DesignatedStartIndex =
Chris Lattnerc71d08b2009-04-25 21:59:05 +00001580 DIE->getArrayRangeStart(*D)->EvaluateAsInt(SemaRef.Context);
Mike Stump11289f42009-09-09 15:08:12 +00001581 DesignatedEndIndex =
Chris Lattnerc71d08b2009-04-25 21:59:05 +00001582 DIE->getArrayRangeEnd(*D)->EvaluateAsInt(SemaRef.Context);
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001583 IndexExpr = DIE->getArrayRangeEnd(*D);
Douglas Gregor17bd0942009-01-28 23:36:17 +00001584
Chris Lattnerc71d08b2009-04-25 21:59:05 +00001585 if (DesignatedStartIndex.getZExtValue() !=DesignatedEndIndex.getZExtValue())
Douglas Gregorbf7207a2009-01-29 19:42:23 +00001586 FullyStructuredList->sawArrayRangeDesignator();
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001587 }
1588
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001589 if (isa<ConstantArrayType>(AT)) {
1590 llvm::APSInt MaxElements(cast<ConstantArrayType>(AT)->getSize(), false);
Douglas Gregor17bd0942009-01-28 23:36:17 +00001591 DesignatedStartIndex.extOrTrunc(MaxElements.getBitWidth());
1592 DesignatedStartIndex.setIsUnsigned(MaxElements.isUnsigned());
1593 DesignatedEndIndex.extOrTrunc(MaxElements.getBitWidth());
1594 DesignatedEndIndex.setIsUnsigned(MaxElements.isUnsigned());
1595 if (DesignatedEndIndex >= MaxElements) {
Chris Lattnerb0912a52009-02-24 22:50:46 +00001596 SemaRef.Diag(IndexExpr->getSourceRange().getBegin(),
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001597 diag::err_array_designator_too_large)
Douglas Gregor17bd0942009-01-28 23:36:17 +00001598 << DesignatedEndIndex.toString(10) << MaxElements.toString(10)
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001599 << IndexExpr->getSourceRange();
1600 ++Index;
1601 return true;
1602 }
Douglas Gregor17bd0942009-01-28 23:36:17 +00001603 } else {
1604 // Make sure the bit-widths and signedness match.
1605 if (DesignatedStartIndex.getBitWidth() > DesignatedEndIndex.getBitWidth())
1606 DesignatedEndIndex.extend(DesignatedStartIndex.getBitWidth());
Chris Lattnerc71d08b2009-04-25 21:59:05 +00001607 else if (DesignatedStartIndex.getBitWidth() <
1608 DesignatedEndIndex.getBitWidth())
Douglas Gregor17bd0942009-01-28 23:36:17 +00001609 DesignatedStartIndex.extend(DesignatedEndIndex.getBitWidth());
1610 DesignatedStartIndex.setIsUnsigned(true);
1611 DesignatedEndIndex.setIsUnsigned(true);
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001612 }
Mike Stump11289f42009-09-09 15:08:12 +00001613
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001614 // Make sure that our non-designated initializer list has space
1615 // for a subobject corresponding to this array element.
Douglas Gregor17bd0942009-01-28 23:36:17 +00001616 if (DesignatedEndIndex.getZExtValue() >= StructuredList->getNumInits())
Mike Stump11289f42009-09-09 15:08:12 +00001617 StructuredList->resizeInits(SemaRef.Context,
Douglas Gregor17bd0942009-01-28 23:36:17 +00001618 DesignatedEndIndex.getZExtValue() + 1);
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001619
Douglas Gregor17bd0942009-01-28 23:36:17 +00001620 // Repeatedly perform subobject initializations in the range
1621 // [DesignatedStartIndex, DesignatedEndIndex].
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001622
Douglas Gregor17bd0942009-01-28 23:36:17 +00001623 // Move to the next designator
1624 unsigned ElementIndex = DesignatedStartIndex.getZExtValue();
1625 unsigned OldIndex = Index;
Anders Carlsson3fa93b72010-01-23 22:49:02 +00001626
1627 InitializedEntity ElementEntity =
Anders Carlsson6cabf312010-01-23 23:23:01 +00001628 InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
Anders Carlsson3fa93b72010-01-23 22:49:02 +00001629
Douglas Gregor17bd0942009-01-28 23:36:17 +00001630 while (DesignatedStartIndex <= DesignatedEndIndex) {
1631 // Recurse to check later designated subobjects.
1632 QualType ElementType = AT->getElementType();
1633 Index = OldIndex;
Anders Carlsson3fa93b72010-01-23 22:49:02 +00001634
1635 ElementEntity.setElementIndex(ElementIndex);
Anders Carlsson6cabf312010-01-23 23:23:01 +00001636 if (CheckDesignatedInitializer(ElementEntity, IList, DIE, DesigIdx + 1,
Anders Carlsson3fa93b72010-01-23 22:49:02 +00001637 ElementType, 0, 0, Index,
1638 StructuredList, ElementIndex,
Douglas Gregorfc4f8a12009-02-04 22:46:25 +00001639 (DesignatedStartIndex == DesignatedEndIndex),
1640 false))
Douglas Gregor17bd0942009-01-28 23:36:17 +00001641 return true;
1642
1643 // Move to the next index in the array that we'll be initializing.
1644 ++DesignatedStartIndex;
1645 ElementIndex = DesignatedStartIndex.getZExtValue();
1646 }
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001647
1648 // If this the first designator, our caller will continue checking
1649 // the rest of this array subobject.
1650 if (IsFirstDesignator) {
1651 if (NextElementIndex)
Douglas Gregor17bd0942009-01-28 23:36:17 +00001652 *NextElementIndex = DesignatedStartIndex;
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001653 StructuredIndex = ElementIndex;
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001654 return false;
1655 }
Mike Stump11289f42009-09-09 15:08:12 +00001656
Douglas Gregor17bd0942009-01-28 23:36:17 +00001657 if (!FinishSubobjectInit)
1658 return false;
1659
Douglas Gregord7fb85e2009-01-22 23:26:18 +00001660 // Check the remaining elements within this array subobject.
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001661 bool prevHadError = hadError;
Anders Carlsson6cabf312010-01-23 23:23:01 +00001662 CheckArrayType(Entity, IList, CurrentObjectType, DesignatedStartIndex,
Anders Carlsson0cf999b2010-01-23 20:13:41 +00001663 /*SubobjectIsDesignatorContext=*/false, Index,
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001664 StructuredList, ElementIndex);
Mike Stump11289f42009-09-09 15:08:12 +00001665 return hadError && !prevHadError;
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001666}
1667
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001668// Get the structured initializer list for a subobject of type
1669// @p CurrentObjectType.
1670InitListExpr *
1671InitListChecker::getStructuredSubobjectInit(InitListExpr *IList, unsigned Index,
1672 QualType CurrentObjectType,
1673 InitListExpr *StructuredList,
1674 unsigned StructuredIndex,
1675 SourceRange InitRange) {
1676 Expr *ExistingInit = 0;
1677 if (!StructuredList)
1678 ExistingInit = SyntacticToSemantic[IList];
1679 else if (StructuredIndex < StructuredList->getNumInits())
1680 ExistingInit = StructuredList->getInit(StructuredIndex);
Mike Stump11289f42009-09-09 15:08:12 +00001681
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001682 if (InitListExpr *Result = dyn_cast_or_null<InitListExpr>(ExistingInit))
1683 return Result;
1684
1685 if (ExistingInit) {
1686 // We are creating an initializer list that initializes the
1687 // subobjects of the current object, but there was already an
1688 // initialization that completely initialized the current
1689 // subobject, e.g., by a compound literal:
Mike Stump11289f42009-09-09 15:08:12 +00001690 //
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001691 // struct X { int a, b; };
1692 // struct X xs[] = { [0] = (struct X) { 1, 2 }, [0].b = 3 };
Mike Stump11289f42009-09-09 15:08:12 +00001693 //
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001694 // Here, xs[0].a == 0 and xs[0].b == 3, since the second,
1695 // designated initializer re-initializes the whole
1696 // subobject [0], overwriting previous initializers.
Mike Stump11289f42009-09-09 15:08:12 +00001697 SemaRef.Diag(InitRange.getBegin(),
Douglas Gregor5741efb2009-03-01 17:12:46 +00001698 diag::warn_subobject_initializer_overrides)
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001699 << InitRange;
Mike Stump11289f42009-09-09 15:08:12 +00001700 SemaRef.Diag(ExistingInit->getSourceRange().getBegin(),
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001701 diag::note_previous_initializer)
Douglas Gregore6af7a02009-01-28 23:43:32 +00001702 << /*FIXME:has side effects=*/0
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001703 << ExistingInit->getSourceRange();
1704 }
1705
Mike Stump11289f42009-09-09 15:08:12 +00001706 InitListExpr *Result
Ted Kremenek013041e2010-02-19 01:50:18 +00001707 = new (SemaRef.Context) InitListExpr(InitRange.getBegin(), 0, 0,
1708 InitRange.getEnd());
Douglas Gregor5741efb2009-03-01 17:12:46 +00001709
Douglas Gregor34c0a902010-02-09 00:50:06 +00001710 Result->setType(CurrentObjectType.getNonReferenceType());
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001711
Douglas Gregor6d00c992009-03-20 23:58:33 +00001712 // Pre-allocate storage for the structured initializer list.
1713 unsigned NumElements = 0;
Douglas Gregor221c9a52009-03-21 18:13:52 +00001714 unsigned NumInits = 0;
1715 if (!StructuredList)
1716 NumInits = IList->getNumInits();
1717 else if (Index < IList->getNumInits()) {
1718 if (InitListExpr *SubList = dyn_cast<InitListExpr>(IList->getInit(Index)))
1719 NumInits = SubList->getNumInits();
1720 }
1721
Mike Stump11289f42009-09-09 15:08:12 +00001722 if (const ArrayType *AType
Douglas Gregor6d00c992009-03-20 23:58:33 +00001723 = SemaRef.Context.getAsArrayType(CurrentObjectType)) {
1724 if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType)) {
1725 NumElements = CAType->getSize().getZExtValue();
1726 // Simple heuristic so that we don't allocate a very large
1727 // initializer with many empty entries at the end.
Douglas Gregor221c9a52009-03-21 18:13:52 +00001728 if (NumInits && NumElements > NumInits)
Douglas Gregor6d00c992009-03-20 23:58:33 +00001729 NumElements = 0;
1730 }
John McCall9dd450b2009-09-21 23:43:11 +00001731 } else if (const VectorType *VType = CurrentObjectType->getAs<VectorType>())
Douglas Gregor6d00c992009-03-20 23:58:33 +00001732 NumElements = VType->getNumElements();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001733 else if (const RecordType *RType = CurrentObjectType->getAs<RecordType>()) {
Douglas Gregor6d00c992009-03-20 23:58:33 +00001734 RecordDecl *RDecl = RType->getDecl();
1735 if (RDecl->isUnion())
1736 NumElements = 1;
1737 else
Mike Stump11289f42009-09-09 15:08:12 +00001738 NumElements = std::distance(RDecl->field_begin(),
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001739 RDecl->field_end());
Douglas Gregor6d00c992009-03-20 23:58:33 +00001740 }
1741
Douglas Gregor221c9a52009-03-21 18:13:52 +00001742 if (NumElements < NumInits)
Douglas Gregor6d00c992009-03-20 23:58:33 +00001743 NumElements = IList->getNumInits();
1744
Ted Kremenek013041e2010-02-19 01:50:18 +00001745 Result->reserveInits(NumElements);
Douglas Gregor6d00c992009-03-20 23:58:33 +00001746
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001747 // Link this new initializer list into the structured initializer
1748 // lists.
1749 if (StructuredList)
Ted Kremenek013041e2010-02-19 01:50:18 +00001750 StructuredList->updateInit(StructuredIndex, Result);
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001751 else {
1752 Result->setSyntacticForm(IList);
1753 SyntacticToSemantic[IList] = Result;
1754 }
1755
1756 return Result;
1757}
1758
1759/// Update the initializer at index @p StructuredIndex within the
1760/// structured initializer list to the value @p expr.
1761void InitListChecker::UpdateStructuredListElement(InitListExpr *StructuredList,
1762 unsigned &StructuredIndex,
1763 Expr *expr) {
1764 // No structured initializer list to update
1765 if (!StructuredList)
1766 return;
1767
Ted Kremenek013041e2010-02-19 01:50:18 +00001768 if (Expr *PrevInit = StructuredList->updateInit(StructuredIndex, expr)) {
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001769 // This initializer overwrites a previous initializer. Warn.
Mike Stump11289f42009-09-09 15:08:12 +00001770 SemaRef.Diag(expr->getSourceRange().getBegin(),
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001771 diag::warn_initializer_overrides)
1772 << expr->getSourceRange();
Mike Stump11289f42009-09-09 15:08:12 +00001773 SemaRef.Diag(PrevInit->getSourceRange().getBegin(),
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001774 diag::note_previous_initializer)
Douglas Gregore6af7a02009-01-28 23:43:32 +00001775 << /*FIXME:has side effects=*/0
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001776 << PrevInit->getSourceRange();
1777 }
Mike Stump11289f42009-09-09 15:08:12 +00001778
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001779 ++StructuredIndex;
1780}
1781
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001782/// Check that the given Index expression is a valid array designator
1783/// value. This is essentailly just a wrapper around
Chris Lattnerc71d08b2009-04-25 21:59:05 +00001784/// VerifyIntegerConstantExpression that also checks for negative values
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001785/// and produces a reasonable diagnostic if there is a
1786/// failure. Returns true if there was an error, false otherwise. If
1787/// everything went okay, Value will receive the value of the constant
1788/// expression.
Mike Stump11289f42009-09-09 15:08:12 +00001789static bool
Chris Lattnerc71d08b2009-04-25 21:59:05 +00001790CheckArrayDesignatorExpr(Sema &S, Expr *Index, llvm::APSInt &Value) {
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001791 SourceLocation Loc = Index->getSourceRange().getBegin();
1792
1793 // Make sure this is an integer constant expression.
Chris Lattnerc71d08b2009-04-25 21:59:05 +00001794 if (S.VerifyIntegerConstantExpression(Index, &Value))
1795 return true;
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001796
Chris Lattnerc71d08b2009-04-25 21:59:05 +00001797 if (Value.isSigned() && Value.isNegative())
1798 return S.Diag(Loc, diag::err_array_designator_negative)
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001799 << Value.toString(10) << Index->getSourceRange();
1800
Douglas Gregor51650d32009-01-23 21:04:18 +00001801 Value.setIsUnsigned(true);
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001802 return false;
1803}
1804
1805Sema::OwningExprResult Sema::ActOnDesignatedInitializer(Designation &Desig,
1806 SourceLocation Loc,
Douglas Gregor5c7c9cb2009-03-28 00:41:23 +00001807 bool GNUSyntax,
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001808 OwningExprResult Init) {
1809 typedef DesignatedInitExpr::Designator ASTDesignator;
1810
1811 bool Invalid = false;
1812 llvm::SmallVector<ASTDesignator, 32> Designators;
1813 llvm::SmallVector<Expr *, 32> InitExpressions;
1814
1815 // Build designators and check array designator expressions.
1816 for (unsigned Idx = 0; Idx < Desig.getNumDesignators(); ++Idx) {
1817 const Designator &D = Desig.getDesignator(Idx);
1818 switch (D.getKind()) {
1819 case Designator::FieldDesignator:
Mike Stump11289f42009-09-09 15:08:12 +00001820 Designators.push_back(ASTDesignator(D.getField(), D.getDotLoc(),
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001821 D.getFieldLoc()));
1822 break;
1823
1824 case Designator::ArrayDesignator: {
1825 Expr *Index = static_cast<Expr *>(D.getArrayIndex());
1826 llvm::APSInt IndexValue;
Douglas Gregorca1aeec2009-05-21 23:17:49 +00001827 if (!Index->isTypeDependent() &&
1828 !Index->isValueDependent() &&
1829 CheckArrayDesignatorExpr(*this, Index, IndexValue))
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001830 Invalid = true;
1831 else {
1832 Designators.push_back(ASTDesignator(InitExpressions.size(),
Mike Stump11289f42009-09-09 15:08:12 +00001833 D.getLBracketLoc(),
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001834 D.getRBracketLoc()));
1835 InitExpressions.push_back(Index);
1836 }
1837 break;
1838 }
1839
1840 case Designator::ArrayRangeDesignator: {
1841 Expr *StartIndex = static_cast<Expr *>(D.getArrayRangeStart());
1842 Expr *EndIndex = static_cast<Expr *>(D.getArrayRangeEnd());
1843 llvm::APSInt StartValue;
1844 llvm::APSInt EndValue;
Douglas Gregorca1aeec2009-05-21 23:17:49 +00001845 bool StartDependent = StartIndex->isTypeDependent() ||
1846 StartIndex->isValueDependent();
1847 bool EndDependent = EndIndex->isTypeDependent() ||
1848 EndIndex->isValueDependent();
1849 if ((!StartDependent &&
1850 CheckArrayDesignatorExpr(*this, StartIndex, StartValue)) ||
1851 (!EndDependent &&
1852 CheckArrayDesignatorExpr(*this, EndIndex, EndValue)))
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001853 Invalid = true;
Douglas Gregor7a95b082009-01-23 22:22:29 +00001854 else {
1855 // Make sure we're comparing values with the same bit width.
Douglas Gregorca1aeec2009-05-21 23:17:49 +00001856 if (StartDependent || EndDependent) {
1857 // Nothing to compute.
1858 } else if (StartValue.getBitWidth() > EndValue.getBitWidth())
Douglas Gregor7a95b082009-01-23 22:22:29 +00001859 EndValue.extend(StartValue.getBitWidth());
1860 else if (StartValue.getBitWidth() < EndValue.getBitWidth())
1861 StartValue.extend(EndValue.getBitWidth());
1862
Douglas Gregor0f9d4002009-05-21 23:30:39 +00001863 if (!StartDependent && !EndDependent && EndValue < StartValue) {
Douglas Gregor7a95b082009-01-23 22:22:29 +00001864 Diag(D.getEllipsisLoc(), diag::err_array_designator_empty_range)
Mike Stump11289f42009-09-09 15:08:12 +00001865 << StartValue.toString(10) << EndValue.toString(10)
Douglas Gregor7a95b082009-01-23 22:22:29 +00001866 << StartIndex->getSourceRange() << EndIndex->getSourceRange();
1867 Invalid = true;
1868 } else {
1869 Designators.push_back(ASTDesignator(InitExpressions.size(),
Mike Stump11289f42009-09-09 15:08:12 +00001870 D.getLBracketLoc(),
Douglas Gregor7a95b082009-01-23 22:22:29 +00001871 D.getEllipsisLoc(),
1872 D.getRBracketLoc()));
1873 InitExpressions.push_back(StartIndex);
1874 InitExpressions.push_back(EndIndex);
1875 }
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001876 }
1877 break;
1878 }
1879 }
1880 }
1881
1882 if (Invalid || Init.isInvalid())
1883 return ExprError();
1884
1885 // Clear out the expressions within the designation.
1886 Desig.ClearExprs(*this);
1887
1888 DesignatedInitExpr *DIE
Jay Foad7d0479f2009-05-21 09:52:38 +00001889 = DesignatedInitExpr::Create(Context,
1890 Designators.data(), Designators.size(),
1891 InitExpressions.data(), InitExpressions.size(),
Anders Carlssonb781bcd2009-05-01 19:49:17 +00001892 Loc, GNUSyntax, Init.takeAs<Expr>());
Douglas Gregore4a0bb72009-01-22 00:58:24 +00001893 return Owned(DIE);
1894}
Douglas Gregor85df8d82009-01-29 00:45:39 +00001895
Douglas Gregor723796a2009-12-16 06:35:08 +00001896bool Sema::CheckInitList(const InitializedEntity &Entity,
1897 InitListExpr *&InitList, QualType &DeclType) {
1898 InitListChecker CheckInitList(*this, Entity, InitList, DeclType);
Douglas Gregor85df8d82009-01-29 00:45:39 +00001899 if (!CheckInitList.HadError())
1900 InitList = CheckInitList.getFullyStructuredList();
1901
1902 return CheckInitList.HadError();
1903}
Douglas Gregora5c9e1a2009-02-02 17:43:21 +00001904
Douglas Gregor3e1e5272009-12-09 23:02:17 +00001905//===----------------------------------------------------------------------===//
1906// Initialization entity
1907//===----------------------------------------------------------------------===//
1908
Douglas Gregor723796a2009-12-16 06:35:08 +00001909InitializedEntity::InitializedEntity(ASTContext &Context, unsigned Index,
1910 const InitializedEntity &Parent)
Anders Carlssoned8d80d2010-01-23 04:34:47 +00001911 : Parent(&Parent), Index(Index)
Douglas Gregor723796a2009-12-16 06:35:08 +00001912{
Anders Carlssoned8d80d2010-01-23 04:34:47 +00001913 if (const ArrayType *AT = Context.getAsArrayType(Parent.getType())) {
1914 Kind = EK_ArrayElement;
Douglas Gregor1b303932009-12-22 15:35:07 +00001915 Type = AT->getElementType();
Anders Carlssoned8d80d2010-01-23 04:34:47 +00001916 } else {
1917 Kind = EK_VectorElement;
Douglas Gregor1b303932009-12-22 15:35:07 +00001918 Type = Parent.getType()->getAs<VectorType>()->getElementType();
Anders Carlssoned8d80d2010-01-23 04:34:47 +00001919 }
Douglas Gregor3e1e5272009-12-09 23:02:17 +00001920}
1921
1922InitializedEntity InitializedEntity::InitializeBase(ASTContext &Context,
1923 CXXBaseSpecifier *Base)
1924{
1925 InitializedEntity Result;
1926 Result.Kind = EK_Base;
1927 Result.Base = Base;
Douglas Gregor1b303932009-12-22 15:35:07 +00001928 Result.Type = Base->getType();
Douglas Gregor3e1e5272009-12-09 23:02:17 +00001929 return Result;
1930}
1931
Douglas Gregor85dabae2009-12-16 01:38:02 +00001932DeclarationName InitializedEntity::getName() const {
1933 switch (getKind()) {
Douglas Gregor85dabae2009-12-16 01:38:02 +00001934 case EK_Parameter:
Douglas Gregorbbeb5c32009-12-22 16:09:06 +00001935 if (!VariableOrMember)
1936 return DeclarationName();
1937 // Fall through
1938
1939 case EK_Variable:
Douglas Gregor85dabae2009-12-16 01:38:02 +00001940 case EK_Member:
1941 return VariableOrMember->getDeclName();
1942
1943 case EK_Result:
1944 case EK_Exception:
Douglas Gregore1314a62009-12-18 05:02:21 +00001945 case EK_New:
Douglas Gregor85dabae2009-12-16 01:38:02 +00001946 case EK_Temporary:
1947 case EK_Base:
Anders Carlssoned8d80d2010-01-23 04:34:47 +00001948 case EK_ArrayElement:
1949 case EK_VectorElement:
Douglas Gregor85dabae2009-12-16 01:38:02 +00001950 return DeclarationName();
1951 }
1952
1953 // Silence GCC warning
1954 return DeclarationName();
1955}
1956
Douglas Gregora4b592a2009-12-19 03:01:41 +00001957DeclaratorDecl *InitializedEntity::getDecl() const {
1958 switch (getKind()) {
1959 case EK_Variable:
1960 case EK_Parameter:
1961 case EK_Member:
1962 return VariableOrMember;
1963
1964 case EK_Result:
1965 case EK_Exception:
1966 case EK_New:
1967 case EK_Temporary:
1968 case EK_Base:
Anders Carlssoned8d80d2010-01-23 04:34:47 +00001969 case EK_ArrayElement:
1970 case EK_VectorElement:
Douglas Gregora4b592a2009-12-19 03:01:41 +00001971 return 0;
1972 }
1973
1974 // Silence GCC warning
1975 return 0;
1976}
1977
Douglas Gregor3e1e5272009-12-09 23:02:17 +00001978//===----------------------------------------------------------------------===//
1979// Initialization sequence
1980//===----------------------------------------------------------------------===//
1981
1982void InitializationSequence::Step::Destroy() {
1983 switch (Kind) {
1984 case SK_ResolveAddressOfOverloadedFunction:
1985 case SK_CastDerivedToBaseRValue:
1986 case SK_CastDerivedToBaseLValue:
1987 case SK_BindReference:
1988 case SK_BindReferenceToTemporary:
1989 case SK_UserConversion:
1990 case SK_QualificationConversionRValue:
1991 case SK_QualificationConversionLValue:
Douglas Gregor51e77d52009-12-10 17:56:55 +00001992 case SK_ListInitialization:
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00001993 case SK_ConstructorInitialization:
Douglas Gregor7dc42e52009-12-15 00:01:57 +00001994 case SK_ZeroInitialization:
Douglas Gregore1314a62009-12-18 05:02:21 +00001995 case SK_CAssignment:
Eli Friedman78275202009-12-19 08:11:05 +00001996 case SK_StringInit:
Douglas Gregor3e1e5272009-12-09 23:02:17 +00001997 break;
1998
1999 case SK_ConversionSequence:
2000 delete ICS;
2001 }
2002}
2003
2004void InitializationSequence::AddAddressOverloadResolutionStep(
2005 FunctionDecl *Function) {
2006 Step S;
2007 S.Kind = SK_ResolveAddressOfOverloadedFunction;
2008 S.Type = Function->getType();
John McCall760af172010-02-01 03:16:54 +00002009 // Access is currently ignored for these.
John McCalla0296f72010-03-19 07:35:19 +00002010 S.Function.Function = Function;
2011 S.Function.FoundDecl = DeclAccessPair::make(Function, AS_none);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002012 Steps.push_back(S);
2013}
2014
2015void InitializationSequence::AddDerivedToBaseCastStep(QualType BaseType,
2016 bool IsLValue) {
2017 Step S;
2018 S.Kind = IsLValue? SK_CastDerivedToBaseLValue : SK_CastDerivedToBaseRValue;
2019 S.Type = BaseType;
2020 Steps.push_back(S);
2021}
2022
2023void InitializationSequence::AddReferenceBindingStep(QualType T,
2024 bool BindingTemporary) {
2025 Step S;
2026 S.Kind = BindingTemporary? SK_BindReferenceToTemporary : SK_BindReference;
2027 S.Type = T;
2028 Steps.push_back(S);
2029}
2030
Eli Friedmanad6c2e52009-12-11 02:42:07 +00002031void InitializationSequence::AddUserConversionStep(FunctionDecl *Function,
John McCalla0296f72010-03-19 07:35:19 +00002032 DeclAccessPair FoundDecl,
Eli Friedmanad6c2e52009-12-11 02:42:07 +00002033 QualType T) {
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002034 Step S;
2035 S.Kind = SK_UserConversion;
Eli Friedmanad6c2e52009-12-11 02:42:07 +00002036 S.Type = T;
John McCalla0296f72010-03-19 07:35:19 +00002037 S.Function.Function = Function;
2038 S.Function.FoundDecl = FoundDecl;
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002039 Steps.push_back(S);
2040}
2041
2042void InitializationSequence::AddQualificationConversionStep(QualType Ty,
2043 bool IsLValue) {
2044 Step S;
2045 S.Kind = IsLValue? SK_QualificationConversionLValue
2046 : SK_QualificationConversionRValue;
2047 S.Type = Ty;
2048 Steps.push_back(S);
2049}
2050
2051void InitializationSequence::AddConversionSequenceStep(
2052 const ImplicitConversionSequence &ICS,
2053 QualType T) {
2054 Step S;
2055 S.Kind = SK_ConversionSequence;
2056 S.Type = T;
2057 S.ICS = new ImplicitConversionSequence(ICS);
2058 Steps.push_back(S);
2059}
2060
Douglas Gregor51e77d52009-12-10 17:56:55 +00002061void InitializationSequence::AddListInitializationStep(QualType T) {
2062 Step S;
2063 S.Kind = SK_ListInitialization;
2064 S.Type = T;
2065 Steps.push_back(S);
2066}
2067
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00002068void
2069InitializationSequence::AddConstructorInitializationStep(
2070 CXXConstructorDecl *Constructor,
John McCall760af172010-02-01 03:16:54 +00002071 AccessSpecifier Access,
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00002072 QualType T) {
2073 Step S;
2074 S.Kind = SK_ConstructorInitialization;
2075 S.Type = T;
John McCalla0296f72010-03-19 07:35:19 +00002076 S.Function.Function = Constructor;
2077 S.Function.FoundDecl = DeclAccessPair::make(Constructor, Access);
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00002078 Steps.push_back(S);
2079}
2080
Douglas Gregor7dc42e52009-12-15 00:01:57 +00002081void InitializationSequence::AddZeroInitializationStep(QualType T) {
2082 Step S;
2083 S.Kind = SK_ZeroInitialization;
2084 S.Type = T;
2085 Steps.push_back(S);
2086}
2087
Douglas Gregore1314a62009-12-18 05:02:21 +00002088void InitializationSequence::AddCAssignmentStep(QualType T) {
2089 Step S;
2090 S.Kind = SK_CAssignment;
2091 S.Type = T;
2092 Steps.push_back(S);
2093}
2094
Eli Friedman78275202009-12-19 08:11:05 +00002095void InitializationSequence::AddStringInitStep(QualType T) {
2096 Step S;
2097 S.Kind = SK_StringInit;
2098 S.Type = T;
2099 Steps.push_back(S);
2100}
2101
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002102void InitializationSequence::SetOverloadFailure(FailureKind Failure,
2103 OverloadingResult Result) {
2104 SequenceKind = FailedSequence;
2105 this->Failure = Failure;
2106 this->FailedOverloadResult = Result;
2107}
2108
2109//===----------------------------------------------------------------------===//
2110// Attempt initialization
2111//===----------------------------------------------------------------------===//
2112
2113/// \brief Attempt list initialization (C++0x [dcl.init.list])
Douglas Gregor51e77d52009-12-10 17:56:55 +00002114static void TryListInitialization(Sema &S,
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002115 const InitializedEntity &Entity,
2116 const InitializationKind &Kind,
2117 InitListExpr *InitList,
2118 InitializationSequence &Sequence) {
Douglas Gregor51e77d52009-12-10 17:56:55 +00002119 // FIXME: We only perform rudimentary checking of list
2120 // initializations at this point, then assume that any list
2121 // initialization of an array, aggregate, or scalar will be
2122 // well-formed. We we actually "perform" list initialization, we'll
2123 // do all of the necessary checking. C++0x initializer lists will
2124 // force us to perform more checking here.
2125 Sequence.setSequenceKind(InitializationSequence::ListInitialization);
2126
Douglas Gregor1b303932009-12-22 15:35:07 +00002127 QualType DestType = Entity.getType();
Douglas Gregor51e77d52009-12-10 17:56:55 +00002128
2129 // C++ [dcl.init]p13:
2130 // If T is a scalar type, then a declaration of the form
2131 //
2132 // T x = { a };
2133 //
2134 // is equivalent to
2135 //
2136 // T x = a;
2137 if (DestType->isScalarType()) {
2138 if (InitList->getNumInits() > 1 && S.getLangOptions().CPlusPlus) {
2139 Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForScalar);
2140 return;
2141 }
2142
2143 // Assume scalar initialization from a single value works.
2144 } else if (DestType->isAggregateType()) {
2145 // Assume aggregate initialization works.
2146 } else if (DestType->isVectorType()) {
2147 // Assume vector initialization works.
2148 } else if (DestType->isReferenceType()) {
2149 // FIXME: C++0x defines behavior for this.
2150 Sequence.SetFailed(InitializationSequence::FK_ReferenceBindingToInitList);
2151 return;
2152 } else if (DestType->isRecordType()) {
2153 // FIXME: C++0x defines behavior for this
2154 Sequence.SetFailed(InitializationSequence::FK_InitListBadDestinationType);
2155 }
2156
2157 // Add a general "list initialization" step.
2158 Sequence.AddListInitializationStep(DestType);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002159}
2160
2161/// \brief Try a reference initialization that involves calling a conversion
2162/// function.
2163///
2164/// FIXME: look intos DRs 656, 896
2165static OverloadingResult TryRefInitWithConversionFunction(Sema &S,
2166 const InitializedEntity &Entity,
2167 const InitializationKind &Kind,
2168 Expr *Initializer,
2169 bool AllowRValues,
2170 InitializationSequence &Sequence) {
Douglas Gregor1b303932009-12-22 15:35:07 +00002171 QualType DestType = Entity.getType();
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002172 QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
2173 QualType T1 = cv1T1.getUnqualifiedType();
2174 QualType cv2T2 = Initializer->getType();
2175 QualType T2 = cv2T2.getUnqualifiedType();
2176
2177 bool DerivedToBase;
2178 assert(!S.CompareReferenceRelationship(Initializer->getLocStart(),
2179 T1, T2, DerivedToBase) &&
2180 "Must have incompatible references when binding via conversion");
Chandler Carruth8abbc652009-12-13 01:37:04 +00002181 (void)DerivedToBase;
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002182
2183 // Build the candidate set directly in the initialization sequence
2184 // structure, so that it will persist if we fail.
2185 OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
2186 CandidateSet.clear();
2187
2188 // Determine whether we are allowed to call explicit constructors or
2189 // explicit conversion operators.
2190 bool AllowExplicit = Kind.getKind() == InitializationKind::IK_Direct;
2191
2192 const RecordType *T1RecordType = 0;
2193 if (AllowRValues && (T1RecordType = T1->getAs<RecordType>())) {
2194 // The type we're converting to is a class type. Enumerate its constructors
2195 // to see if there is a suitable conversion.
2196 CXXRecordDecl *T1RecordDecl = cast<CXXRecordDecl>(T1RecordType->getDecl());
2197
2198 DeclarationName ConstructorName
2199 = S.Context.DeclarationNames.getCXXConstructorName(
2200 S.Context.getCanonicalType(T1).getUnqualifiedType());
2201 DeclContext::lookup_iterator Con, ConEnd;
2202 for (llvm::tie(Con, ConEnd) = T1RecordDecl->lookup(ConstructorName);
2203 Con != ConEnd; ++Con) {
John McCalla0296f72010-03-19 07:35:19 +00002204 NamedDecl *D = *Con;
2205 DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
2206
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002207 // Find the constructor (which may be a template).
2208 CXXConstructorDecl *Constructor = 0;
John McCalla0296f72010-03-19 07:35:19 +00002209 FunctionTemplateDecl *ConstructorTmpl = dyn_cast<FunctionTemplateDecl>(D);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002210 if (ConstructorTmpl)
2211 Constructor = cast<CXXConstructorDecl>(
2212 ConstructorTmpl->getTemplatedDecl());
2213 else
John McCalla0296f72010-03-19 07:35:19 +00002214 Constructor = cast<CXXConstructorDecl>(D);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002215
2216 if (!Constructor->isInvalidDecl() &&
2217 Constructor->isConvertingConstructor(AllowExplicit)) {
2218 if (ConstructorTmpl)
John McCalla0296f72010-03-19 07:35:19 +00002219 S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
John McCallb89836b2010-01-26 01:37:31 +00002220 /*ExplicitArgs*/ 0,
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002221 &Initializer, 1, CandidateSet);
2222 else
John McCalla0296f72010-03-19 07:35:19 +00002223 S.AddOverloadCandidate(Constructor, FoundDecl,
John McCallb89836b2010-01-26 01:37:31 +00002224 &Initializer, 1, CandidateSet);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002225 }
2226 }
2227 }
2228
2229 if (const RecordType *T2RecordType = T2->getAs<RecordType>()) {
2230 // The type we're converting from is a class type, enumerate its conversion
2231 // functions.
2232 CXXRecordDecl *T2RecordDecl = cast<CXXRecordDecl>(T2RecordType->getDecl());
2233
2234 // Determine the type we are converting to. If we are allowed to
2235 // convert to an rvalue, take the type that the destination type
2236 // refers to.
2237 QualType ToType = AllowRValues? cv1T1 : DestType;
2238
John McCallad371252010-01-20 00:46:10 +00002239 const UnresolvedSetImpl *Conversions
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002240 = T2RecordDecl->getVisibleConversionFunctions();
John McCallad371252010-01-20 00:46:10 +00002241 for (UnresolvedSetImpl::const_iterator I = Conversions->begin(),
2242 E = Conversions->end(); I != E; ++I) {
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002243 NamedDecl *D = *I;
2244 CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
2245 if (isa<UsingShadowDecl>(D))
2246 D = cast<UsingShadowDecl>(D)->getTargetDecl();
2247
2248 FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D);
2249 CXXConversionDecl *Conv;
2250 if (ConvTemplate)
2251 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
2252 else
2253 Conv = cast<CXXConversionDecl>(*I);
2254
2255 // If the conversion function doesn't return a reference type,
2256 // it can't be considered for this conversion unless we're allowed to
2257 // consider rvalues.
2258 // FIXME: Do we need to make sure that we only consider conversion
2259 // candidates with reference-compatible results? That might be needed to
2260 // break recursion.
2261 if ((AllowExplicit || !Conv->isExplicit()) &&
2262 (AllowRValues || Conv->getConversionType()->isLValueReferenceType())){
2263 if (ConvTemplate)
John McCalla0296f72010-03-19 07:35:19 +00002264 S.AddTemplateConversionCandidate(ConvTemplate, I.getPair(),
John McCallb89836b2010-01-26 01:37:31 +00002265 ActingDC, Initializer,
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002266 ToType, CandidateSet);
2267 else
John McCalla0296f72010-03-19 07:35:19 +00002268 S.AddConversionCandidate(Conv, I.getPair(), ActingDC,
Douglas Gregore6d276a2010-02-26 01:17:27 +00002269 Initializer, ToType, CandidateSet);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002270 }
2271 }
2272 }
2273
2274 SourceLocation DeclLoc = Initializer->getLocStart();
2275
2276 // Perform overload resolution. If it fails, return the failed result.
2277 OverloadCandidateSet::iterator Best;
2278 if (OverloadingResult Result
2279 = S.BestViableFunction(CandidateSet, DeclLoc, Best))
2280 return Result;
Eli Friedmanad6c2e52009-12-11 02:42:07 +00002281
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002282 FunctionDecl *Function = Best->Function;
Eli Friedmanad6c2e52009-12-11 02:42:07 +00002283
2284 // Compute the returned type of the conversion.
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002285 if (isa<CXXConversionDecl>(Function))
2286 T2 = Function->getResultType();
2287 else
2288 T2 = cv1T1;
Eli Friedmanad6c2e52009-12-11 02:42:07 +00002289
2290 // Add the user-defined conversion step.
John McCalla0296f72010-03-19 07:35:19 +00002291 Sequence.AddUserConversionStep(Function, Best->FoundDecl,
John McCall760af172010-02-01 03:16:54 +00002292 T2.getNonReferenceType());
Eli Friedmanad6c2e52009-12-11 02:42:07 +00002293
2294 // Determine whether we need to perform derived-to-base or
2295 // cv-qualification adjustments.
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002296 bool NewDerivedToBase = false;
2297 Sema::ReferenceCompareResult NewRefRelationship
2298 = S.CompareReferenceRelationship(DeclLoc, T1, T2.getNonReferenceType(),
2299 NewDerivedToBase);
Douglas Gregor1ce52ca2010-03-07 23:17:44 +00002300 if (NewRefRelationship == Sema::Ref_Incompatible) {
2301 // If the type we've converted to is not reference-related to the
2302 // type we're looking for, then there is another conversion step
2303 // we need to perform to produce a temporary of the right type
2304 // that we'll be binding to.
2305 ImplicitConversionSequence ICS;
2306 ICS.setStandard();
2307 ICS.Standard = Best->FinalConversion;
2308 T2 = ICS.Standard.getToType(2);
2309 Sequence.AddConversionSequenceStep(ICS, T2);
2310 } else if (NewDerivedToBase)
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002311 Sequence.AddDerivedToBaseCastStep(
2312 S.Context.getQualifiedType(T1,
2313 T2.getNonReferenceType().getQualifiers()),
2314 /*isLValue=*/true);
2315
2316 if (cv1T1.getQualifiers() != T2.getNonReferenceType().getQualifiers())
2317 Sequence.AddQualificationConversionStep(cv1T1, T2->isReferenceType());
2318
2319 Sequence.AddReferenceBindingStep(cv1T1, !T2->isReferenceType());
2320 return OR_Success;
2321}
2322
2323/// \brief Attempt reference initialization (C++0x [dcl.init.list])
2324static void TryReferenceInitialization(Sema &S,
2325 const InitializedEntity &Entity,
2326 const InitializationKind &Kind,
2327 Expr *Initializer,
2328 InitializationSequence &Sequence) {
2329 Sequence.setSequenceKind(InitializationSequence::ReferenceBinding);
2330
Douglas Gregor1b303932009-12-22 15:35:07 +00002331 QualType DestType = Entity.getType();
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002332 QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
Chandler Carruth04bdce62010-01-12 20:32:25 +00002333 Qualifiers T1Quals;
2334 QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002335 QualType cv2T2 = Initializer->getType();
Chandler Carruth04bdce62010-01-12 20:32:25 +00002336 Qualifiers T2Quals;
2337 QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002338 SourceLocation DeclLoc = Initializer->getLocStart();
2339
2340 // If the initializer is the address of an overloaded function, try
2341 // to resolve the overloaded function. If all goes well, T2 is the
2342 // type of the resulting function.
2343 if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy) {
2344 FunctionDecl *Fn = S.ResolveAddressOfOverloadedFunction(Initializer,
2345 T1,
2346 false);
2347 if (!Fn) {
2348 Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
2349 return;
2350 }
2351
2352 Sequence.AddAddressOverloadResolutionStep(Fn);
2353 cv2T2 = Fn->getType();
2354 T2 = cv2T2.getUnqualifiedType();
2355 }
2356
2357 // FIXME: Rvalue references
2358 bool ForceRValue = false;
2359
2360 // Compute some basic properties of the types and the initializer.
2361 bool isLValueRef = DestType->isLValueReferenceType();
2362 bool isRValueRef = !isLValueRef;
2363 bool DerivedToBase = false;
2364 Expr::isLvalueResult InitLvalue = ForceRValue ? Expr::LV_InvalidExpression :
2365 Initializer->isLvalue(S.Context);
2366 Sema::ReferenceCompareResult RefRelationship
2367 = S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, DerivedToBase);
2368
2369 // C++0x [dcl.init.ref]p5:
2370 // A reference to type "cv1 T1" is initialized by an expression of type
2371 // "cv2 T2" as follows:
2372 //
2373 // - If the reference is an lvalue reference and the initializer
2374 // expression
2375 OverloadingResult ConvOvlResult = OR_Success;
2376 if (isLValueRef) {
2377 if (InitLvalue == Expr::LV_Valid &&
2378 RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification) {
2379 // - is an lvalue (but is not a bit-field), and "cv1 T1" is
2380 // reference-compatible with "cv2 T2," or
2381 //
Douglas Gregor65eb86e2010-01-29 19:14:02 +00002382 // Per C++ [over.best.ics]p2, we don't diagnose whether the lvalue is a
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002383 // bit-field when we're determining whether the reference initialization
Douglas Gregor65eb86e2010-01-29 19:14:02 +00002384 // can occur. However, we do pay attention to whether it is a bit-field
2385 // to decide whether we're actually binding to a temporary created from
2386 // the bit-field.
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002387 if (DerivedToBase)
2388 Sequence.AddDerivedToBaseCastStep(
Chandler Carruth04bdce62010-01-12 20:32:25 +00002389 S.Context.getQualifiedType(T1, T2Quals),
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002390 /*isLValue=*/true);
Chandler Carruth04bdce62010-01-12 20:32:25 +00002391 if (T1Quals != T2Quals)
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002392 Sequence.AddQualificationConversionStep(cv1T1, /*IsLValue=*/true);
Douglas Gregor65eb86e2010-01-29 19:14:02 +00002393 bool BindingTemporary = T1Quals.hasConst() && !T1Quals.hasVolatile() &&
Anders Carlsson8abde4b2010-01-31 17:18:49 +00002394 (Initializer->getBitField() || Initializer->refersToVectorElement());
Douglas Gregor65eb86e2010-01-29 19:14:02 +00002395 Sequence.AddReferenceBindingStep(cv1T1, BindingTemporary);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002396 return;
2397 }
2398
2399 // - has a class type (i.e., T2 is a class type), where T1 is not
2400 // reference-related to T2, and can be implicitly converted to an
2401 // lvalue of type "cv3 T3," where "cv1 T1" is reference-compatible
2402 // with "cv3 T3" (this conversion is selected by enumerating the
2403 // applicable conversion functions (13.3.1.6) and choosing the best
2404 // one through overload resolution (13.3)),
2405 if (RefRelationship == Sema::Ref_Incompatible && T2->isRecordType()) {
2406 ConvOvlResult = TryRefInitWithConversionFunction(S, Entity, Kind,
2407 Initializer,
2408 /*AllowRValues=*/false,
2409 Sequence);
2410 if (ConvOvlResult == OR_Success)
2411 return;
John McCall0d1da222010-01-12 00:44:57 +00002412 if (ConvOvlResult != OR_No_Viable_Function) {
2413 Sequence.SetOverloadFailure(
2414 InitializationSequence::FK_ReferenceInitOverloadFailed,
2415 ConvOvlResult);
2416 }
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002417 }
2418 }
2419
2420 // - Otherwise, the reference shall be an lvalue reference to a
2421 // non-volatile const type (i.e., cv1 shall be const), or the reference
2422 // shall be an rvalue reference and the initializer expression shall
2423 // be an rvalue.
Douglas Gregord1e08642010-01-29 19:39:15 +00002424 if (!((isLValueRef && T1Quals.hasConst() && !T1Quals.hasVolatile()) ||
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002425 (isRValueRef && InitLvalue != Expr::LV_Valid))) {
2426 if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty())
2427 Sequence.SetOverloadFailure(
2428 InitializationSequence::FK_ReferenceInitOverloadFailed,
2429 ConvOvlResult);
2430 else if (isLValueRef)
2431 Sequence.SetFailed(InitLvalue == Expr::LV_Valid
2432 ? (RefRelationship == Sema::Ref_Related
2433 ? InitializationSequence::FK_ReferenceInitDropsQualifiers
2434 : InitializationSequence::FK_NonConstLValueReferenceBindingToUnrelated)
2435 : InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary);
2436 else
2437 Sequence.SetFailed(
2438 InitializationSequence::FK_RValueReferenceBindingToLValue);
2439
2440 return;
2441 }
2442
2443 // - If T1 and T2 are class types and
2444 if (T1->isRecordType() && T2->isRecordType()) {
2445 // - the initializer expression is an rvalue and "cv1 T1" is
2446 // reference-compatible with "cv2 T2", or
2447 if (InitLvalue != Expr::LV_Valid &&
2448 RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification) {
2449 if (DerivedToBase)
2450 Sequence.AddDerivedToBaseCastStep(
Chandler Carruth04bdce62010-01-12 20:32:25 +00002451 S.Context.getQualifiedType(T1, T2Quals),
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002452 /*isLValue=*/false);
Chandler Carruth04bdce62010-01-12 20:32:25 +00002453 if (T1Quals != T2Quals)
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002454 Sequence.AddQualificationConversionStep(cv1T1, /*IsLValue=*/false);
2455 Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true);
2456 return;
2457 }
2458
2459 // - T1 is not reference-related to T2 and the initializer expression
2460 // can be implicitly converted to an rvalue of type "cv3 T3" (this
2461 // conversion is selected by enumerating the applicable conversion
2462 // functions (13.3.1.6) and choosing the best one through overload
2463 // resolution (13.3)),
2464 if (RefRelationship == Sema::Ref_Incompatible) {
2465 ConvOvlResult = TryRefInitWithConversionFunction(S, Entity,
2466 Kind, Initializer,
2467 /*AllowRValues=*/true,
2468 Sequence);
2469 if (ConvOvlResult)
2470 Sequence.SetOverloadFailure(
2471 InitializationSequence::FK_ReferenceInitOverloadFailed,
2472 ConvOvlResult);
2473
2474 return;
2475 }
2476
2477 Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers);
2478 return;
2479 }
2480
2481 // - If the initializer expression is an rvalue, with T2 an array type,
2482 // and "cv1 T1" is reference-compatible with "cv2 T2," the reference
2483 // is bound to the object represented by the rvalue (see 3.10).
2484 // FIXME: How can an array type be reference-compatible with anything?
2485 // Don't we mean the element types of T1 and T2?
2486
2487 // - Otherwise, a temporary of type “cv1 T1” is created and initialized
2488 // from the initializer expression using the rules for a non-reference
2489 // copy initialization (8.5). The reference is then bound to the
2490 // temporary. [...]
2491 // Determine whether we are allowed to call explicit constructors or
2492 // explicit conversion operators.
2493 bool AllowExplicit = (Kind.getKind() == InitializationKind::IK_Direct);
2494 ImplicitConversionSequence ICS
2495 = S.TryImplicitConversion(Initializer, cv1T1,
2496 /*SuppressUserConversions=*/false, AllowExplicit,
2497 /*ForceRValue=*/false,
2498 /*FIXME:InOverloadResolution=*/false,
2499 /*UserCast=*/Kind.isExplicitCast());
2500
John McCall0d1da222010-01-12 00:44:57 +00002501 if (ICS.isBad()) {
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002502 // FIXME: Use the conversion function set stored in ICS to turn
2503 // this into an overloading ambiguity diagnostic. However, we need
2504 // to keep that set as an OverloadCandidateSet rather than as some
2505 // other kind of set.
Douglas Gregore1314a62009-12-18 05:02:21 +00002506 if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty())
2507 Sequence.SetOverloadFailure(
2508 InitializationSequence::FK_ReferenceInitOverloadFailed,
2509 ConvOvlResult);
2510 else
2511 Sequence.SetFailed(InitializationSequence::FK_ReferenceInitFailed);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002512 return;
2513 }
2514
2515 // [...] If T1 is reference-related to T2, cv1 must be the
2516 // same cv-qualification as, or greater cv-qualification
2517 // than, cv2; otherwise, the program is ill-formed.
Chandler Carruth04bdce62010-01-12 20:32:25 +00002518 unsigned T1CVRQuals = T1Quals.getCVRQualifiers();
2519 unsigned T2CVRQuals = T2Quals.getCVRQualifiers();
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002520 if (RefRelationship == Sema::Ref_Related &&
Chandler Carruth04bdce62010-01-12 20:32:25 +00002521 (T1CVRQuals | T2CVRQuals) != T1CVRQuals) {
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002522 Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers);
2523 return;
2524 }
2525
2526 // Perform the actual conversion.
2527 Sequence.AddConversionSequenceStep(ICS, cv1T1);
2528 Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true);
2529 return;
2530}
2531
2532/// \brief Attempt character array initialization from a string literal
2533/// (C++ [dcl.init.string], C99 6.7.8).
2534static void TryStringLiteralInitialization(Sema &S,
2535 const InitializedEntity &Entity,
2536 const InitializationKind &Kind,
2537 Expr *Initializer,
2538 InitializationSequence &Sequence) {
Eli Friedman78275202009-12-19 08:11:05 +00002539 Sequence.setSequenceKind(InitializationSequence::StringInit);
Douglas Gregor1b303932009-12-22 15:35:07 +00002540 Sequence.AddStringInitStep(Entity.getType());
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002541}
2542
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002543/// \brief Attempt initialization by constructor (C++ [dcl.init]), which
2544/// enumerates the constructors of the initialized entity and performs overload
2545/// resolution to select the best.
2546static void TryConstructorInitialization(Sema &S,
2547 const InitializedEntity &Entity,
2548 const InitializationKind &Kind,
2549 Expr **Args, unsigned NumArgs,
Douglas Gregor7dc42e52009-12-15 00:01:57 +00002550 QualType DestType,
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002551 InitializationSequence &Sequence) {
Douglas Gregore1314a62009-12-18 05:02:21 +00002552 if (Kind.getKind() == InitializationKind::IK_Copy)
2553 Sequence.setSequenceKind(InitializationSequence::UserDefinedConversion);
2554 else
2555 Sequence.setSequenceKind(InitializationSequence::ConstructorInitialization);
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00002556
2557 // Build the candidate set directly in the initialization sequence
2558 // structure, so that it will persist if we fail.
2559 OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
2560 CandidateSet.clear();
2561
2562 // Determine whether we are allowed to call explicit constructors or
2563 // explicit conversion operators.
2564 bool AllowExplicit = (Kind.getKind() == InitializationKind::IK_Direct ||
2565 Kind.getKind() == InitializationKind::IK_Value ||
2566 Kind.getKind() == InitializationKind::IK_Default);
2567
2568 // The type we're converting to is a class type. Enumerate its constructors
2569 // to see if one is suitable.
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00002570 const RecordType *DestRecordType = DestType->getAs<RecordType>();
2571 assert(DestRecordType && "Constructor initialization requires record type");
2572 CXXRecordDecl *DestRecordDecl
2573 = cast<CXXRecordDecl>(DestRecordType->getDecl());
2574
2575 DeclarationName ConstructorName
2576 = S.Context.DeclarationNames.getCXXConstructorName(
2577 S.Context.getCanonicalType(DestType).getUnqualifiedType());
2578 DeclContext::lookup_iterator Con, ConEnd;
2579 for (llvm::tie(Con, ConEnd) = DestRecordDecl->lookup(ConstructorName);
2580 Con != ConEnd; ++Con) {
John McCalla0296f72010-03-19 07:35:19 +00002581 NamedDecl *D = *Con;
2582 DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
2583
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00002584 // Find the constructor (which may be a template).
2585 CXXConstructorDecl *Constructor = 0;
John McCalla0296f72010-03-19 07:35:19 +00002586 FunctionTemplateDecl *ConstructorTmpl = dyn_cast<FunctionTemplateDecl>(D);
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00002587 if (ConstructorTmpl)
2588 Constructor = cast<CXXConstructorDecl>(
2589 ConstructorTmpl->getTemplatedDecl());
2590 else
John McCalla0296f72010-03-19 07:35:19 +00002591 Constructor = cast<CXXConstructorDecl>(D);
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00002592
2593 if (!Constructor->isInvalidDecl() &&
Douglas Gregor85dabae2009-12-16 01:38:02 +00002594 (AllowExplicit || !Constructor->isExplicit())) {
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00002595 if (ConstructorTmpl)
John McCalla0296f72010-03-19 07:35:19 +00002596 S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
John McCallb89836b2010-01-26 01:37:31 +00002597 /*ExplicitArgs*/ 0,
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00002598 Args, NumArgs, CandidateSet);
2599 else
John McCalla0296f72010-03-19 07:35:19 +00002600 S.AddOverloadCandidate(Constructor, FoundDecl,
John McCallb89836b2010-01-26 01:37:31 +00002601 Args, NumArgs, CandidateSet);
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00002602 }
2603 }
2604
2605 SourceLocation DeclLoc = Kind.getLocation();
2606
2607 // Perform overload resolution. If it fails, return the failed result.
2608 OverloadCandidateSet::iterator Best;
2609 if (OverloadingResult Result
2610 = S.BestViableFunction(CandidateSet, DeclLoc, Best)) {
2611 Sequence.SetOverloadFailure(
2612 InitializationSequence::FK_ConstructorOverloadFailed,
2613 Result);
2614 return;
2615 }
Douglas Gregor7ae2d772010-01-31 09:12:51 +00002616
2617 // C++0x [dcl.init]p6:
2618 // If a program calls for the default initialization of an object
2619 // of a const-qualified type T, T shall be a class type with a
2620 // user-provided default constructor.
2621 if (Kind.getKind() == InitializationKind::IK_Default &&
2622 Entity.getType().isConstQualified() &&
2623 cast<CXXConstructorDecl>(Best->Function)->isImplicit()) {
2624 Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst);
2625 return;
2626 }
2627
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00002628 // Add the constructor initialization step. Any cv-qualification conversion is
2629 // subsumed by the initialization.
Douglas Gregore1314a62009-12-18 05:02:21 +00002630 if (Kind.getKind() == InitializationKind::IK_Copy) {
John McCalla0296f72010-03-19 07:35:19 +00002631 Sequence.AddUserConversionStep(Best->Function, Best->FoundDecl, DestType);
Douglas Gregore1314a62009-12-18 05:02:21 +00002632 } else {
2633 Sequence.AddConstructorInitializationStep(
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00002634 cast<CXXConstructorDecl>(Best->Function),
John McCalla0296f72010-03-19 07:35:19 +00002635 Best->FoundDecl.getAccess(),
Douglas Gregore1314a62009-12-18 05:02:21 +00002636 DestType);
2637 }
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002638}
2639
Douglas Gregor7dc42e52009-12-15 00:01:57 +00002640/// \brief Attempt value initialization (C++ [dcl.init]p7).
2641static void TryValueInitialization(Sema &S,
2642 const InitializedEntity &Entity,
2643 const InitializationKind &Kind,
2644 InitializationSequence &Sequence) {
2645 // C++ [dcl.init]p5:
2646 //
2647 // To value-initialize an object of type T means:
Douglas Gregor1b303932009-12-22 15:35:07 +00002648 QualType T = Entity.getType();
Douglas Gregor7dc42e52009-12-15 00:01:57 +00002649
2650 // -- if T is an array type, then each element is value-initialized;
2651 while (const ArrayType *AT = S.Context.getAsArrayType(T))
2652 T = AT->getElementType();
2653
2654 if (const RecordType *RT = T->getAs<RecordType>()) {
2655 if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
2656 // -- if T is a class type (clause 9) with a user-declared
2657 // constructor (12.1), then the default constructor for T is
2658 // called (and the initialization is ill-formed if T has no
2659 // accessible default constructor);
2660 //
2661 // FIXME: we really want to refer to a single subobject of the array,
2662 // but Entity doesn't have a way to capture that (yet).
2663 if (ClassDecl->hasUserDeclaredConstructor())
2664 return TryConstructorInitialization(S, Entity, Kind, 0, 0, T, Sequence);
2665
Douglas Gregor4f4b1862009-12-16 18:50:27 +00002666 // -- if T is a (possibly cv-qualified) non-union class type
2667 // without a user-provided constructor, then the object is
2668 // zero-initialized and, if T’s implicitly-declared default
2669 // constructor is non-trivial, that constructor is called.
2670 if ((ClassDecl->getTagKind() == TagDecl::TK_class ||
2671 ClassDecl->getTagKind() == TagDecl::TK_struct) &&
2672 !ClassDecl->hasTrivialConstructor()) {
Douglas Gregor1b303932009-12-22 15:35:07 +00002673 Sequence.AddZeroInitializationStep(Entity.getType());
Douglas Gregor4f4b1862009-12-16 18:50:27 +00002674 return TryConstructorInitialization(S, Entity, Kind, 0, 0, T, Sequence);
2675 }
Douglas Gregor7dc42e52009-12-15 00:01:57 +00002676 }
2677 }
2678
Douglas Gregor1b303932009-12-22 15:35:07 +00002679 Sequence.AddZeroInitializationStep(Entity.getType());
Douglas Gregor7dc42e52009-12-15 00:01:57 +00002680 Sequence.setSequenceKind(InitializationSequence::ZeroInitialization);
2681}
2682
Douglas Gregor85dabae2009-12-16 01:38:02 +00002683/// \brief Attempt default initialization (C++ [dcl.init]p6).
2684static void TryDefaultInitialization(Sema &S,
2685 const InitializedEntity &Entity,
2686 const InitializationKind &Kind,
2687 InitializationSequence &Sequence) {
2688 assert(Kind.getKind() == InitializationKind::IK_Default);
2689
2690 // C++ [dcl.init]p6:
2691 // To default-initialize an object of type T means:
2692 // - if T is an array type, each element is default-initialized;
Douglas Gregor1b303932009-12-22 15:35:07 +00002693 QualType DestType = Entity.getType();
Douglas Gregor85dabae2009-12-16 01:38:02 +00002694 while (const ArrayType *Array = S.Context.getAsArrayType(DestType))
2695 DestType = Array->getElementType();
2696
2697 // - if T is a (possibly cv-qualified) class type (Clause 9), the default
2698 // constructor for T is called (and the initialization is ill-formed if
2699 // T has no accessible default constructor);
Douglas Gregore6565622010-02-09 07:26:29 +00002700 if (DestType->isRecordType() && S.getLangOptions().CPlusPlus) {
Douglas Gregor85dabae2009-12-16 01:38:02 +00002701 return TryConstructorInitialization(S, Entity, Kind, 0, 0, DestType,
2702 Sequence);
2703 }
2704
2705 // - otherwise, no initialization is performed.
2706 Sequence.setSequenceKind(InitializationSequence::NoInitialization);
2707
2708 // If a program calls for the default initialization of an object of
2709 // a const-qualified type T, T shall be a class type with a user-provided
2710 // default constructor.
Douglas Gregore6565622010-02-09 07:26:29 +00002711 if (DestType.isConstQualified() && S.getLangOptions().CPlusPlus)
Douglas Gregor85dabae2009-12-16 01:38:02 +00002712 Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst);
2713}
2714
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002715/// \brief Attempt a user-defined conversion between two types (C++ [dcl.init]),
2716/// which enumerates all conversion functions and performs overload resolution
2717/// to select the best.
2718static void TryUserDefinedConversion(Sema &S,
2719 const InitializedEntity &Entity,
2720 const InitializationKind &Kind,
2721 Expr *Initializer,
2722 InitializationSequence &Sequence) {
Douglas Gregor540c3b02009-12-14 17:27:33 +00002723 Sequence.setSequenceKind(InitializationSequence::UserDefinedConversion);
2724
Douglas Gregor1b303932009-12-22 15:35:07 +00002725 QualType DestType = Entity.getType();
Douglas Gregor540c3b02009-12-14 17:27:33 +00002726 assert(!DestType->isReferenceType() && "References are handled elsewhere");
2727 QualType SourceType = Initializer->getType();
2728 assert((DestType->isRecordType() || SourceType->isRecordType()) &&
2729 "Must have a class type to perform a user-defined conversion");
2730
2731 // Build the candidate set directly in the initialization sequence
2732 // structure, so that it will persist if we fail.
2733 OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
2734 CandidateSet.clear();
2735
2736 // Determine whether we are allowed to call explicit constructors or
2737 // explicit conversion operators.
2738 bool AllowExplicit = Kind.getKind() == InitializationKind::IK_Direct;
2739
2740 if (const RecordType *DestRecordType = DestType->getAs<RecordType>()) {
2741 // The type we're converting to is a class type. Enumerate its constructors
2742 // to see if there is a suitable conversion.
2743 CXXRecordDecl *DestRecordDecl
2744 = cast<CXXRecordDecl>(DestRecordType->getDecl());
2745
2746 DeclarationName ConstructorName
2747 = S.Context.DeclarationNames.getCXXConstructorName(
2748 S.Context.getCanonicalType(DestType).getUnqualifiedType());
2749 DeclContext::lookup_iterator Con, ConEnd;
2750 for (llvm::tie(Con, ConEnd) = DestRecordDecl->lookup(ConstructorName);
2751 Con != ConEnd; ++Con) {
John McCalla0296f72010-03-19 07:35:19 +00002752 NamedDecl *D = *Con;
2753 DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
2754
Douglas Gregor540c3b02009-12-14 17:27:33 +00002755 // Find the constructor (which may be a template).
2756 CXXConstructorDecl *Constructor = 0;
2757 FunctionTemplateDecl *ConstructorTmpl
John McCalla0296f72010-03-19 07:35:19 +00002758 = dyn_cast<FunctionTemplateDecl>(D);
Douglas Gregor540c3b02009-12-14 17:27:33 +00002759 if (ConstructorTmpl)
2760 Constructor = cast<CXXConstructorDecl>(
2761 ConstructorTmpl->getTemplatedDecl());
2762 else
John McCalla0296f72010-03-19 07:35:19 +00002763 Constructor = cast<CXXConstructorDecl>(D);
Douglas Gregor540c3b02009-12-14 17:27:33 +00002764
2765 if (!Constructor->isInvalidDecl() &&
2766 Constructor->isConvertingConstructor(AllowExplicit)) {
2767 if (ConstructorTmpl)
John McCalla0296f72010-03-19 07:35:19 +00002768 S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
John McCallb89836b2010-01-26 01:37:31 +00002769 /*ExplicitArgs*/ 0,
Douglas Gregor540c3b02009-12-14 17:27:33 +00002770 &Initializer, 1, CandidateSet);
2771 else
John McCalla0296f72010-03-19 07:35:19 +00002772 S.AddOverloadCandidate(Constructor, FoundDecl,
John McCallb89836b2010-01-26 01:37:31 +00002773 &Initializer, 1, CandidateSet);
Douglas Gregor540c3b02009-12-14 17:27:33 +00002774 }
2775 }
2776 }
Eli Friedman78275202009-12-19 08:11:05 +00002777
2778 SourceLocation DeclLoc = Initializer->getLocStart();
2779
Douglas Gregor540c3b02009-12-14 17:27:33 +00002780 if (const RecordType *SourceRecordType = SourceType->getAs<RecordType>()) {
2781 // The type we're converting from is a class type, enumerate its conversion
2782 // functions.
Eli Friedman78275202009-12-19 08:11:05 +00002783
Eli Friedman4afe9a32009-12-20 22:12:03 +00002784 // We can only enumerate the conversion functions for a complete type; if
2785 // the type isn't complete, simply skip this step.
2786 if (!S.RequireCompleteType(DeclLoc, SourceType, 0)) {
2787 CXXRecordDecl *SourceRecordDecl
2788 = cast<CXXRecordDecl>(SourceRecordType->getDecl());
Douglas Gregor540c3b02009-12-14 17:27:33 +00002789
John McCallad371252010-01-20 00:46:10 +00002790 const UnresolvedSetImpl *Conversions
Eli Friedman4afe9a32009-12-20 22:12:03 +00002791 = SourceRecordDecl->getVisibleConversionFunctions();
John McCallad371252010-01-20 00:46:10 +00002792 for (UnresolvedSetImpl::const_iterator I = Conversions->begin(),
Eli Friedman4afe9a32009-12-20 22:12:03 +00002793 E = Conversions->end();
2794 I != E; ++I) {
2795 NamedDecl *D = *I;
2796 CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
2797 if (isa<UsingShadowDecl>(D))
2798 D = cast<UsingShadowDecl>(D)->getTargetDecl();
2799
2800 FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D);
2801 CXXConversionDecl *Conv;
Douglas Gregor540c3b02009-12-14 17:27:33 +00002802 if (ConvTemplate)
Eli Friedman4afe9a32009-12-20 22:12:03 +00002803 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
Douglas Gregor540c3b02009-12-14 17:27:33 +00002804 else
Eli Friedman4afe9a32009-12-20 22:12:03 +00002805 Conv = cast<CXXConversionDecl>(*I);
2806
2807 if (AllowExplicit || !Conv->isExplicit()) {
2808 if (ConvTemplate)
John McCalla0296f72010-03-19 07:35:19 +00002809 S.AddTemplateConversionCandidate(ConvTemplate, I.getPair(),
John McCallb89836b2010-01-26 01:37:31 +00002810 ActingDC, Initializer, DestType,
Eli Friedman4afe9a32009-12-20 22:12:03 +00002811 CandidateSet);
2812 else
John McCalla0296f72010-03-19 07:35:19 +00002813 S.AddConversionCandidate(Conv, I.getPair(), ActingDC,
John McCallb89836b2010-01-26 01:37:31 +00002814 Initializer, DestType, CandidateSet);
Eli Friedman4afe9a32009-12-20 22:12:03 +00002815 }
Douglas Gregor540c3b02009-12-14 17:27:33 +00002816 }
2817 }
2818 }
2819
Douglas Gregor540c3b02009-12-14 17:27:33 +00002820 // Perform overload resolution. If it fails, return the failed result.
2821 OverloadCandidateSet::iterator Best;
John McCall0d1da222010-01-12 00:44:57 +00002822 if (OverloadingResult Result
Douglas Gregor540c3b02009-12-14 17:27:33 +00002823 = S.BestViableFunction(CandidateSet, DeclLoc, Best)) {
2824 Sequence.SetOverloadFailure(
2825 InitializationSequence::FK_UserConversionOverloadFailed,
2826 Result);
2827 return;
2828 }
John McCall0d1da222010-01-12 00:44:57 +00002829
Douglas Gregor540c3b02009-12-14 17:27:33 +00002830 FunctionDecl *Function = Best->Function;
2831
2832 if (isa<CXXConstructorDecl>(Function)) {
2833 // Add the user-defined conversion step. Any cv-qualification conversion is
2834 // subsumed by the initialization.
John McCalla0296f72010-03-19 07:35:19 +00002835 Sequence.AddUserConversionStep(Function, Best->FoundDecl, DestType);
Douglas Gregor540c3b02009-12-14 17:27:33 +00002836 return;
2837 }
2838
2839 // Add the user-defined conversion step that calls the conversion function.
2840 QualType ConvType = Function->getResultType().getNonReferenceType();
John McCalla0296f72010-03-19 07:35:19 +00002841 Sequence.AddUserConversionStep(Function, Best->FoundDecl, ConvType);
Douglas Gregor540c3b02009-12-14 17:27:33 +00002842
2843 // If the conversion following the call to the conversion function is
2844 // interesting, add it as a separate step.
2845 if (Best->FinalConversion.First || Best->FinalConversion.Second ||
2846 Best->FinalConversion.Third) {
2847 ImplicitConversionSequence ICS;
John McCall0d1da222010-01-12 00:44:57 +00002848 ICS.setStandard();
Douglas Gregor540c3b02009-12-14 17:27:33 +00002849 ICS.Standard = Best->FinalConversion;
2850 Sequence.AddConversionSequenceStep(ICS, DestType);
2851 }
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002852}
2853
2854/// \brief Attempt an implicit conversion (C++ [conv]) converting from one
2855/// non-class type to another.
2856static void TryImplicitConversion(Sema &S,
2857 const InitializedEntity &Entity,
2858 const InitializationKind &Kind,
2859 Expr *Initializer,
2860 InitializationSequence &Sequence) {
2861 ImplicitConversionSequence ICS
Douglas Gregor1b303932009-12-22 15:35:07 +00002862 = S.TryImplicitConversion(Initializer, Entity.getType(),
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002863 /*SuppressUserConversions=*/true,
2864 /*AllowExplicit=*/false,
2865 /*ForceRValue=*/false,
2866 /*FIXME:InOverloadResolution=*/false,
2867 /*UserCast=*/Kind.isExplicitCast());
2868
John McCall0d1da222010-01-12 00:44:57 +00002869 if (ICS.isBad()) {
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002870 Sequence.SetFailed(InitializationSequence::FK_ConversionFailed);
2871 return;
2872 }
2873
Douglas Gregor1b303932009-12-22 15:35:07 +00002874 Sequence.AddConversionSequenceStep(ICS, Entity.getType());
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002875}
2876
2877InitializationSequence::InitializationSequence(Sema &S,
2878 const InitializedEntity &Entity,
2879 const InitializationKind &Kind,
2880 Expr **Args,
John McCallbc077cf2010-02-08 23:07:23 +00002881 unsigned NumArgs)
2882 : FailedCandidateSet(Kind.getLocation()) {
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002883 ASTContext &Context = S.Context;
2884
2885 // C++0x [dcl.init]p16:
2886 // The semantics of initializers are as follows. The destination type is
2887 // the type of the object or reference being initialized and the source
2888 // type is the type of the initializer expression. The source type is not
2889 // defined when the initializer is a braced-init-list or when it is a
2890 // parenthesized list of expressions.
Douglas Gregor1b303932009-12-22 15:35:07 +00002891 QualType DestType = Entity.getType();
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002892
2893 if (DestType->isDependentType() ||
2894 Expr::hasAnyTypeDependentArguments(Args, NumArgs)) {
2895 SequenceKind = DependentSequence;
2896 return;
2897 }
2898
2899 QualType SourceType;
2900 Expr *Initializer = 0;
Douglas Gregor85dabae2009-12-16 01:38:02 +00002901 if (NumArgs == 1) {
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002902 Initializer = Args[0];
2903 if (!isa<InitListExpr>(Initializer))
2904 SourceType = Initializer->getType();
2905 }
2906
2907 // - If the initializer is a braced-init-list, the object is
2908 // list-initialized (8.5.4).
2909 if (InitListExpr *InitList = dyn_cast_or_null<InitListExpr>(Initializer)) {
2910 TryListInitialization(S, Entity, Kind, InitList, *this);
Douglas Gregor51e77d52009-12-10 17:56:55 +00002911 return;
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002912 }
2913
2914 // - If the destination type is a reference type, see 8.5.3.
2915 if (DestType->isReferenceType()) {
2916 // C++0x [dcl.init.ref]p1:
2917 // A variable declared to be a T& or T&&, that is, "reference to type T"
2918 // (8.3.2), shall be initialized by an object, or function, of type T or
2919 // by an object that can be converted into a T.
2920 // (Therefore, multiple arguments are not permitted.)
2921 if (NumArgs != 1)
2922 SetFailed(FK_TooManyInitsForReference);
2923 else
2924 TryReferenceInitialization(S, Entity, Kind, Args[0], *this);
2925 return;
2926 }
2927
2928 // - If the destination type is an array of characters, an array of
2929 // char16_t, an array of char32_t, or an array of wchar_t, and the
2930 // initializer is a string literal, see 8.5.2.
2931 if (Initializer && IsStringInit(Initializer, DestType, Context)) {
2932 TryStringLiteralInitialization(S, Entity, Kind, Initializer, *this);
2933 return;
2934 }
2935
2936 // - If the initializer is (), the object is value-initialized.
Douglas Gregor85dabae2009-12-16 01:38:02 +00002937 if (Kind.getKind() == InitializationKind::IK_Value ||
2938 (Kind.getKind() == InitializationKind::IK_Direct && NumArgs == 0)) {
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002939 TryValueInitialization(S, Entity, Kind, *this);
2940 return;
2941 }
2942
Douglas Gregor85dabae2009-12-16 01:38:02 +00002943 // Handle default initialization.
2944 if (Kind.getKind() == InitializationKind::IK_Default){
2945 TryDefaultInitialization(S, Entity, Kind, *this);
2946 return;
2947 }
Douglas Gregore1314a62009-12-18 05:02:21 +00002948
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002949 // - Otherwise, if the destination type is an array, the program is
2950 // ill-formed.
2951 if (const ArrayType *AT = Context.getAsArrayType(DestType)) {
2952 if (AT->getElementType()->isAnyCharacterType())
2953 SetFailed(FK_ArrayNeedsInitListOrStringLiteral);
2954 else
2955 SetFailed(FK_ArrayNeedsInitList);
2956
2957 return;
2958 }
Eli Friedman78275202009-12-19 08:11:05 +00002959
2960 // Handle initialization in C
2961 if (!S.getLangOptions().CPlusPlus) {
2962 setSequenceKind(CAssignment);
2963 AddCAssignmentStep(DestType);
2964 return;
2965 }
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002966
2967 // - If the destination type is a (possibly cv-qualified) class type:
2968 if (DestType->isRecordType()) {
2969 // - If the initialization is direct-initialization, or if it is
2970 // copy-initialization where the cv-unqualified version of the
2971 // source type is the same class as, or a derived class of, the
2972 // class of the destination, constructors are considered. [...]
2973 if (Kind.getKind() == InitializationKind::IK_Direct ||
2974 (Kind.getKind() == InitializationKind::IK_Copy &&
2975 (Context.hasSameUnqualifiedType(SourceType, DestType) ||
2976 S.IsDerivedFrom(SourceType, DestType))))
Douglas Gregor7dc42e52009-12-15 00:01:57 +00002977 TryConstructorInitialization(S, Entity, Kind, Args, NumArgs,
Douglas Gregor1b303932009-12-22 15:35:07 +00002978 Entity.getType(), *this);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002979 // - Otherwise (i.e., for the remaining copy-initialization cases),
2980 // user-defined conversion sequences that can convert from the source
2981 // type to the destination type or (when a conversion function is
2982 // used) to a derived class thereof are enumerated as described in
2983 // 13.3.1.4, and the best one is chosen through overload resolution
2984 // (13.3).
2985 else
2986 TryUserDefinedConversion(S, Entity, Kind, Initializer, *this);
2987 return;
2988 }
2989
Douglas Gregor85dabae2009-12-16 01:38:02 +00002990 if (NumArgs > 1) {
2991 SetFailed(FK_TooManyInitsForScalar);
2992 return;
2993 }
2994 assert(NumArgs == 1 && "Zero-argument case handled above");
2995
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002996 // - Otherwise, if the source type is a (possibly cv-qualified) class
2997 // type, conversion functions are considered.
Douglas Gregor85dabae2009-12-16 01:38:02 +00002998 if (!SourceType.isNull() && SourceType->isRecordType()) {
Douglas Gregor3e1e5272009-12-09 23:02:17 +00002999 TryUserDefinedConversion(S, Entity, Kind, Initializer, *this);
3000 return;
3001 }
3002
3003 // - Otherwise, the initial value of the object being initialized is the
Douglas Gregor540c3b02009-12-14 17:27:33 +00003004 // (possibly converted) value of the initializer expression. Standard
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003005 // conversions (Clause 4) will be used, if necessary, to convert the
3006 // initializer expression to the cv-unqualified version of the
3007 // destination type; no user-defined conversions are considered.
Douglas Gregor85dabae2009-12-16 01:38:02 +00003008 setSequenceKind(StandardConversion);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003009 TryImplicitConversion(S, Entity, Kind, Initializer, *this);
3010}
3011
3012InitializationSequence::~InitializationSequence() {
3013 for (llvm::SmallVectorImpl<Step>::iterator Step = Steps.begin(),
3014 StepEnd = Steps.end();
3015 Step != StepEnd; ++Step)
3016 Step->Destroy();
3017}
3018
3019//===----------------------------------------------------------------------===//
3020// Perform initialization
3021//===----------------------------------------------------------------------===//
Douglas Gregore1314a62009-12-18 05:02:21 +00003022static Sema::AssignmentAction
3023getAssignmentAction(const InitializedEntity &Entity) {
3024 switch(Entity.getKind()) {
3025 case InitializedEntity::EK_Variable:
3026 case InitializedEntity::EK_New:
3027 return Sema::AA_Initializing;
3028
3029 case InitializedEntity::EK_Parameter:
3030 // FIXME: Can we tell when we're sending vs. passing?
3031 return Sema::AA_Passing;
3032
3033 case InitializedEntity::EK_Result:
3034 return Sema::AA_Returning;
3035
3036 case InitializedEntity::EK_Exception:
3037 case InitializedEntity::EK_Base:
3038 llvm_unreachable("No assignment action for C++-specific initialization");
3039 break;
3040
3041 case InitializedEntity::EK_Temporary:
3042 // FIXME: Can we tell apart casting vs. converting?
3043 return Sema::AA_Casting;
3044
3045 case InitializedEntity::EK_Member:
Anders Carlssoned8d80d2010-01-23 04:34:47 +00003046 case InitializedEntity::EK_ArrayElement:
3047 case InitializedEntity::EK_VectorElement:
Douglas Gregore1314a62009-12-18 05:02:21 +00003048 return Sema::AA_Initializing;
3049 }
3050
3051 return Sema::AA_Converting;
3052}
3053
3054static bool shouldBindAsTemporary(const InitializedEntity &Entity,
3055 bool IsCopy) {
3056 switch (Entity.getKind()) {
3057 case InitializedEntity::EK_Result:
Anders Carlsson0bd52402010-01-24 00:19:41 +00003058 case InitializedEntity::EK_ArrayElement:
3059 case InitializedEntity::EK_Member:
Douglas Gregore1314a62009-12-18 05:02:21 +00003060 return !IsCopy;
3061
3062 case InitializedEntity::EK_New:
3063 case InitializedEntity::EK_Variable:
3064 case InitializedEntity::EK_Base:
Anders Carlssoned8d80d2010-01-23 04:34:47 +00003065 case InitializedEntity::EK_VectorElement:
Anders Carlssonfcd764a2010-02-06 23:23:06 +00003066 case InitializedEntity::EK_Exception:
Douglas Gregore1314a62009-12-18 05:02:21 +00003067 return false;
3068
3069 case InitializedEntity::EK_Parameter:
3070 case InitializedEntity::EK_Temporary:
3071 return true;
3072 }
3073
3074 llvm_unreachable("missed an InitializedEntity kind?");
3075}
3076
3077/// \brief If we need to perform an additional copy of the initialized object
3078/// for this kind of entity (e.g., the result of a function or an object being
3079/// thrown), make the copy.
3080static Sema::OwningExprResult CopyIfRequiredForEntity(Sema &S,
3081 const InitializedEntity &Entity,
Douglas Gregora4b592a2009-12-19 03:01:41 +00003082 const InitializationKind &Kind,
Douglas Gregore1314a62009-12-18 05:02:21 +00003083 Sema::OwningExprResult CurInit) {
Anders Carlsson0bd52402010-01-24 00:19:41 +00003084 Expr *CurInitExpr = (Expr *)CurInit.get();
3085
Douglas Gregore1314a62009-12-18 05:02:21 +00003086 SourceLocation Loc;
Douglas Gregore1314a62009-12-18 05:02:21 +00003087
3088 switch (Entity.getKind()) {
3089 case InitializedEntity::EK_Result:
Douglas Gregor1b303932009-12-22 15:35:07 +00003090 if (Entity.getType()->isReferenceType())
Douglas Gregore1314a62009-12-18 05:02:21 +00003091 return move(CurInit);
Douglas Gregore1314a62009-12-18 05:02:21 +00003092 Loc = Entity.getReturnLoc();
3093 break;
3094
3095 case InitializedEntity::EK_Exception:
Douglas Gregore1314a62009-12-18 05:02:21 +00003096 Loc = Entity.getThrowLoc();
3097 break;
3098
3099 case InitializedEntity::EK_Variable:
Douglas Gregor1b303932009-12-22 15:35:07 +00003100 if (Entity.getType()->isReferenceType() ||
Douglas Gregora4b592a2009-12-19 03:01:41 +00003101 Kind.getKind() != InitializationKind::IK_Copy)
3102 return move(CurInit);
3103 Loc = Entity.getDecl()->getLocation();
3104 break;
3105
Anders Carlsson0bd52402010-01-24 00:19:41 +00003106 case InitializedEntity::EK_ArrayElement:
3107 case InitializedEntity::EK_Member:
3108 if (Entity.getType()->isReferenceType() ||
3109 Kind.getKind() != InitializationKind::IK_Copy)
3110 return move(CurInit);
3111 Loc = CurInitExpr->getLocStart();
3112 break;
3113
Douglas Gregore1314a62009-12-18 05:02:21 +00003114 case InitializedEntity::EK_Parameter:
Douglas Gregora4b592a2009-12-19 03:01:41 +00003115 // FIXME: Do we need this initialization for a parameter?
3116 return move(CurInit);
3117
Douglas Gregore1314a62009-12-18 05:02:21 +00003118 case InitializedEntity::EK_New:
3119 case InitializedEntity::EK_Temporary:
3120 case InitializedEntity::EK_Base:
Anders Carlssoned8d80d2010-01-23 04:34:47 +00003121 case InitializedEntity::EK_VectorElement:
Douglas Gregore1314a62009-12-18 05:02:21 +00003122 // We don't need to copy for any of these initialized entities.
3123 return move(CurInit);
3124 }
3125
Douglas Gregore1314a62009-12-18 05:02:21 +00003126 CXXRecordDecl *Class = 0;
3127 if (const RecordType *Record = CurInitExpr->getType()->getAs<RecordType>())
3128 Class = cast<CXXRecordDecl>(Record->getDecl());
3129 if (!Class)
3130 return move(CurInit);
3131
3132 // Perform overload resolution using the class's copy constructors.
3133 DeclarationName ConstructorName
3134 = S.Context.DeclarationNames.getCXXConstructorName(
3135 S.Context.getCanonicalType(S.Context.getTypeDeclType(Class)));
3136 DeclContext::lookup_iterator Con, ConEnd;
John McCallbc077cf2010-02-08 23:07:23 +00003137 OverloadCandidateSet CandidateSet(Loc);
Douglas Gregore1314a62009-12-18 05:02:21 +00003138 for (llvm::tie(Con, ConEnd) = Class->lookup(ConstructorName);
3139 Con != ConEnd; ++Con) {
3140 // Find the constructor (which may be a template).
3141 CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(*Con);
3142 if (!Constructor || Constructor->isInvalidDecl() ||
Douglas Gregor507eb872009-12-22 00:34:07 +00003143 !Constructor->isCopyConstructor())
Douglas Gregore1314a62009-12-18 05:02:21 +00003144 continue;
John McCalla0296f72010-03-19 07:35:19 +00003145
3146 DeclAccessPair FoundDecl
3147 = DeclAccessPair::make(Constructor, Constructor->getAccess());
3148 S.AddOverloadCandidate(Constructor, FoundDecl,
John McCallb89836b2010-01-26 01:37:31 +00003149 &CurInitExpr, 1, CandidateSet);
Douglas Gregore1314a62009-12-18 05:02:21 +00003150 }
3151
3152 OverloadCandidateSet::iterator Best;
3153 switch (S.BestViableFunction(CandidateSet, Loc, Best)) {
3154 case OR_Success:
3155 break;
3156
3157 case OR_No_Viable_Function:
3158 S.Diag(Loc, diag::err_temp_copy_no_viable)
Douglas Gregora4b592a2009-12-19 03:01:41 +00003159 << (int)Entity.getKind() << CurInitExpr->getType()
Douglas Gregore1314a62009-12-18 05:02:21 +00003160 << CurInitExpr->getSourceRange();
John McCallad907772010-01-12 07:18:19 +00003161 S.PrintOverloadCandidates(CandidateSet, Sema::OCD_AllCandidates,
3162 &CurInitExpr, 1);
Douglas Gregore1314a62009-12-18 05:02:21 +00003163 return S.ExprError();
3164
3165 case OR_Ambiguous:
3166 S.Diag(Loc, diag::err_temp_copy_ambiguous)
Douglas Gregora4b592a2009-12-19 03:01:41 +00003167 << (int)Entity.getKind() << CurInitExpr->getType()
Douglas Gregore1314a62009-12-18 05:02:21 +00003168 << CurInitExpr->getSourceRange();
John McCallad907772010-01-12 07:18:19 +00003169 S.PrintOverloadCandidates(CandidateSet, Sema::OCD_ViableCandidates,
3170 &CurInitExpr, 1);
Douglas Gregore1314a62009-12-18 05:02:21 +00003171 return S.ExprError();
3172
3173 case OR_Deleted:
3174 S.Diag(Loc, diag::err_temp_copy_deleted)
Douglas Gregora4b592a2009-12-19 03:01:41 +00003175 << (int)Entity.getKind() << CurInitExpr->getType()
Douglas Gregore1314a62009-12-18 05:02:21 +00003176 << CurInitExpr->getSourceRange();
3177 S.Diag(Best->Function->getLocation(), diag::note_unavailable_here)
3178 << Best->Function->isDeleted();
3179 return S.ExprError();
3180 }
3181
John McCalla0296f72010-03-19 07:35:19 +00003182 S.CheckConstructorAccess(Loc,
3183 cast<CXXConstructorDecl>(Best->Function),
3184 Best->FoundDecl.getAccess());
3185
Douglas Gregore1314a62009-12-18 05:02:21 +00003186 CurInit.release();
3187 return S.BuildCXXConstructExpr(Loc, CurInitExpr->getType(),
3188 cast<CXXConstructorDecl>(Best->Function),
3189 /*Elidable=*/true,
3190 Sema::MultiExprArg(S,
3191 (void**)&CurInitExpr, 1));
3192}
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003193
3194Action::OwningExprResult
3195InitializationSequence::Perform(Sema &S,
3196 const InitializedEntity &Entity,
3197 const InitializationKind &Kind,
Douglas Gregor51e77d52009-12-10 17:56:55 +00003198 Action::MultiExprArg Args,
3199 QualType *ResultType) {
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003200 if (SequenceKind == FailedSequence) {
3201 unsigned NumArgs = Args.size();
3202 Diagnose(S, Entity, Kind, (Expr **)Args.release(), NumArgs);
3203 return S.ExprError();
3204 }
3205
3206 if (SequenceKind == DependentSequence) {
Douglas Gregor51e77d52009-12-10 17:56:55 +00003207 // If the declaration is a non-dependent, incomplete array type
3208 // that has an initializer, then its type will be completed once
3209 // the initializer is instantiated.
Douglas Gregor1b303932009-12-22 15:35:07 +00003210 if (ResultType && !Entity.getType()->isDependentType() &&
Douglas Gregor51e77d52009-12-10 17:56:55 +00003211 Args.size() == 1) {
Douglas Gregor1b303932009-12-22 15:35:07 +00003212 QualType DeclType = Entity.getType();
Douglas Gregor51e77d52009-12-10 17:56:55 +00003213 if (const IncompleteArrayType *ArrayT
3214 = S.Context.getAsIncompleteArrayType(DeclType)) {
3215 // FIXME: We don't currently have the ability to accurately
3216 // compute the length of an initializer list without
3217 // performing full type-checking of the initializer list
3218 // (since we have to determine where braces are implicitly
3219 // introduced and such). So, we fall back to making the array
3220 // type a dependently-sized array type with no specified
3221 // bound.
3222 if (isa<InitListExpr>((Expr *)Args.get()[0])) {
3223 SourceRange Brackets;
Douglas Gregor1b303932009-12-22 15:35:07 +00003224
Douglas Gregor51e77d52009-12-10 17:56:55 +00003225 // Scavange the location of the brackets from the entity, if we can.
Douglas Gregor1b303932009-12-22 15:35:07 +00003226 if (DeclaratorDecl *DD = Entity.getDecl()) {
3227 if (TypeSourceInfo *TInfo = DD->getTypeSourceInfo()) {
3228 TypeLoc TL = TInfo->getTypeLoc();
3229 if (IncompleteArrayTypeLoc *ArrayLoc
3230 = dyn_cast<IncompleteArrayTypeLoc>(&TL))
3231 Brackets = ArrayLoc->getBracketsRange();
3232 }
Douglas Gregor51e77d52009-12-10 17:56:55 +00003233 }
3234
3235 *ResultType
3236 = S.Context.getDependentSizedArrayType(ArrayT->getElementType(),
3237 /*NumElts=*/0,
3238 ArrayT->getSizeModifier(),
3239 ArrayT->getIndexTypeCVRQualifiers(),
3240 Brackets);
3241 }
3242
3243 }
3244 }
3245
Eli Friedmana553d4a2009-12-22 02:35:53 +00003246 if (Kind.getKind() == InitializationKind::IK_Copy || Kind.isExplicitCast())
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003247 return Sema::OwningExprResult(S, Args.release()[0]);
3248
Douglas Gregor0ab7af62010-02-05 07:56:11 +00003249 if (Args.size() == 0)
3250 return S.Owned((Expr *)0);
3251
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003252 unsigned NumArgs = Args.size();
3253 return S.Owned(new (S.Context) ParenListExpr(S.Context,
3254 SourceLocation(),
3255 (Expr **)Args.release(),
3256 NumArgs,
3257 SourceLocation()));
3258 }
3259
Douglas Gregor85dabae2009-12-16 01:38:02 +00003260 if (SequenceKind == NoInitialization)
3261 return S.Owned((Expr *)0);
3262
Douglas Gregor1b303932009-12-22 15:35:07 +00003263 QualType DestType = Entity.getType().getNonReferenceType();
3264 // FIXME: Ugly hack around the fact that Entity.getType() is not
Eli Friedman463e5232009-12-22 02:10:53 +00003265 // the same as Entity.getDecl()->getType() in cases involving type merging,
3266 // and we want latter when it makes sense.
Douglas Gregor51e77d52009-12-10 17:56:55 +00003267 if (ResultType)
Eli Friedman463e5232009-12-22 02:10:53 +00003268 *ResultType = Entity.getDecl() ? Entity.getDecl()->getType() :
Douglas Gregor1b303932009-12-22 15:35:07 +00003269 Entity.getType();
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003270
Douglas Gregor85dabae2009-12-16 01:38:02 +00003271 Sema::OwningExprResult CurInit = S.Owned((Expr *)0);
3272
3273 assert(!Steps.empty() && "Cannot have an empty initialization sequence");
3274
3275 // For initialization steps that start with a single initializer,
3276 // grab the only argument out the Args and place it into the "current"
3277 // initializer.
3278 switch (Steps.front().Kind) {
Douglas Gregore1314a62009-12-18 05:02:21 +00003279 case SK_ResolveAddressOfOverloadedFunction:
3280 case SK_CastDerivedToBaseRValue:
3281 case SK_CastDerivedToBaseLValue:
3282 case SK_BindReference:
3283 case SK_BindReferenceToTemporary:
3284 case SK_UserConversion:
3285 case SK_QualificationConversionLValue:
3286 case SK_QualificationConversionRValue:
3287 case SK_ConversionSequence:
3288 case SK_ListInitialization:
3289 case SK_CAssignment:
Eli Friedman78275202009-12-19 08:11:05 +00003290 case SK_StringInit:
Douglas Gregore1314a62009-12-18 05:02:21 +00003291 assert(Args.size() == 1);
3292 CurInit = Sema::OwningExprResult(S, ((Expr **)(Args.get()))[0]->Retain());
3293 if (CurInit.isInvalid())
3294 return S.ExprError();
3295 break;
3296
3297 case SK_ConstructorInitialization:
3298 case SK_ZeroInitialization:
3299 break;
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003300 }
3301
3302 // Walk through the computed steps for the initialization sequence,
3303 // performing the specified conversions along the way.
Douglas Gregor4f4b1862009-12-16 18:50:27 +00003304 bool ConstructorInitRequiresZeroInit = false;
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003305 for (step_iterator Step = step_begin(), StepEnd = step_end();
3306 Step != StepEnd; ++Step) {
3307 if (CurInit.isInvalid())
3308 return S.ExprError();
3309
3310 Expr *CurInitExpr = (Expr *)CurInit.get();
Douglas Gregor85dabae2009-12-16 01:38:02 +00003311 QualType SourceType = CurInitExpr? CurInitExpr->getType() : QualType();
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003312
3313 switch (Step->Kind) {
3314 case SK_ResolveAddressOfOverloadedFunction:
3315 // Overload resolution determined which function invoke; update the
3316 // initializer to reflect that choice.
John McCall760af172010-02-01 03:16:54 +00003317 // Access control was done in overload resolution.
3318 CurInit = S.FixOverloadedFunctionReference(move(CurInit),
John McCalla0296f72010-03-19 07:35:19 +00003319 Step->Function.Function);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003320 break;
3321
3322 case SK_CastDerivedToBaseRValue:
3323 case SK_CastDerivedToBaseLValue: {
3324 // We have a derived-to-base cast that produces either an rvalue or an
3325 // lvalue. Perform that cast.
3326
3327 // Casts to inaccessible base classes are allowed with C-style casts.
3328 bool IgnoreBaseAccess = Kind.isCStyleOrFunctionalCast();
3329 if (S.CheckDerivedToBaseConversion(SourceType, Step->Type,
3330 CurInitExpr->getLocStart(),
3331 CurInitExpr->getSourceRange(),
3332 IgnoreBaseAccess))
3333 return S.ExprError();
3334
3335 CurInit = S.Owned(new (S.Context) ImplicitCastExpr(Step->Type,
3336 CastExpr::CK_DerivedToBase,
3337 (Expr*)CurInit.release(),
3338 Step->Kind == SK_CastDerivedToBaseLValue));
3339 break;
3340 }
3341
3342 case SK_BindReference:
3343 if (FieldDecl *BitField = CurInitExpr->getBitField()) {
3344 // References cannot bind to bit fields (C++ [dcl.init.ref]p5).
3345 S.Diag(Kind.getLocation(), diag::err_reference_bind_to_bitfield)
Douglas Gregor1b303932009-12-22 15:35:07 +00003346 << Entity.getType().isVolatileQualified()
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003347 << BitField->getDeclName()
3348 << CurInitExpr->getSourceRange();
3349 S.Diag(BitField->getLocation(), diag::note_bitfield_decl);
3350 return S.ExprError();
3351 }
Anders Carlssona91be642010-01-29 02:47:33 +00003352
Anders Carlsson8abde4b2010-01-31 17:18:49 +00003353 if (CurInitExpr->refersToVectorElement()) {
John McCallc17ae442010-02-02 19:02:38 +00003354 // References cannot bind to vector elements.
Anders Carlsson8abde4b2010-01-31 17:18:49 +00003355 S.Diag(Kind.getLocation(), diag::err_reference_bind_to_vector_element)
3356 << Entity.getType().isVolatileQualified()
3357 << CurInitExpr->getSourceRange();
3358 return S.ExprError();
3359 }
3360
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003361 // Reference binding does not have any corresponding ASTs.
3362
3363 // Check exception specifications
3364 if (S.CheckExceptionSpecCompatibility(CurInitExpr, DestType))
3365 return S.ExprError();
Anders Carlssonab0ddb52010-01-31 18:34:51 +00003366
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003367 break;
Anders Carlssonab0ddb52010-01-31 18:34:51 +00003368
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003369 case SK_BindReferenceToTemporary:
Anders Carlsson3b227bd2010-02-03 16:38:03 +00003370 // Reference binding does not have any corresponding ASTs.
3371
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003372 // Check exception specifications
3373 if (S.CheckExceptionSpecCompatibility(CurInitExpr, DestType))
3374 return S.ExprError();
3375
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003376 break;
3377
3378 case SK_UserConversion: {
3379 // We have a user-defined conversion that invokes either a constructor
3380 // or a conversion function.
3381 CastExpr::CastKind CastKind = CastExpr::CK_Unknown;
Douglas Gregore1314a62009-12-18 05:02:21 +00003382 bool IsCopy = false;
John McCalla0296f72010-03-19 07:35:19 +00003383 FunctionDecl *Fn = Step->Function.Function;
3384 DeclAccessPair FoundFn = Step->Function.FoundDecl;
John McCall760af172010-02-01 03:16:54 +00003385 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Fn)) {
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003386 // Build a call to the selected constructor.
3387 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(S);
3388 SourceLocation Loc = CurInitExpr->getLocStart();
3389 CurInit.release(); // Ownership transferred into MultiExprArg, below.
John McCall760af172010-02-01 03:16:54 +00003390
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003391 // Determine the arguments required to actually perform the constructor
3392 // call.
3393 if (S.CompleteConstructorCall(Constructor,
3394 Sema::MultiExprArg(S,
3395 (void **)&CurInitExpr,
3396 1),
3397 Loc, ConstructorArgs))
3398 return S.ExprError();
3399
3400 // Build the an expression that constructs a temporary.
3401 CurInit = S.BuildCXXConstructExpr(Loc, Step->Type, Constructor,
3402 move_arg(ConstructorArgs));
3403 if (CurInit.isInvalid())
3404 return S.ExprError();
John McCall760af172010-02-01 03:16:54 +00003405
John McCalla0296f72010-03-19 07:35:19 +00003406 S.CheckConstructorAccess(Kind.getLocation(), Constructor,
3407 FoundFn.getAccess());
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003408
3409 CastKind = CastExpr::CK_ConstructorConversion;
Douglas Gregore1314a62009-12-18 05:02:21 +00003410 QualType Class = S.Context.getTypeDeclType(Constructor->getParent());
3411 if (S.Context.hasSameUnqualifiedType(SourceType, Class) ||
3412 S.IsDerivedFrom(SourceType, Class))
3413 IsCopy = true;
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003414 } else {
3415 // Build a call to the conversion function.
John McCall760af172010-02-01 03:16:54 +00003416 CXXConversionDecl *Conversion = cast<CXXConversionDecl>(Fn);
Douglas Gregore1314a62009-12-18 05:02:21 +00003417
John McCall1064d7e2010-03-16 05:22:47 +00003418 S.CheckMemberOperatorAccess(Kind.getLocation(), CurInitExpr, 0,
John McCalla0296f72010-03-19 07:35:19 +00003419 FoundFn);
John McCall760af172010-02-01 03:16:54 +00003420
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003421 // FIXME: Should we move this initialization into a separate
3422 // derived-to-base conversion? I believe the answer is "no", because
3423 // we don't want to turn off access control here for c-style casts.
Douglas Gregorcc3f3252010-03-03 23:55:11 +00003424 if (S.PerformObjectArgumentInitialization(CurInitExpr, /*Qualifier=*/0,
3425 Conversion))
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003426 return S.ExprError();
3427
3428 // Do a little dance to make sure that CurInit has the proper
3429 // pointer.
3430 CurInit.release();
3431
3432 // Build the actual call to the conversion function.
3433 CurInit = S.Owned(S.BuildCXXMemberCallExpr(CurInitExpr, Conversion));
3434 if (CurInit.isInvalid() || !CurInit.get())
3435 return S.ExprError();
3436
3437 CastKind = CastExpr::CK_UserDefinedConversion;
3438 }
3439
Douglas Gregore1314a62009-12-18 05:02:21 +00003440 if (shouldBindAsTemporary(Entity, IsCopy))
3441 CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>());
3442
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003443 CurInitExpr = CurInit.takeAs<Expr>();
3444 CurInit = S.Owned(new (S.Context) ImplicitCastExpr(CurInitExpr->getType(),
3445 CastKind,
3446 CurInitExpr,
Douglas Gregore1314a62009-12-18 05:02:21 +00003447 false));
3448
3449 if (!IsCopy)
Douglas Gregora4b592a2009-12-19 03:01:41 +00003450 CurInit = CopyIfRequiredForEntity(S, Entity, Kind, move(CurInit));
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003451 break;
3452 }
3453
3454 case SK_QualificationConversionLValue:
3455 case SK_QualificationConversionRValue:
3456 // Perform a qualification conversion; these can never go wrong.
3457 S.ImpCastExprToType(CurInitExpr, Step->Type,
3458 CastExpr::CK_NoOp,
3459 Step->Kind == SK_QualificationConversionLValue);
3460 CurInit.release();
3461 CurInit = S.Owned(CurInitExpr);
3462 break;
3463
3464 case SK_ConversionSequence:
Douglas Gregor7c3bbdf2009-12-16 03:45:30 +00003465 if (S.PerformImplicitConversion(CurInitExpr, Step->Type, Sema::AA_Converting,
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003466 false, false, *Step->ICS))
3467 return S.ExprError();
3468
3469 CurInit.release();
3470 CurInit = S.Owned(CurInitExpr);
3471 break;
Douglas Gregor51e77d52009-12-10 17:56:55 +00003472
3473 case SK_ListInitialization: {
3474 InitListExpr *InitList = cast<InitListExpr>(CurInitExpr);
3475 QualType Ty = Step->Type;
Douglas Gregor723796a2009-12-16 06:35:08 +00003476 if (S.CheckInitList(Entity, InitList, ResultType? *ResultType : Ty))
Douglas Gregor51e77d52009-12-10 17:56:55 +00003477 return S.ExprError();
3478
3479 CurInit.release();
3480 CurInit = S.Owned(InitList);
3481 break;
3482 }
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00003483
3484 case SK_ConstructorInitialization: {
3485 CXXConstructorDecl *Constructor
John McCalla0296f72010-03-19 07:35:19 +00003486 = cast<CXXConstructorDecl>(Step->Function.Function);
John McCall760af172010-02-01 03:16:54 +00003487
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00003488 // Build a call to the selected constructor.
3489 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(S);
3490 SourceLocation Loc = Kind.getLocation();
3491
3492 // Determine the arguments required to actually perform the constructor
3493 // call.
3494 if (S.CompleteConstructorCall(Constructor, move(Args),
3495 Loc, ConstructorArgs))
3496 return S.ExprError();
3497
3498 // Build the an expression that constructs a temporary.
Douglas Gregor9bc6b7f2010-03-02 17:18:33 +00003499 if (Entity.getKind() == InitializedEntity::EK_Temporary &&
3500 (Kind.getKind() == InitializationKind::IK_Direct ||
3501 Kind.getKind() == InitializationKind::IK_Value)) {
3502 // An explicitly-constructed temporary, e.g., X(1, 2).
3503 unsigned NumExprs = ConstructorArgs.size();
3504 Expr **Exprs = (Expr **)ConstructorArgs.take();
3505 S.MarkDeclarationReferenced(Kind.getLocation(), Constructor);
3506 CurInit = S.Owned(new (S.Context) CXXTemporaryObjectExpr(S.Context,
3507 Constructor,
3508 Entity.getType(),
3509 Kind.getLocation(),
3510 Exprs,
3511 NumExprs,
3512 Kind.getParenRange().getEnd()));
3513 } else
3514 CurInit = S.BuildCXXConstructExpr(Loc, Entity.getType(),
3515 Constructor,
3516 move_arg(ConstructorArgs),
3517 ConstructorInitRequiresZeroInit,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00003518 Entity.getKind() == InitializedEntity::EK_Base);
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00003519 if (CurInit.isInvalid())
3520 return S.ExprError();
John McCall760af172010-02-01 03:16:54 +00003521
3522 // Only check access if all of that succeeded.
John McCalla0296f72010-03-19 07:35:19 +00003523 S.CheckConstructorAccess(Loc, Constructor,
3524 Step->Function.FoundDecl.getAccess());
Douglas Gregore1314a62009-12-18 05:02:21 +00003525
3526 bool Elidable
3527 = cast<CXXConstructExpr>((Expr *)CurInit.get())->isElidable();
3528 if (shouldBindAsTemporary(Entity, Elidable))
3529 CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>());
3530
3531 if (!Elidable)
Douglas Gregora4b592a2009-12-19 03:01:41 +00003532 CurInit = CopyIfRequiredForEntity(S, Entity, Kind, move(CurInit));
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00003533 break;
3534 }
Douglas Gregor7dc42e52009-12-15 00:01:57 +00003535
3536 case SK_ZeroInitialization: {
Douglas Gregor4f4b1862009-12-16 18:50:27 +00003537 step_iterator NextStep = Step;
3538 ++NextStep;
3539 if (NextStep != StepEnd &&
3540 NextStep->Kind == SK_ConstructorInitialization) {
3541 // The need for zero-initialization is recorded directly into
3542 // the call to the object's constructor within the next step.
3543 ConstructorInitRequiresZeroInit = true;
3544 } else if (Kind.getKind() == InitializationKind::IK_Value &&
3545 S.getLangOptions().CPlusPlus &&
3546 !Kind.isImplicitValueInit()) {
Douglas Gregor7dc42e52009-12-15 00:01:57 +00003547 CurInit = S.Owned(new (S.Context) CXXZeroInitValueExpr(Step->Type,
3548 Kind.getRange().getBegin(),
3549 Kind.getRange().getEnd()));
Douglas Gregor4f4b1862009-12-16 18:50:27 +00003550 } else {
Douglas Gregor7dc42e52009-12-15 00:01:57 +00003551 CurInit = S.Owned(new (S.Context) ImplicitValueInitExpr(Step->Type));
Douglas Gregor4f4b1862009-12-16 18:50:27 +00003552 }
Douglas Gregor7dc42e52009-12-15 00:01:57 +00003553 break;
3554 }
Douglas Gregore1314a62009-12-18 05:02:21 +00003555
3556 case SK_CAssignment: {
3557 QualType SourceType = CurInitExpr->getType();
3558 Sema::AssignConvertType ConvTy =
3559 S.CheckSingleAssignmentConstraints(Step->Type, CurInitExpr);
Douglas Gregor96596c92009-12-22 07:24:36 +00003560
3561 // If this is a call, allow conversion to a transparent union.
3562 if (ConvTy != Sema::Compatible &&
3563 Entity.getKind() == InitializedEntity::EK_Parameter &&
3564 S.CheckTransparentUnionArgumentConstraints(Step->Type, CurInitExpr)
3565 == Sema::Compatible)
3566 ConvTy = Sema::Compatible;
3567
Douglas Gregore1314a62009-12-18 05:02:21 +00003568 if (S.DiagnoseAssignmentResult(ConvTy, Kind.getLocation(),
3569 Step->Type, SourceType,
3570 CurInitExpr, getAssignmentAction(Entity)))
3571 return S.ExprError();
3572
3573 CurInit.release();
3574 CurInit = S.Owned(CurInitExpr);
3575 break;
3576 }
Eli Friedman78275202009-12-19 08:11:05 +00003577
3578 case SK_StringInit: {
3579 QualType Ty = Step->Type;
3580 CheckStringInit(CurInitExpr, ResultType ? *ResultType : Ty, S);
3581 break;
3582 }
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003583 }
3584 }
3585
3586 return move(CurInit);
3587}
3588
3589//===----------------------------------------------------------------------===//
3590// Diagnose initialization failures
3591//===----------------------------------------------------------------------===//
3592bool InitializationSequence::Diagnose(Sema &S,
3593 const InitializedEntity &Entity,
3594 const InitializationKind &Kind,
3595 Expr **Args, unsigned NumArgs) {
3596 if (SequenceKind != FailedSequence)
3597 return false;
3598
Douglas Gregor1b303932009-12-22 15:35:07 +00003599 QualType DestType = Entity.getType();
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003600 switch (Failure) {
3601 case FK_TooManyInitsForReference:
Douglas Gregor7ae2d772010-01-31 09:12:51 +00003602 // FIXME: Customize for the initialized entity?
3603 if (NumArgs == 0)
3604 S.Diag(Kind.getLocation(), diag::err_reference_without_init)
3605 << DestType.getNonReferenceType();
3606 else // FIXME: diagnostic below could be better!
3607 S.Diag(Kind.getLocation(), diag::err_reference_has_multiple_inits)
3608 << SourceRange(Args[0]->getLocStart(), Args[NumArgs - 1]->getLocEnd());
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003609 break;
3610
3611 case FK_ArrayNeedsInitList:
3612 case FK_ArrayNeedsInitListOrStringLiteral:
3613 S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list)
3614 << (Failure == FK_ArrayNeedsInitListOrStringLiteral);
3615 break;
3616
3617 case FK_AddressOfOverloadFailed:
3618 S.ResolveAddressOfOverloadedFunction(Args[0],
3619 DestType.getNonReferenceType(),
3620 true);
3621 break;
3622
3623 case FK_ReferenceInitOverloadFailed:
Douglas Gregor540c3b02009-12-14 17:27:33 +00003624 case FK_UserConversionOverloadFailed:
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003625 switch (FailedOverloadResult) {
3626 case OR_Ambiguous:
Douglas Gregore1314a62009-12-18 05:02:21 +00003627 if (Failure == FK_UserConversionOverloadFailed)
3628 S.Diag(Kind.getLocation(), diag::err_typecheck_ambiguous_condition)
3629 << Args[0]->getType() << DestType
3630 << Args[0]->getSourceRange();
3631 else
3632 S.Diag(Kind.getLocation(), diag::err_ref_init_ambiguous)
3633 << DestType << Args[0]->getType()
3634 << Args[0]->getSourceRange();
3635
John McCallad907772010-01-12 07:18:19 +00003636 S.PrintOverloadCandidates(FailedCandidateSet, Sema::OCD_ViableCandidates,
3637 Args, NumArgs);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003638 break;
3639
3640 case OR_No_Viable_Function:
3641 S.Diag(Kind.getLocation(), diag::err_typecheck_nonviable_condition)
3642 << Args[0]->getType() << DestType.getNonReferenceType()
3643 << Args[0]->getSourceRange();
John McCallad907772010-01-12 07:18:19 +00003644 S.PrintOverloadCandidates(FailedCandidateSet, Sema::OCD_AllCandidates,
3645 Args, NumArgs);
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003646 break;
3647
3648 case OR_Deleted: {
3649 S.Diag(Kind.getLocation(), diag::err_typecheck_deleted_function)
3650 << Args[0]->getType() << DestType.getNonReferenceType()
3651 << Args[0]->getSourceRange();
3652 OverloadCandidateSet::iterator Best;
3653 OverloadingResult Ovl = S.BestViableFunction(FailedCandidateSet,
3654 Kind.getLocation(),
3655 Best);
3656 if (Ovl == OR_Deleted) {
3657 S.Diag(Best->Function->getLocation(), diag::note_unavailable_here)
3658 << Best->Function->isDeleted();
3659 } else {
Jeffrey Yasskin1615d452009-12-12 05:05:38 +00003660 llvm_unreachable("Inconsistent overload resolution?");
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003661 }
3662 break;
3663 }
3664
3665 case OR_Success:
Jeffrey Yasskin1615d452009-12-12 05:05:38 +00003666 llvm_unreachable("Conversion did not fail!");
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003667 break;
3668 }
3669 break;
3670
3671 case FK_NonConstLValueReferenceBindingToTemporary:
3672 case FK_NonConstLValueReferenceBindingToUnrelated:
3673 S.Diag(Kind.getLocation(),
3674 Failure == FK_NonConstLValueReferenceBindingToTemporary
3675 ? diag::err_lvalue_reference_bind_to_temporary
3676 : diag::err_lvalue_reference_bind_to_unrelated)
Douglas Gregord1e08642010-01-29 19:39:15 +00003677 << DestType.getNonReferenceType().isVolatileQualified()
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003678 << DestType.getNonReferenceType()
3679 << Args[0]->getType()
3680 << Args[0]->getSourceRange();
3681 break;
3682
3683 case FK_RValueReferenceBindingToLValue:
3684 S.Diag(Kind.getLocation(), diag::err_lvalue_to_rvalue_ref)
3685 << Args[0]->getSourceRange();
3686 break;
3687
3688 case FK_ReferenceInitDropsQualifiers:
3689 S.Diag(Kind.getLocation(), diag::err_reference_bind_drops_quals)
3690 << DestType.getNonReferenceType()
3691 << Args[0]->getType()
3692 << Args[0]->getSourceRange();
3693 break;
3694
3695 case FK_ReferenceInitFailed:
3696 S.Diag(Kind.getLocation(), diag::err_reference_bind_failed)
3697 << DestType.getNonReferenceType()
3698 << (Args[0]->isLvalue(S.Context) == Expr::LV_Valid)
3699 << Args[0]->getType()
3700 << Args[0]->getSourceRange();
3701 break;
3702
3703 case FK_ConversionFailed:
Douglas Gregore1314a62009-12-18 05:02:21 +00003704 S.Diag(Kind.getLocation(), diag::err_init_conversion_failed)
3705 << (int)Entity.getKind()
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003706 << DestType
3707 << (Args[0]->isLvalue(S.Context) == Expr::LV_Valid)
3708 << Args[0]->getType()
3709 << Args[0]->getSourceRange();
Douglas Gregor51e77d52009-12-10 17:56:55 +00003710 break;
3711
3712 case FK_TooManyInitsForScalar: {
Douglas Gregor85dabae2009-12-16 01:38:02 +00003713 SourceRange R;
3714
3715 if (InitListExpr *InitList = dyn_cast<InitListExpr>(Args[0]))
3716 R = SourceRange(InitList->getInit(1)->getLocStart(),
3717 InitList->getLocEnd());
3718 else
3719 R = SourceRange(Args[0]->getLocStart(), Args[NumArgs - 1]->getLocEnd());
Douglas Gregor51e77d52009-12-10 17:56:55 +00003720
3721 S.Diag(Kind.getLocation(), diag::err_excess_initializers)
Douglas Gregor85dabae2009-12-16 01:38:02 +00003722 << /*scalar=*/2 << R;
Douglas Gregor51e77d52009-12-10 17:56:55 +00003723 break;
3724 }
3725
3726 case FK_ReferenceBindingToInitList:
3727 S.Diag(Kind.getLocation(), diag::err_reference_bind_init_list)
3728 << DestType.getNonReferenceType() << Args[0]->getSourceRange();
3729 break;
3730
3731 case FK_InitListBadDestinationType:
3732 S.Diag(Kind.getLocation(), diag::err_init_list_bad_dest_type)
3733 << (DestType->isRecordType()) << DestType << Args[0]->getSourceRange();
3734 break;
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00003735
3736 case FK_ConstructorOverloadFailed: {
3737 SourceRange ArgsRange;
3738 if (NumArgs)
3739 ArgsRange = SourceRange(Args[0]->getLocStart(),
3740 Args[NumArgs - 1]->getLocEnd());
3741
3742 // FIXME: Using "DestType" for the entity we're printing is probably
3743 // bad.
3744 switch (FailedOverloadResult) {
3745 case OR_Ambiguous:
3746 S.Diag(Kind.getLocation(), diag::err_ovl_ambiguous_init)
3747 << DestType << ArgsRange;
John McCall12f97bc2010-01-08 04:41:39 +00003748 S.PrintOverloadCandidates(FailedCandidateSet,
John McCallad907772010-01-12 07:18:19 +00003749 Sema::OCD_ViableCandidates, Args, NumArgs);
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00003750 break;
3751
3752 case OR_No_Viable_Function:
Douglas Gregor7ae2d772010-01-31 09:12:51 +00003753 if (Kind.getKind() == InitializationKind::IK_Default &&
3754 (Entity.getKind() == InitializedEntity::EK_Base ||
3755 Entity.getKind() == InitializedEntity::EK_Member) &&
3756 isa<CXXConstructorDecl>(S.CurContext)) {
3757 // This is implicit default initialization of a member or
3758 // base within a constructor. If no viable function was
3759 // found, notify the user that she needs to explicitly
3760 // initialize this base/member.
3761 CXXConstructorDecl *Constructor
3762 = cast<CXXConstructorDecl>(S.CurContext);
3763 if (Entity.getKind() == InitializedEntity::EK_Base) {
3764 S.Diag(Kind.getLocation(), diag::err_missing_default_ctor)
3765 << Constructor->isImplicit()
3766 << S.Context.getTypeDeclType(Constructor->getParent())
3767 << /*base=*/0
3768 << Entity.getType();
3769
3770 RecordDecl *BaseDecl
3771 = Entity.getBaseSpecifier()->getType()->getAs<RecordType>()
3772 ->getDecl();
3773 S.Diag(BaseDecl->getLocation(), diag::note_previous_decl)
3774 << S.Context.getTagDeclType(BaseDecl);
3775 } else {
3776 S.Diag(Kind.getLocation(), diag::err_missing_default_ctor)
3777 << Constructor->isImplicit()
3778 << S.Context.getTypeDeclType(Constructor->getParent())
3779 << /*member=*/1
3780 << Entity.getName();
3781 S.Diag(Entity.getDecl()->getLocation(), diag::note_field_decl);
3782
3783 if (const RecordType *Record
3784 = Entity.getType()->getAs<RecordType>())
3785 S.Diag(Record->getDecl()->getLocation(),
3786 diag::note_previous_decl)
3787 << S.Context.getTagDeclType(Record->getDecl());
3788 }
3789 break;
3790 }
3791
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00003792 S.Diag(Kind.getLocation(), diag::err_ovl_no_viable_function_in_init)
3793 << DestType << ArgsRange;
John McCallad907772010-01-12 07:18:19 +00003794 S.PrintOverloadCandidates(FailedCandidateSet, Sema::OCD_AllCandidates,
3795 Args, NumArgs);
Douglas Gregor1e7ffa72009-12-14 20:49:26 +00003796 break;
3797
3798 case OR_Deleted: {
3799 S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init)
3800 << true << DestType << ArgsRange;
3801 OverloadCandidateSet::iterator Best;
3802 OverloadingResult Ovl = S.BestViableFunction(FailedCandidateSet,
3803 Kind.getLocation(),
3804 Best);
3805 if (Ovl == OR_Deleted) {
3806 S.Diag(Best->Function->getLocation(), diag::note_unavailable_here)
3807 << Best->Function->isDeleted();
3808 } else {
3809 llvm_unreachable("Inconsistent overload resolution?");
3810 }
3811 break;
3812 }
3813
3814 case OR_Success:
3815 llvm_unreachable("Conversion did not fail!");
3816 break;
3817 }
3818 break;
3819 }
Douglas Gregor85dabae2009-12-16 01:38:02 +00003820
3821 case FK_DefaultInitOfConst:
Douglas Gregor7ae2d772010-01-31 09:12:51 +00003822 if (Entity.getKind() == InitializedEntity::EK_Member &&
3823 isa<CXXConstructorDecl>(S.CurContext)) {
3824 // This is implicit default-initialization of a const member in
3825 // a constructor. Complain that it needs to be explicitly
3826 // initialized.
3827 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(S.CurContext);
3828 S.Diag(Kind.getLocation(), diag::err_uninitialized_member_in_ctor)
3829 << Constructor->isImplicit()
3830 << S.Context.getTypeDeclType(Constructor->getParent())
3831 << /*const=*/1
3832 << Entity.getName();
3833 S.Diag(Entity.getDecl()->getLocation(), diag::note_previous_decl)
3834 << Entity.getName();
3835 } else {
3836 S.Diag(Kind.getLocation(), diag::err_default_init_const)
3837 << DestType << (bool)DestType->getAs<RecordType>();
3838 }
Douglas Gregor85dabae2009-12-16 01:38:02 +00003839 break;
Douglas Gregor3e1e5272009-12-09 23:02:17 +00003840 }
3841
3842 return true;
3843}
Douglas Gregore1314a62009-12-18 05:02:21 +00003844
Douglas Gregor65eb86e2010-01-29 19:14:02 +00003845void InitializationSequence::dump(llvm::raw_ostream &OS) const {
3846 switch (SequenceKind) {
3847 case FailedSequence: {
3848 OS << "Failed sequence: ";
3849 switch (Failure) {
3850 case FK_TooManyInitsForReference:
3851 OS << "too many initializers for reference";
3852 break;
3853
3854 case FK_ArrayNeedsInitList:
3855 OS << "array requires initializer list";
3856 break;
3857
3858 case FK_ArrayNeedsInitListOrStringLiteral:
3859 OS << "array requires initializer list or string literal";
3860 break;
3861
3862 case FK_AddressOfOverloadFailed:
3863 OS << "address of overloaded function failed";
3864 break;
3865
3866 case FK_ReferenceInitOverloadFailed:
3867 OS << "overload resolution for reference initialization failed";
3868 break;
3869
3870 case FK_NonConstLValueReferenceBindingToTemporary:
3871 OS << "non-const lvalue reference bound to temporary";
3872 break;
3873
3874 case FK_NonConstLValueReferenceBindingToUnrelated:
3875 OS << "non-const lvalue reference bound to unrelated type";
3876 break;
3877
3878 case FK_RValueReferenceBindingToLValue:
3879 OS << "rvalue reference bound to an lvalue";
3880 break;
3881
3882 case FK_ReferenceInitDropsQualifiers:
3883 OS << "reference initialization drops qualifiers";
3884 break;
3885
3886 case FK_ReferenceInitFailed:
3887 OS << "reference initialization failed";
3888 break;
3889
3890 case FK_ConversionFailed:
3891 OS << "conversion failed";
3892 break;
3893
3894 case FK_TooManyInitsForScalar:
3895 OS << "too many initializers for scalar";
3896 break;
3897
3898 case FK_ReferenceBindingToInitList:
3899 OS << "referencing binding to initializer list";
3900 break;
3901
3902 case FK_InitListBadDestinationType:
3903 OS << "initializer list for non-aggregate, non-scalar type";
3904 break;
3905
3906 case FK_UserConversionOverloadFailed:
3907 OS << "overloading failed for user-defined conversion";
3908 break;
3909
3910 case FK_ConstructorOverloadFailed:
3911 OS << "constructor overloading failed";
3912 break;
3913
3914 case FK_DefaultInitOfConst:
3915 OS << "default initialization of a const variable";
3916 break;
3917 }
3918 OS << '\n';
3919 return;
3920 }
3921
3922 case DependentSequence:
3923 OS << "Dependent sequence: ";
3924 return;
3925
3926 case UserDefinedConversion:
3927 OS << "User-defined conversion sequence: ";
3928 break;
3929
3930 case ConstructorInitialization:
3931 OS << "Constructor initialization sequence: ";
3932 break;
3933
3934 case ReferenceBinding:
3935 OS << "Reference binding: ";
3936 break;
3937
3938 case ListInitialization:
3939 OS << "List initialization: ";
3940 break;
3941
3942 case ZeroInitialization:
3943 OS << "Zero initialization\n";
3944 return;
3945
3946 case NoInitialization:
3947 OS << "No initialization\n";
3948 return;
3949
3950 case StandardConversion:
3951 OS << "Standard conversion: ";
3952 break;
3953
3954 case CAssignment:
3955 OS << "C assignment: ";
3956 break;
3957
3958 case StringInit:
3959 OS << "String initialization: ";
3960 break;
3961 }
3962
3963 for (step_iterator S = step_begin(), SEnd = step_end(); S != SEnd; ++S) {
3964 if (S != step_begin()) {
3965 OS << " -> ";
3966 }
3967
3968 switch (S->Kind) {
3969 case SK_ResolveAddressOfOverloadedFunction:
3970 OS << "resolve address of overloaded function";
3971 break;
3972
3973 case SK_CastDerivedToBaseRValue:
3974 OS << "derived-to-base case (rvalue" << S->Type.getAsString() << ")";
3975 break;
3976
3977 case SK_CastDerivedToBaseLValue:
3978 OS << "derived-to-base case (lvalue" << S->Type.getAsString() << ")";
3979 break;
3980
3981 case SK_BindReference:
3982 OS << "bind reference to lvalue";
3983 break;
3984
3985 case SK_BindReferenceToTemporary:
3986 OS << "bind reference to a temporary";
3987 break;
3988
3989 case SK_UserConversion:
John McCalla0296f72010-03-19 07:35:19 +00003990 OS << "user-defined conversion via "
3991 << S->Function.Function->getNameAsString();
Douglas Gregor65eb86e2010-01-29 19:14:02 +00003992 break;
3993
3994 case SK_QualificationConversionRValue:
3995 OS << "qualification conversion (rvalue)";
3996
3997 case SK_QualificationConversionLValue:
3998 OS << "qualification conversion (lvalue)";
3999 break;
4000
4001 case SK_ConversionSequence:
4002 OS << "implicit conversion sequence (";
4003 S->ICS->DebugPrint(); // FIXME: use OS
4004 OS << ")";
4005 break;
4006
4007 case SK_ListInitialization:
4008 OS << "list initialization";
4009 break;
4010
4011 case SK_ConstructorInitialization:
4012 OS << "constructor initialization";
4013 break;
4014
4015 case SK_ZeroInitialization:
4016 OS << "zero initialization";
4017 break;
4018
4019 case SK_CAssignment:
4020 OS << "C assignment";
4021 break;
4022
4023 case SK_StringInit:
4024 OS << "string initialization";
4025 break;
4026 }
4027 }
4028}
4029
4030void InitializationSequence::dump() const {
4031 dump(llvm::errs());
4032}
4033
Douglas Gregore1314a62009-12-18 05:02:21 +00004034//===----------------------------------------------------------------------===//
4035// Initialization helper functions
4036//===----------------------------------------------------------------------===//
4037Sema::OwningExprResult
4038Sema::PerformCopyInitialization(const InitializedEntity &Entity,
4039 SourceLocation EqualLoc,
4040 OwningExprResult Init) {
4041 if (Init.isInvalid())
4042 return ExprError();
4043
4044 Expr *InitE = (Expr *)Init.get();
4045 assert(InitE && "No initialization expression?");
4046
4047 if (EqualLoc.isInvalid())
4048 EqualLoc = InitE->getLocStart();
4049
4050 InitializationKind Kind = InitializationKind::CreateCopy(InitE->getLocStart(),
4051 EqualLoc);
4052 InitializationSequence Seq(*this, Entity, Kind, &InitE, 1);
4053 Init.release();
4054 return Seq.Perform(*this, Entity, Kind,
4055 MultiExprArg(*this, (void**)&InitE, 1));
4056}