blob: 7c52df5f7c497f5a97a1de74999878e5cb254461 [file] [log] [blame]
Steve Naroff0cca7492008-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 Lattnerdd8e0062009-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 Lattner8b419b92009-02-24 22:48:58 +000014// This file also implements Sema::CheckInitializerTypes.
Steve Naroff0cca7492008-05-01 22:18:59 +000015//
16//===----------------------------------------------------------------------===//
17
Douglas Gregor20093b42009-12-09 23:02:17 +000018#include "SemaInit.h"
Douglas Gregorc171e3b2010-01-01 00:03:05 +000019#include "Lookup.h"
Steve Naroff0cca7492008-05-01 22:18:59 +000020#include "Sema.h"
Douglas Gregor05c13a32009-01-22 00:58:24 +000021#include "clang/Parse/Designator.h"
Steve Naroff0cca7492008-05-01 22:18:59 +000022#include "clang/AST/ASTContext.h"
Anders Carlsson2078bb92009-05-27 16:10:08 +000023#include "clang/AST/ExprCXX.h"
Chris Lattner79e079d2009-02-24 23:10:27 +000024#include "clang/AST/ExprObjC.h"
Douglas Gregord6542d82009-12-22 15:35:07 +000025#include "clang/AST/TypeLoc.h"
Douglas Gregor20093b42009-12-09 23:02:17 +000026#include "llvm/Support/ErrorHandling.h"
Douglas Gregorc34ee5e2009-01-29 00:45:39 +000027#include <map>
Douglas Gregor05c13a32009-01-22 00:58:24 +000028using namespace clang;
Steve Naroff0cca7492008-05-01 22:18:59 +000029
Chris Lattnerdd8e0062009-02-24 22:27:37 +000030//===----------------------------------------------------------------------===//
31// Sema Initialization Checking
32//===----------------------------------------------------------------------===//
33
Chris Lattner79e079d2009-02-24 23:10:27 +000034static Expr *IsStringInit(Expr *Init, QualType DeclType, ASTContext &Context) {
Chris Lattner8879e3b2009-02-26 23:26:43 +000035 const ArrayType *AT = Context.getAsArrayType(DeclType);
36 if (!AT) return 0;
37
Eli Friedman8718a6a2009-05-29 18:22:49 +000038 if (!isa<ConstantArrayType>(AT) && !isa<IncompleteArrayType>(AT))
39 return 0;
40
Chris Lattner8879e3b2009-02-26 23:26:43 +000041 // See if this is a string literal or @encode.
42 Init = Init->IgnoreParens();
Mike Stump1eb44332009-09-09 15:08:12 +000043
Chris Lattner8879e3b2009-02-26 23:26:43 +000044 // Handle @encode, which is a narrow string.
45 if (isa<ObjCEncodeExpr>(Init) && AT->getElementType()->isCharType())
46 return Init;
47
48 // Otherwise we can only handle string literals.
49 StringLiteral *SL = dyn_cast<StringLiteral>(Init);
Chris Lattner220b6362009-02-26 23:42:47 +000050 if (SL == 0) return 0;
Eli Friedmanbb6415c2009-05-31 10:54:53 +000051
52 QualType ElemTy = Context.getCanonicalType(AT->getElementType());
Chris Lattner8879e3b2009-02-26 23:26:43 +000053 // char array can be initialized with a narrow string.
54 // Only allow char x[] = "foo"; not char x[] = L"foo";
55 if (!SL->isWide())
Eli Friedmanbb6415c2009-05-31 10:54:53 +000056 return ElemTy->isCharType() ? Init : 0;
Chris Lattner8879e3b2009-02-26 23:26:43 +000057
Eli Friedmanbb6415c2009-05-31 10:54:53 +000058 // wchar_t array can be initialized with a wide string: C99 6.7.8p15 (with
59 // correction from DR343): "An array with element type compatible with a
60 // qualified or unqualified version of wchar_t may be initialized by a wide
61 // string literal, optionally enclosed in braces."
62 if (Context.typesAreCompatible(Context.getWCharType(),
63 ElemTy.getUnqualifiedType()))
Chris Lattner8879e3b2009-02-26 23:26:43 +000064 return Init;
Mike Stump1eb44332009-09-09 15:08:12 +000065
Chris Lattnerdd8e0062009-02-24 22:27:37 +000066 return 0;
67}
68
Chris Lattner79e079d2009-02-24 23:10:27 +000069static void CheckStringInit(Expr *Str, QualType &DeclT, Sema &S) {
70 // Get the length of the string as parsed.
71 uint64_t StrLength =
72 cast<ConstantArrayType>(Str->getType())->getSize().getZExtValue();
73
Mike Stump1eb44332009-09-09 15:08:12 +000074
Chris Lattner79e079d2009-02-24 23:10:27 +000075 const ArrayType *AT = S.Context.getAsArrayType(DeclT);
Chris Lattnerdd8e0062009-02-24 22:27:37 +000076 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Mike Stump1eb44332009-09-09 15:08:12 +000077 // C99 6.7.8p14. We have an array of character type with unknown size
Chris Lattnerdd8e0062009-02-24 22:27:37 +000078 // being initialized to a string literal.
79 llvm::APSInt ConstVal(32);
Chris Lattner19da8cd2009-02-24 23:01:39 +000080 ConstVal = StrLength;
Chris Lattnerdd8e0062009-02-24 22:27:37 +000081 // Return a new array type (C99 6.7.8p22).
John McCall46a617a2009-10-16 00:14:28 +000082 DeclT = S.Context.getConstantArrayType(IAT->getElementType(),
83 ConstVal,
84 ArrayType::Normal, 0);
Chris Lattner19da8cd2009-02-24 23:01:39 +000085 return;
Chris Lattnerdd8e0062009-02-24 22:27:37 +000086 }
Mike Stump1eb44332009-09-09 15:08:12 +000087
Eli Friedman8718a6a2009-05-29 18:22:49 +000088 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Mike Stump1eb44332009-09-09 15:08:12 +000089
Eli Friedman8718a6a2009-05-29 18:22:49 +000090 // C99 6.7.8p14. We have an array of character type with known size. However,
91 // the size may be smaller or larger than the string we are initializing.
92 // FIXME: Avoid truncation for 64-bit length strings.
93 if (StrLength-1 > CAT->getSize().getZExtValue())
94 S.Diag(Str->getSourceRange().getBegin(),
95 diag::warn_initializer_string_for_char_array_too_long)
96 << Str->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +000097
Eli Friedman8718a6a2009-05-29 18:22:49 +000098 // Set the type to the actual size that we are initializing. If we have
99 // something like:
100 // char x[1] = "foo";
101 // then this will set the string literal's type to char[1].
102 Str->setType(DeclT);
Chris Lattnerdd8e0062009-02-24 22:27:37 +0000103}
104
Chris Lattnerdd8e0062009-02-24 22:27:37 +0000105//===----------------------------------------------------------------------===//
106// Semantic checking for initializer lists.
107//===----------------------------------------------------------------------===//
108
Douglas Gregor9e80f722009-01-29 01:05:33 +0000109/// @brief Semantic checking for initializer lists.
110///
111/// The InitListChecker class contains a set of routines that each
112/// handle the initialization of a certain kind of entity, e.g.,
113/// arrays, vectors, struct/union types, scalars, etc. The
114/// InitListChecker itself performs a recursive walk of the subobject
115/// structure of the type to be initialized, while stepping through
116/// the initializer list one element at a time. The IList and Index
117/// parameters to each of the Check* routines contain the active
118/// (syntactic) initializer list and the index into that initializer
119/// list that represents the current initializer. Each routine is
120/// responsible for moving that Index forward as it consumes elements.
121///
122/// Each Check* routine also has a StructuredList/StructuredIndex
123/// arguments, which contains the current the "structured" (semantic)
124/// initializer list and the index into that initializer list where we
125/// are copying initializers as we map them over to the semantic
126/// list. Once we have completed our recursive walk of the subobject
127/// structure, we will have constructed a full semantic initializer
128/// list.
129///
130/// C99 designators cause changes in the initializer list traversal,
131/// because they make the initialization "jump" into a specific
132/// subobject and then continue the initialization from that
133/// point. CheckDesignatedInitializer() recursively steps into the
134/// designated subobject and manages backing out the recursion to
135/// initialize the subobjects after the one designated.
Chris Lattner8b419b92009-02-24 22:48:58 +0000136namespace {
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000137class InitListChecker {
Chris Lattner08202542009-02-24 22:50:46 +0000138 Sema &SemaRef;
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000139 bool hadError;
140 std::map<InitListExpr *, InitListExpr *> SyntacticToSemantic;
141 InitListExpr *FullyStructuredList;
Mike Stump1eb44332009-09-09 15:08:12 +0000142
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000143 void CheckImplicitInitList(const InitializedEntity &Entity,
Anders Carlsson987dc6a2010-01-23 20:47:59 +0000144 InitListExpr *ParentIList, QualType T,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000145 unsigned &Index, InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000146 unsigned &StructuredIndex,
147 bool TopLevelObject = false);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000148 void CheckExplicitInitList(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000149 InitListExpr *IList, QualType &T,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000150 unsigned &Index, InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000151 unsigned &StructuredIndex,
152 bool TopLevelObject = false);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000153 void CheckListElementTypes(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000154 InitListExpr *IList, QualType &DeclType,
Mike Stump1eb44332009-09-09 15:08:12 +0000155 bool SubobjectIsDesignatorContext,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000156 unsigned &Index,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000157 InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000158 unsigned &StructuredIndex,
159 bool TopLevelObject = false);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000160 void CheckSubElementType(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000161 InitListExpr *IList, QualType ElemType,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000162 unsigned &Index,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000163 InitListExpr *StructuredList,
164 unsigned &StructuredIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000165 void CheckScalarType(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000166 InitListExpr *IList, QualType DeclType,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000167 unsigned &Index,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000168 InitListExpr *StructuredList,
169 unsigned &StructuredIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000170 void CheckReferenceType(const InitializedEntity &Entity,
171 InitListExpr *IList, QualType DeclType,
Douglas Gregor930d8b52009-01-30 22:09:00 +0000172 unsigned &Index,
173 InitListExpr *StructuredList,
174 unsigned &StructuredIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000175 void CheckVectorType(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000176 InitListExpr *IList, QualType DeclType, unsigned &Index,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000177 InitListExpr *StructuredList,
178 unsigned &StructuredIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000179 void CheckStructUnionTypes(const InitializedEntity &Entity,
Anders Carlsson2bbae5d2010-01-23 20:20:40 +0000180 InitListExpr *IList, QualType DeclType,
Mike Stump1eb44332009-09-09 15:08:12 +0000181 RecordDecl::field_iterator Field,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000182 bool SubobjectIsDesignatorContext, unsigned &Index,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000183 InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000184 unsigned &StructuredIndex,
185 bool TopLevelObject = false);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000186 void CheckArrayType(const InitializedEntity &Entity,
Anders Carlsson784f6992010-01-23 20:13:41 +0000187 InitListExpr *IList, QualType &DeclType,
Mike Stump1eb44332009-09-09 15:08:12 +0000188 llvm::APSInt elementIndex,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000189 bool SubobjectIsDesignatorContext, unsigned &Index,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000190 InitListExpr *StructuredList,
191 unsigned &StructuredIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000192 bool CheckDesignatedInitializer(const InitializedEntity &Entity,
Anders Carlsson9a8a70e2010-01-23 22:49:02 +0000193 InitListExpr *IList, DesignatedInitExpr *DIE,
Douglas Gregor71199712009-04-15 04:56:10 +0000194 unsigned DesigIdx,
Mike Stump1eb44332009-09-09 15:08:12 +0000195 QualType &CurrentObjectType,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000196 RecordDecl::field_iterator *NextField,
197 llvm::APSInt *NextElementIndex,
198 unsigned &Index,
199 InitListExpr *StructuredList,
200 unsigned &StructuredIndex,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000201 bool FinishSubobjectInit,
202 bool TopLevelObject);
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000203 InitListExpr *getStructuredSubobjectInit(InitListExpr *IList, unsigned Index,
204 QualType CurrentObjectType,
205 InitListExpr *StructuredList,
206 unsigned StructuredIndex,
207 SourceRange InitRange);
Douglas Gregor9e80f722009-01-29 01:05:33 +0000208 void UpdateStructuredListElement(InitListExpr *StructuredList,
209 unsigned &StructuredIndex,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000210 Expr *expr);
211 int numArrayElements(QualType DeclType);
212 int numStructUnionElements(QualType DeclType);
Douglas Gregor930d8b52009-01-30 22:09:00 +0000213
Douglas Gregord6d37de2009-12-22 00:05:34 +0000214 void FillInValueInitForField(unsigned Init, FieldDecl *Field,
215 const InitializedEntity &ParentEntity,
216 InitListExpr *ILE, bool &RequiresSecondPass);
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000217 void FillInValueInitializations(const InitializedEntity &Entity,
218 InitListExpr *ILE, bool &RequiresSecondPass);
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000219public:
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000220 InitListChecker(Sema &S, const InitializedEntity &Entity,
221 InitListExpr *IL, QualType &T);
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000222 bool HadError() { return hadError; }
223
224 // @brief Retrieves the fully-structured initializer list used for
225 // semantic analysis and code generation.
226 InitListExpr *getFullyStructuredList() const { return FullyStructuredList; }
227};
Chris Lattner8b419b92009-02-24 22:48:58 +0000228} // end anonymous namespace
Chris Lattner68355a52009-01-29 05:10:57 +0000229
Douglas Gregord6d37de2009-12-22 00:05:34 +0000230void InitListChecker::FillInValueInitForField(unsigned Init, FieldDecl *Field,
231 const InitializedEntity &ParentEntity,
232 InitListExpr *ILE,
233 bool &RequiresSecondPass) {
234 SourceLocation Loc = ILE->getSourceRange().getBegin();
235 unsigned NumInits = ILE->getNumInits();
236 InitializedEntity MemberEntity
237 = InitializedEntity::InitializeMember(Field, &ParentEntity);
238 if (Init >= NumInits || !ILE->getInit(Init)) {
239 // FIXME: We probably don't need to handle references
240 // specially here, since value-initialization of references is
241 // handled in InitializationSequence.
242 if (Field->getType()->isReferenceType()) {
243 // C++ [dcl.init.aggr]p9:
244 // If an incomplete or empty initializer-list leaves a
245 // member of reference type uninitialized, the program is
246 // ill-formed.
247 SemaRef.Diag(Loc, diag::err_init_reference_member_uninitialized)
248 << Field->getType()
249 << ILE->getSyntacticForm()->getSourceRange();
250 SemaRef.Diag(Field->getLocation(),
251 diag::note_uninit_reference_member);
252 hadError = true;
253 return;
254 }
255
256 InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
257 true);
258 InitializationSequence InitSeq(SemaRef, MemberEntity, Kind, 0, 0);
259 if (!InitSeq) {
260 InitSeq.Diagnose(SemaRef, MemberEntity, Kind, 0, 0);
261 hadError = true;
262 return;
263 }
264
265 Sema::OwningExprResult MemberInit
266 = InitSeq.Perform(SemaRef, MemberEntity, Kind,
267 Sema::MultiExprArg(SemaRef, 0, 0));
268 if (MemberInit.isInvalid()) {
269 hadError = true;
270 return;
271 }
272
273 if (hadError) {
274 // Do nothing
275 } else if (Init < NumInits) {
276 ILE->setInit(Init, MemberInit.takeAs<Expr>());
277 } else if (InitSeq.getKind()
278 == InitializationSequence::ConstructorInitialization) {
279 // Value-initialization requires a constructor call, so
280 // extend the initializer list to include the constructor
281 // call and make a note that we'll need to take another pass
282 // through the initializer list.
283 ILE->updateInit(Init, MemberInit.takeAs<Expr>());
284 RequiresSecondPass = true;
285 }
286 } else if (InitListExpr *InnerILE
287 = dyn_cast<InitListExpr>(ILE->getInit(Init)))
288 FillInValueInitializations(MemberEntity, InnerILE,
289 RequiresSecondPass);
290}
291
Douglas Gregor4c678342009-01-28 21:54:33 +0000292/// Recursively replaces NULL values within the given initializer list
293/// with expressions that perform value-initialization of the
294/// appropriate type.
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000295void
296InitListChecker::FillInValueInitializations(const InitializedEntity &Entity,
297 InitListExpr *ILE,
298 bool &RequiresSecondPass) {
Mike Stump1eb44332009-09-09 15:08:12 +0000299 assert((ILE->getType() != SemaRef.Context.VoidTy) &&
Douglas Gregor930d8b52009-01-30 22:09:00 +0000300 "Should not have void type");
Douglas Gregor87fd7032009-02-02 17:43:21 +0000301 SourceLocation Loc = ILE->getSourceRange().getBegin();
302 if (ILE->getSyntacticForm())
303 Loc = ILE->getSyntacticForm()->getSourceRange().getBegin();
Mike Stump1eb44332009-09-09 15:08:12 +0000304
Ted Kremenek6217b802009-07-29 21:53:49 +0000305 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) {
Douglas Gregord6d37de2009-12-22 00:05:34 +0000306 if (RType->getDecl()->isUnion() &&
307 ILE->getInitializedFieldInUnion())
308 FillInValueInitForField(0, ILE->getInitializedFieldInUnion(),
309 Entity, ILE, RequiresSecondPass);
310 else {
311 unsigned Init = 0;
312 for (RecordDecl::field_iterator
313 Field = RType->getDecl()->field_begin(),
314 FieldEnd = RType->getDecl()->field_end();
315 Field != FieldEnd; ++Field) {
316 if (Field->isUnnamedBitfield())
317 continue;
Douglas Gregor4c678342009-01-28 21:54:33 +0000318
Douglas Gregord6d37de2009-12-22 00:05:34 +0000319 if (hadError)
Douglas Gregor87fd7032009-02-02 17:43:21 +0000320 return;
Douglas Gregord6d37de2009-12-22 00:05:34 +0000321
322 FillInValueInitForField(Init, *Field, Entity, ILE, RequiresSecondPass);
323 if (hadError)
Douglas Gregor87fd7032009-02-02 17:43:21 +0000324 return;
Douglas Gregor87fd7032009-02-02 17:43:21 +0000325
Douglas Gregord6d37de2009-12-22 00:05:34 +0000326 ++Init;
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000327
Douglas Gregord6d37de2009-12-22 00:05:34 +0000328 // Only look at the first initialization of a union.
329 if (RType->getDecl()->isUnion())
330 break;
331 }
Douglas Gregor4c678342009-01-28 21:54:33 +0000332 }
333
334 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000335 }
Douglas Gregor4c678342009-01-28 21:54:33 +0000336
337 QualType ElementType;
Mike Stump1eb44332009-09-09 15:08:12 +0000338
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000339 InitializedEntity ElementEntity = Entity;
Douglas Gregor87fd7032009-02-02 17:43:21 +0000340 unsigned NumInits = ILE->getNumInits();
341 unsigned NumElements = NumInits;
Chris Lattner08202542009-02-24 22:50:46 +0000342 if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) {
Douglas Gregor4c678342009-01-28 21:54:33 +0000343 ElementType = AType->getElementType();
Douglas Gregor87fd7032009-02-02 17:43:21 +0000344 if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType))
345 NumElements = CAType->getSize().getZExtValue();
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000346 ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context,
347 0, Entity);
John McCall183700f2009-09-21 23:43:11 +0000348 } else if (const VectorType *VType = ILE->getType()->getAs<VectorType>()) {
Douglas Gregor4c678342009-01-28 21:54:33 +0000349 ElementType = VType->getElementType();
Douglas Gregor87fd7032009-02-02 17:43:21 +0000350 NumElements = VType->getNumElements();
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000351 ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context,
352 0, Entity);
Mike Stump1eb44332009-09-09 15:08:12 +0000353 } else
Douglas Gregor4c678342009-01-28 21:54:33 +0000354 ElementType = ILE->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000355
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000356
Douglas Gregor87fd7032009-02-02 17:43:21 +0000357 for (unsigned Init = 0; Init != NumElements; ++Init) {
Douglas Gregor16006c92009-12-16 18:50:27 +0000358 if (hadError)
359 return;
360
Anders Carlssond3d824d2010-01-23 04:34:47 +0000361 if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement ||
362 ElementEntity.getKind() == InitializedEntity::EK_VectorElement)
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000363 ElementEntity.setElementIndex(Init);
364
Douglas Gregor87fd7032009-02-02 17:43:21 +0000365 if (Init >= NumInits || !ILE->getInit(Init)) {
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000366 InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
367 true);
368 InitializationSequence InitSeq(SemaRef, ElementEntity, Kind, 0, 0);
369 if (!InitSeq) {
370 InitSeq.Diagnose(SemaRef, ElementEntity, Kind, 0, 0);
Douglas Gregor87fd7032009-02-02 17:43:21 +0000371 hadError = true;
372 return;
373 }
374
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000375 Sema::OwningExprResult ElementInit
376 = InitSeq.Perform(SemaRef, ElementEntity, Kind,
377 Sema::MultiExprArg(SemaRef, 0, 0));
378 if (ElementInit.isInvalid()) {
Douglas Gregor16006c92009-12-16 18:50:27 +0000379 hadError = true;
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000380 return;
381 }
382
383 if (hadError) {
384 // Do nothing
385 } else if (Init < NumInits) {
386 ILE->setInit(Init, ElementInit.takeAs<Expr>());
387 } else if (InitSeq.getKind()
388 == InitializationSequence::ConstructorInitialization) {
389 // Value-initialization requires a constructor call, so
390 // extend the initializer list to include the constructor
391 // call and make a note that we'll need to take another pass
392 // through the initializer list.
393 ILE->updateInit(Init, ElementInit.takeAs<Expr>());
394 RequiresSecondPass = true;
395 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000396 } else if (InitListExpr *InnerILE
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000397 = dyn_cast<InitListExpr>(ILE->getInit(Init)))
398 FillInValueInitializations(ElementEntity, InnerILE, RequiresSecondPass);
Douglas Gregor4c678342009-01-28 21:54:33 +0000399 }
400}
401
Chris Lattner68355a52009-01-29 05:10:57 +0000402
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000403InitListChecker::InitListChecker(Sema &S, const InitializedEntity &Entity,
404 InitListExpr *IL, QualType &T)
Chris Lattner08202542009-02-24 22:50:46 +0000405 : SemaRef(S) {
Steve Naroff0cca7492008-05-01 22:18:59 +0000406 hadError = false;
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000407
Eli Friedmanb85f7072008-05-19 19:16:24 +0000408 unsigned newIndex = 0;
Douglas Gregor4c678342009-01-28 21:54:33 +0000409 unsigned newStructuredIndex = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000410 FullyStructuredList
Douglas Gregored8a93d2009-03-01 17:12:46 +0000411 = getStructuredSubobjectInit(IL, newIndex, T, 0, 0, IL->getSourceRange());
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000412 CheckExplicitInitList(Entity, IL, T, newIndex,
Anders Carlsson46f46592010-01-23 19:55:29 +0000413 FullyStructuredList, newStructuredIndex,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000414 /*TopLevelObject=*/true);
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000415
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000416 if (!hadError) {
417 bool RequiresSecondPass = false;
418 FillInValueInitializations(Entity, FullyStructuredList, RequiresSecondPass);
Douglas Gregor16006c92009-12-16 18:50:27 +0000419 if (RequiresSecondPass && !hadError)
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000420 FillInValueInitializations(Entity, FullyStructuredList,
421 RequiresSecondPass);
422 }
Steve Naroff0cca7492008-05-01 22:18:59 +0000423}
424
425int InitListChecker::numArrayElements(QualType DeclType) {
Eli Friedman638e1442008-05-25 13:22:35 +0000426 // FIXME: use a proper constant
427 int maxElements = 0x7FFFFFFF;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000428 if (const ConstantArrayType *CAT =
Chris Lattner08202542009-02-24 22:50:46 +0000429 SemaRef.Context.getAsConstantArrayType(DeclType)) {
Steve Naroff0cca7492008-05-01 22:18:59 +0000430 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
431 }
432 return maxElements;
433}
434
435int InitListChecker::numStructUnionElements(QualType DeclType) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000436 RecordDecl *structDecl = DeclType->getAs<RecordType>()->getDecl();
Douglas Gregor4c678342009-01-28 21:54:33 +0000437 int InitializableMembers = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000438 for (RecordDecl::field_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000439 Field = structDecl->field_begin(),
440 FieldEnd = structDecl->field_end();
Douglas Gregor4c678342009-01-28 21:54:33 +0000441 Field != FieldEnd; ++Field) {
442 if ((*Field)->getIdentifier() || !(*Field)->isBitField())
443 ++InitializableMembers;
444 }
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000445 if (structDecl->isUnion())
Eli Friedmanf84eda32008-05-25 14:03:31 +0000446 return std::min(InitializableMembers, 1);
447 return InitializableMembers - structDecl->hasFlexibleArrayMember();
Steve Naroff0cca7492008-05-01 22:18:59 +0000448}
449
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000450void InitListChecker::CheckImplicitInitList(const InitializedEntity &Entity,
Anders Carlsson987dc6a2010-01-23 20:47:59 +0000451 InitListExpr *ParentIList,
Douglas Gregor4c678342009-01-28 21:54:33 +0000452 QualType T, unsigned &Index,
453 InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000454 unsigned &StructuredIndex,
455 bool TopLevelObject) {
Steve Naroff0cca7492008-05-01 22:18:59 +0000456 int maxElements = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000457
Steve Naroff0cca7492008-05-01 22:18:59 +0000458 if (T->isArrayType())
459 maxElements = numArrayElements(T);
460 else if (T->isStructureType() || T->isUnionType())
461 maxElements = numStructUnionElements(T);
Eli Friedmanb85f7072008-05-19 19:16:24 +0000462 else if (T->isVectorType())
John McCall183700f2009-09-21 23:43:11 +0000463 maxElements = T->getAs<VectorType>()->getNumElements();
Steve Naroff0cca7492008-05-01 22:18:59 +0000464 else
465 assert(0 && "CheckImplicitInitList(): Illegal type");
Eli Friedmanb85f7072008-05-19 19:16:24 +0000466
Eli Friedman402256f2008-05-25 13:49:22 +0000467 if (maxElements == 0) {
Chris Lattner08202542009-02-24 22:50:46 +0000468 SemaRef.Diag(ParentIList->getInit(Index)->getLocStart(),
Eli Friedman402256f2008-05-25 13:49:22 +0000469 diag::err_implicit_empty_initializer);
Douglas Gregor4c678342009-01-28 21:54:33 +0000470 ++Index;
Eli Friedman402256f2008-05-25 13:49:22 +0000471 hadError = true;
472 return;
473 }
474
Douglas Gregor4c678342009-01-28 21:54:33 +0000475 // Build a structured initializer list corresponding to this subobject.
476 InitListExpr *StructuredSubobjectInitList
Mike Stump1eb44332009-09-09 15:08:12 +0000477 = getStructuredSubobjectInit(ParentIList, Index, T, StructuredList,
478 StructuredIndex,
Douglas Gregored8a93d2009-03-01 17:12:46 +0000479 SourceRange(ParentIList->getInit(Index)->getSourceRange().getBegin(),
480 ParentIList->getSourceRange().getEnd()));
Douglas Gregor4c678342009-01-28 21:54:33 +0000481 unsigned StructuredSubobjectInitIndex = 0;
Eli Friedmanb85f7072008-05-19 19:16:24 +0000482
Douglas Gregor4c678342009-01-28 21:54:33 +0000483 // Check the element types and build the structural subobject.
Douglas Gregor87fd7032009-02-02 17:43:21 +0000484 unsigned StartIndex = Index;
Anders Carlsson987dc6a2010-01-23 20:47:59 +0000485 CheckListElementTypes(Entity, ParentIList, T,
486 /*SubobjectIsDesignatorContext=*/false, Index,
Mike Stump1eb44332009-09-09 15:08:12 +0000487 StructuredSubobjectInitList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000488 StructuredSubobjectInitIndex,
489 TopLevelObject);
Douglas Gregor87fd7032009-02-02 17:43:21 +0000490 unsigned EndIndex = (Index == StartIndex? StartIndex : Index - 1);
Douglas Gregora6457962009-03-20 00:32:56 +0000491 StructuredSubobjectInitList->setType(T);
492
Douglas Gregored8a93d2009-03-01 17:12:46 +0000493 // Update the structured sub-object initializer so that it's ending
Douglas Gregor87fd7032009-02-02 17:43:21 +0000494 // range corresponds with the end of the last initializer it used.
495 if (EndIndex < ParentIList->getNumInits()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000496 SourceLocation EndLoc
Douglas Gregor87fd7032009-02-02 17:43:21 +0000497 = ParentIList->getInit(EndIndex)->getSourceRange().getEnd();
498 StructuredSubobjectInitList->setRBraceLoc(EndLoc);
499 }
Steve Naroff0cca7492008-05-01 22:18:59 +0000500}
501
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000502void InitListChecker::CheckExplicitInitList(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000503 InitListExpr *IList, QualType &T,
Douglas Gregor4c678342009-01-28 21:54:33 +0000504 unsigned &Index,
505 InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000506 unsigned &StructuredIndex,
507 bool TopLevelObject) {
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000508 assert(IList->isExplicit() && "Illegal Implicit InitListExpr");
Douglas Gregor4c678342009-01-28 21:54:33 +0000509 SyntacticToSemantic[IList] = StructuredList;
510 StructuredList->setSyntacticForm(IList);
Anders Carlsson46f46592010-01-23 19:55:29 +0000511 CheckListElementTypes(Entity, IList, T, /*SubobjectIsDesignatorContext=*/true,
512 Index, StructuredList, StructuredIndex, TopLevelObject);
Steve Naroffa647caa2008-05-06 00:23:44 +0000513 IList->setType(T);
Douglas Gregor4c678342009-01-28 21:54:33 +0000514 StructuredList->setType(T);
Eli Friedman638e1442008-05-25 13:22:35 +0000515 if (hadError)
516 return;
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000517
Eli Friedman638e1442008-05-25 13:22:35 +0000518 if (Index < IList->getNumInits()) {
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000519 // We have leftover initializers
Eli Friedmane5408582009-05-29 20:20:05 +0000520 if (StructuredIndex == 1 &&
521 IsStringInit(StructuredList->getInit(0), T, SemaRef.Context)) {
Douglas Gregor7c53ca62009-02-18 22:23:55 +0000522 unsigned DK = diag::warn_excess_initializers_in_char_array_initializer;
Eli Friedmane5408582009-05-29 20:20:05 +0000523 if (SemaRef.getLangOptions().CPlusPlus) {
Douglas Gregor7c53ca62009-02-18 22:23:55 +0000524 DK = diag::err_excess_initializers_in_char_array_initializer;
Eli Friedmane5408582009-05-29 20:20:05 +0000525 hadError = true;
526 }
Eli Friedmanbb504d32008-05-19 20:12:18 +0000527 // Special-case
Chris Lattner08202542009-02-24 22:50:46 +0000528 SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000529 << IList->getInit(Index)->getSourceRange();
Eli Friedmand8dc2102008-05-20 05:25:56 +0000530 } else if (!T->isIncompleteType()) {
Douglas Gregorb574e562009-01-30 22:26:29 +0000531 // Don't complain for incomplete types, since we'll get an error
532 // elsewhere
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000533 QualType CurrentObjectType = StructuredList->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000534 int initKind =
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000535 CurrentObjectType->isArrayType()? 0 :
536 CurrentObjectType->isVectorType()? 1 :
537 CurrentObjectType->isScalarType()? 2 :
538 CurrentObjectType->isUnionType()? 3 :
539 4;
Douglas Gregor7c53ca62009-02-18 22:23:55 +0000540
541 unsigned DK = diag::warn_excess_initializers;
Eli Friedmane5408582009-05-29 20:20:05 +0000542 if (SemaRef.getLangOptions().CPlusPlus) {
543 DK = diag::err_excess_initializers;
544 hadError = true;
545 }
Nate Begeman08634522009-07-07 21:53:06 +0000546 if (SemaRef.getLangOptions().OpenCL && initKind == 1) {
547 DK = diag::err_excess_initializers;
548 hadError = true;
549 }
Douglas Gregor7c53ca62009-02-18 22:23:55 +0000550
Chris Lattner08202542009-02-24 22:50:46 +0000551 SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000552 << initKind << IList->getInit(Index)->getSourceRange();
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000553 }
554 }
Eli Friedmancda25a92008-05-19 20:20:43 +0000555
Eli Friedman759f2522009-05-16 11:45:48 +0000556 if (T->isScalarType() && !TopLevelObject)
Chris Lattner08202542009-02-24 22:50:46 +0000557 SemaRef.Diag(IList->getLocStart(), diag::warn_braces_around_scalar_init)
Douglas Gregora3a83512009-04-01 23:51:29 +0000558 << IList->getSourceRange()
Chris Lattner29d9c1a2009-12-06 17:36:05 +0000559 << CodeModificationHint::CreateRemoval(IList->getLocStart())
560 << CodeModificationHint::CreateRemoval(IList->getLocEnd());
Steve Naroff0cca7492008-05-01 22:18:59 +0000561}
562
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000563void InitListChecker::CheckListElementTypes(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000564 InitListExpr *IList,
Mike Stump1eb44332009-09-09 15:08:12 +0000565 QualType &DeclType,
Douglas Gregor87f55cf2009-01-22 23:26:18 +0000566 bool SubobjectIsDesignatorContext,
Douglas Gregor4c678342009-01-28 21:54:33 +0000567 unsigned &Index,
568 InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000569 unsigned &StructuredIndex,
570 bool TopLevelObject) {
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000571 if (DeclType->isScalarType()) {
Anders Carlsson46f46592010-01-23 19:55:29 +0000572 CheckScalarType(Entity, IList, DeclType, Index,
573 StructuredList, StructuredIndex);
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000574 } else if (DeclType->isVectorType()) {
Anders Carlsson46f46592010-01-23 19:55:29 +0000575 CheckVectorType(Entity, IList, DeclType, Index,
576 StructuredList, StructuredIndex);
Douglas Gregord7eb8462009-01-30 17:31:00 +0000577 } else if (DeclType->isAggregateType()) {
578 if (DeclType->isRecordType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000579 RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
Anders Carlsson2bbae5d2010-01-23 20:20:40 +0000580 CheckStructUnionTypes(Entity, IList, DeclType, RD->field_begin(),
Douglas Gregor4c678342009-01-28 21:54:33 +0000581 SubobjectIsDesignatorContext, Index,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000582 StructuredList, StructuredIndex,
583 TopLevelObject);
Douglas Gregor87f55cf2009-01-22 23:26:18 +0000584 } else if (DeclType->isArrayType()) {
Douglas Gregorf6c717c2009-01-23 16:54:12 +0000585 llvm::APSInt Zero(
Chris Lattner08202542009-02-24 22:50:46 +0000586 SemaRef.Context.getTypeSize(SemaRef.Context.getSizeType()),
Douglas Gregorf6c717c2009-01-23 16:54:12 +0000587 false);
Anders Carlsson784f6992010-01-23 20:13:41 +0000588 CheckArrayType(Entity, IList, DeclType, Zero,
589 SubobjectIsDesignatorContext, Index,
Douglas Gregor4c678342009-01-28 21:54:33 +0000590 StructuredList, StructuredIndex);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000591 } else
Douglas Gregor4c678342009-01-28 21:54:33 +0000592 assert(0 && "Aggregate that isn't a structure or array?!");
Steve Naroff61353522008-08-10 16:05:48 +0000593 } else if (DeclType->isVoidType() || DeclType->isFunctionType()) {
594 // This type is invalid, issue a diagnostic.
Douglas Gregor4c678342009-01-28 21:54:33 +0000595 ++Index;
Chris Lattner08202542009-02-24 22:50:46 +0000596 SemaRef.Diag(IList->getLocStart(), diag::err_illegal_initializer_type)
Chris Lattnerd1625842008-11-24 06:25:27 +0000597 << DeclType;
Eli Friedmand8dc2102008-05-20 05:25:56 +0000598 hadError = true;
Douglas Gregor930d8b52009-01-30 22:09:00 +0000599 } else if (DeclType->isRecordType()) {
600 // C++ [dcl.init]p14:
601 // [...] If the class is an aggregate (8.5.1), and the initializer
602 // is a brace-enclosed list, see 8.5.1.
603 //
604 // Note: 8.5.1 is handled below; here, we diagnose the case where
605 // we have an initializer list and a destination type that is not
606 // an aggregate.
607 // FIXME: In C++0x, this is yet another form of initialization.
Chris Lattner08202542009-02-24 22:50:46 +0000608 SemaRef.Diag(IList->getLocStart(), diag::err_init_non_aggr_init_list)
Douglas Gregor930d8b52009-01-30 22:09:00 +0000609 << DeclType << IList->getSourceRange();
610 hadError = true;
611 } else if (DeclType->isReferenceType()) {
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000612 CheckReferenceType(Entity, IList, DeclType, Index,
613 StructuredList, StructuredIndex);
Steve Naroff0cca7492008-05-01 22:18:59 +0000614 } else {
615 // In C, all types are either scalars or aggregates, but
Mike Stump1eb44332009-09-09 15:08:12 +0000616 // additional handling is needed here for C++ (and possibly others?).
Steve Naroff0cca7492008-05-01 22:18:59 +0000617 assert(0 && "Unsupported initializer type");
618 }
619}
620
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000621void InitListChecker::CheckSubElementType(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000622 InitListExpr *IList,
Mike Stump1eb44332009-09-09 15:08:12 +0000623 QualType ElemType,
Douglas Gregor4c678342009-01-28 21:54:33 +0000624 unsigned &Index,
625 InitListExpr *StructuredList,
626 unsigned &StructuredIndex) {
Douglas Gregor6fbdc6b2009-01-29 00:39:20 +0000627 Expr *expr = IList->getInit(Index);
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000628 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
629 unsigned newIndex = 0;
Douglas Gregor4c678342009-01-28 21:54:33 +0000630 unsigned newStructuredIndex = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000631 InitListExpr *newStructuredList
Douglas Gregor4c678342009-01-28 21:54:33 +0000632 = getStructuredSubobjectInit(IList, Index, ElemType,
633 StructuredList, StructuredIndex,
634 SubInitList->getSourceRange());
Anders Carlsson46f46592010-01-23 19:55:29 +0000635 CheckExplicitInitList(Entity, SubInitList, ElemType, newIndex,
Douglas Gregor4c678342009-01-28 21:54:33 +0000636 newStructuredList, newStructuredIndex);
637 ++StructuredIndex;
638 ++Index;
Chris Lattner79e079d2009-02-24 23:10:27 +0000639 } else if (Expr *Str = IsStringInit(expr, ElemType, SemaRef.Context)) {
640 CheckStringInit(Str, ElemType, SemaRef);
Chris Lattnerf71ae8d2009-02-24 22:41:04 +0000641 UpdateStructuredListElement(StructuredList, StructuredIndex, Str);
Douglas Gregor4c678342009-01-28 21:54:33 +0000642 ++Index;
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000643 } else if (ElemType->isScalarType()) {
Anders Carlsson46f46592010-01-23 19:55:29 +0000644 CheckScalarType(Entity, IList, ElemType, Index,
645 StructuredList, StructuredIndex);
Douglas Gregor930d8b52009-01-30 22:09:00 +0000646 } else if (ElemType->isReferenceType()) {
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000647 CheckReferenceType(Entity, IList, ElemType, Index,
648 StructuredList, StructuredIndex);
Eli Friedmanb85f7072008-05-19 19:16:24 +0000649 } else {
Chris Lattner08202542009-02-24 22:50:46 +0000650 if (SemaRef.getLangOptions().CPlusPlus) {
Douglas Gregor930d8b52009-01-30 22:09:00 +0000651 // C++ [dcl.init.aggr]p12:
652 // All implicit type conversions (clause 4) are considered when
653 // initializing the aggregate member with an ini- tializer from
654 // an initializer-list. If the initializer can initialize a
655 // member, the member is initialized. [...]
Anders Carlssond28b4282009-08-27 17:18:13 +0000656
Anders Carlsson1b36a2f2010-01-24 00:19:41 +0000657 // FIXME: Better EqualLoc?
658 InitializationKind Kind =
659 InitializationKind::CreateCopy(expr->getLocStart(), SourceLocation());
660 InitializationSequence Seq(SemaRef, Entity, Kind, &expr, 1);
661
662 if (Seq) {
663 Sema::OwningExprResult Result =
664 Seq.Perform(SemaRef, Entity, Kind,
665 Sema::MultiExprArg(SemaRef, (void **)&expr, 1));
666 if (Result.isInvalid())
Douglas Gregor930d8b52009-01-30 22:09:00 +0000667 hadError = true;
Anders Carlsson1b36a2f2010-01-24 00:19:41 +0000668
669 UpdateStructuredListElement(StructuredList, StructuredIndex,
670 Result.takeAs<Expr>());
Douglas Gregor930d8b52009-01-30 22:09:00 +0000671 ++Index;
672 return;
673 }
674
675 // Fall through for subaggregate initialization
676 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000677 // C99 6.7.8p13:
Douglas Gregor930d8b52009-01-30 22:09:00 +0000678 //
679 // The initializer for a structure or union object that has
680 // automatic storage duration shall be either an initializer
681 // list as described below, or a single expression that has
682 // compatible structure or union type. In the latter case, the
683 // initial value of the object, including unnamed members, is
684 // that of the expression.
Eli Friedman6b5374f2009-06-13 10:38:46 +0000685 if ((ElemType->isRecordType() || ElemType->isVectorType()) &&
Eli Friedman8718a6a2009-05-29 18:22:49 +0000686 SemaRef.Context.hasSameUnqualifiedType(expr->getType(), ElemType)) {
Douglas Gregor930d8b52009-01-30 22:09:00 +0000687 UpdateStructuredListElement(StructuredList, StructuredIndex, expr);
688 ++Index;
689 return;
690 }
691
692 // Fall through for subaggregate initialization
693 }
694
695 // C++ [dcl.init.aggr]p12:
Mike Stump1eb44332009-09-09 15:08:12 +0000696 //
Douglas Gregor930d8b52009-01-30 22:09:00 +0000697 // [...] Otherwise, if the member is itself a non-empty
698 // subaggregate, brace elision is assumed and the initializer is
699 // considered for the initialization of the first member of
700 // the subaggregate.
701 if (ElemType->isAggregateType() || ElemType->isVectorType()) {
Anders Carlsson987dc6a2010-01-23 20:47:59 +0000702 CheckImplicitInitList(Entity, IList, ElemType, Index, StructuredList,
Douglas Gregor930d8b52009-01-30 22:09:00 +0000703 StructuredIndex);
704 ++StructuredIndex;
705 } else {
706 // We cannot initialize this element, so let
707 // PerformCopyInitialization produce the appropriate diagnostic.
Anders Carlssonca755fe2010-01-30 01:56:32 +0000708 SemaRef.PerformCopyInitialization(Entity, SourceLocation(),
709 SemaRef.Owned(expr));
710 IList->setInit(Index, 0);
Douglas Gregor930d8b52009-01-30 22:09:00 +0000711 hadError = true;
712 ++Index;
713 ++StructuredIndex;
714 }
715 }
Eli Friedmanb85f7072008-05-19 19:16:24 +0000716}
717
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000718void InitListChecker::CheckScalarType(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000719 InitListExpr *IList, QualType DeclType,
Douglas Gregor6fbdc6b2009-01-29 00:39:20 +0000720 unsigned &Index,
Douglas Gregor4c678342009-01-28 21:54:33 +0000721 InitListExpr *StructuredList,
722 unsigned &StructuredIndex) {
Steve Naroff0cca7492008-05-01 22:18:59 +0000723 if (Index < IList->getNumInits()) {
Douglas Gregor6fbdc6b2009-01-29 00:39:20 +0000724 Expr *expr = IList->getInit(Index);
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000725 if (isa<InitListExpr>(expr)) {
Chris Lattner08202542009-02-24 22:50:46 +0000726 SemaRef.Diag(IList->getLocStart(),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000727 diag::err_many_braces_around_scalar_init)
728 << IList->getSourceRange();
Eli Friedmanbb504d32008-05-19 20:12:18 +0000729 hadError = true;
730 ++Index;
Douglas Gregor4c678342009-01-28 21:54:33 +0000731 ++StructuredIndex;
Eli Friedmanbb504d32008-05-19 20:12:18 +0000732 return;
Douglas Gregor05c13a32009-01-22 00:58:24 +0000733 } else if (isa<DesignatedInitExpr>(expr)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000734 SemaRef.Diag(expr->getSourceRange().getBegin(),
Douglas Gregor05c13a32009-01-22 00:58:24 +0000735 diag::err_designator_for_scalar_init)
736 << DeclType << expr->getSourceRange();
737 hadError = true;
738 ++Index;
Douglas Gregor4c678342009-01-28 21:54:33 +0000739 ++StructuredIndex;
Douglas Gregor05c13a32009-01-22 00:58:24 +0000740 return;
Steve Naroff0cca7492008-05-01 22:18:59 +0000741 }
Douglas Gregor05c13a32009-01-22 00:58:24 +0000742
Anders Carlssonc07b8c02010-01-23 18:35:41 +0000743 Sema::OwningExprResult Result =
Eli Friedmana1635d92010-01-25 17:04:54 +0000744 SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(),
745 SemaRef.Owned(expr));
Anders Carlssonc07b8c02010-01-23 18:35:41 +0000746
747 Expr *ResultExpr;
748
749 if (Result.isInvalid())
Eli Friedmanbb504d32008-05-19 20:12:18 +0000750 hadError = true; // types weren't compatible.
Anders Carlssonc07b8c02010-01-23 18:35:41 +0000751 else {
752 ResultExpr = Result.takeAs<Expr>();
753
754 if (ResultExpr != expr) {
755 // The type was promoted, update initializer list.
756 IList->setInit(Index, ResultExpr);
757 }
Douglas Gregor05c13a32009-01-22 00:58:24 +0000758 }
Douglas Gregor4c678342009-01-28 21:54:33 +0000759 if (hadError)
760 ++StructuredIndex;
761 else
Anders Carlssonc07b8c02010-01-23 18:35:41 +0000762 UpdateStructuredListElement(StructuredList, StructuredIndex, ResultExpr);
Steve Naroff0cca7492008-05-01 22:18:59 +0000763 ++Index;
Eli Friedmanbb504d32008-05-19 20:12:18 +0000764 } else {
Chris Lattner08202542009-02-24 22:50:46 +0000765 SemaRef.Diag(IList->getLocStart(), diag::err_empty_scalar_initializer)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000766 << IList->getSourceRange();
Eli Friedmanbb504d32008-05-19 20:12:18 +0000767 hadError = true;
Douglas Gregor4c678342009-01-28 21:54:33 +0000768 ++Index;
769 ++StructuredIndex;
Eli Friedmanbb504d32008-05-19 20:12:18 +0000770 return;
Steve Naroff0cca7492008-05-01 22:18:59 +0000771 }
Steve Naroff0cca7492008-05-01 22:18:59 +0000772}
773
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000774void InitListChecker::CheckReferenceType(const InitializedEntity &Entity,
775 InitListExpr *IList, QualType DeclType,
Douglas Gregor930d8b52009-01-30 22:09:00 +0000776 unsigned &Index,
777 InitListExpr *StructuredList,
778 unsigned &StructuredIndex) {
779 if (Index < IList->getNumInits()) {
780 Expr *expr = IList->getInit(Index);
781 if (isa<InitListExpr>(expr)) {
Chris Lattner08202542009-02-24 22:50:46 +0000782 SemaRef.Diag(IList->getLocStart(), diag::err_init_non_aggr_init_list)
Douglas Gregor930d8b52009-01-30 22:09:00 +0000783 << DeclType << IList->getSourceRange();
784 hadError = true;
785 ++Index;
786 ++StructuredIndex;
787 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000788 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000789
Anders Carlssona6fe0bf2010-01-29 02:47:33 +0000790 Sema::OwningExprResult Result =
791 SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(),
792 SemaRef.Owned(expr));
793
794 if (Result.isInvalid())
Douglas Gregor930d8b52009-01-30 22:09:00 +0000795 hadError = true;
Anders Carlssona6fe0bf2010-01-29 02:47:33 +0000796
797 expr = Result.takeAs<Expr>();
798 IList->setInit(Index, expr);
799
Douglas Gregor930d8b52009-01-30 22:09:00 +0000800 if (hadError)
801 ++StructuredIndex;
802 else
803 UpdateStructuredListElement(StructuredList, StructuredIndex, expr);
804 ++Index;
805 } else {
Mike Stump390b4cc2009-05-16 07:39:55 +0000806 // FIXME: It would be wonderful if we could point at the actual member. In
807 // general, it would be useful to pass location information down the stack,
808 // so that we know the location (or decl) of the "current object" being
809 // initialized.
Mike Stump1eb44332009-09-09 15:08:12 +0000810 SemaRef.Diag(IList->getLocStart(),
Douglas Gregor930d8b52009-01-30 22:09:00 +0000811 diag::err_init_reference_member_uninitialized)
812 << DeclType
813 << IList->getSourceRange();
814 hadError = true;
815 ++Index;
816 ++StructuredIndex;
817 return;
818 }
819}
820
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000821void InitListChecker::CheckVectorType(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000822 InitListExpr *IList, QualType DeclType,
Douglas Gregor4c678342009-01-28 21:54:33 +0000823 unsigned &Index,
824 InitListExpr *StructuredList,
825 unsigned &StructuredIndex) {
Steve Naroff0cca7492008-05-01 22:18:59 +0000826 if (Index < IList->getNumInits()) {
John McCall183700f2009-09-21 23:43:11 +0000827 const VectorType *VT = DeclType->getAs<VectorType>();
Nate Begeman2ef13e52009-08-10 23:49:36 +0000828 unsigned maxElements = VT->getNumElements();
829 unsigned numEltsInit = 0;
Steve Naroff0cca7492008-05-01 22:18:59 +0000830 QualType elementType = VT->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +0000831
Nate Begeman2ef13e52009-08-10 23:49:36 +0000832 if (!SemaRef.getLangOptions().OpenCL) {
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000833 InitializedEntity ElementEntity =
834 InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
Anders Carlsson46f46592010-01-23 19:55:29 +0000835
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000836 for (unsigned i = 0; i < maxElements; ++i, ++numEltsInit) {
837 // Don't attempt to go past the end of the init list
838 if (Index >= IList->getNumInits())
839 break;
Anders Carlsson46f46592010-01-23 19:55:29 +0000840
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000841 ElementEntity.setElementIndex(Index);
842 CheckSubElementType(ElementEntity, IList, elementType, Index,
843 StructuredList, StructuredIndex);
844 }
Nate Begeman2ef13e52009-08-10 23:49:36 +0000845 } else {
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000846 InitializedEntity ElementEntity =
847 InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
848
Nate Begeman2ef13e52009-08-10 23:49:36 +0000849 // OpenCL initializers allows vectors to be constructed from vectors.
850 for (unsigned i = 0; i < maxElements; ++i) {
851 // Don't attempt to go past the end of the init list
852 if (Index >= IList->getNumInits())
853 break;
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000854
855 ElementEntity.setElementIndex(Index);
856
Nate Begeman2ef13e52009-08-10 23:49:36 +0000857 QualType IType = IList->getInit(Index)->getType();
858 if (!IType->isVectorType()) {
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000859 CheckSubElementType(ElementEntity, IList, elementType, Index,
Nate Begeman2ef13e52009-08-10 23:49:36 +0000860 StructuredList, StructuredIndex);
861 ++numEltsInit;
862 } else {
John McCall183700f2009-09-21 23:43:11 +0000863 const VectorType *IVT = IType->getAs<VectorType>();
Nate Begeman2ef13e52009-08-10 23:49:36 +0000864 unsigned numIElts = IVT->getNumElements();
865 QualType VecType = SemaRef.Context.getExtVectorType(elementType,
866 numIElts);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000867 CheckSubElementType(ElementEntity, IList, VecType, Index,
Nate Begeman2ef13e52009-08-10 23:49:36 +0000868 StructuredList, StructuredIndex);
869 numEltsInit += numIElts;
870 }
871 }
Steve Naroff0cca7492008-05-01 22:18:59 +0000872 }
Mike Stump1eb44332009-09-09 15:08:12 +0000873
Nate Begeman2ef13e52009-08-10 23:49:36 +0000874 // OpenCL & AltiVec require all elements to be initialized.
875 if (numEltsInit != maxElements)
876 if (SemaRef.getLangOptions().OpenCL || SemaRef.getLangOptions().AltiVec)
877 SemaRef.Diag(IList->getSourceRange().getBegin(),
878 diag::err_vector_incorrect_num_initializers)
879 << (numEltsInit < maxElements) << maxElements << numEltsInit;
Steve Naroff0cca7492008-05-01 22:18:59 +0000880 }
881}
882
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000883void InitListChecker::CheckArrayType(const InitializedEntity &Entity,
Anders Carlsson784f6992010-01-23 20:13:41 +0000884 InitListExpr *IList, QualType &DeclType,
Douglas Gregor87f55cf2009-01-22 23:26:18 +0000885 llvm::APSInt elementIndex,
Mike Stump1eb44332009-09-09 15:08:12 +0000886 bool SubobjectIsDesignatorContext,
Douglas Gregor4c678342009-01-28 21:54:33 +0000887 unsigned &Index,
888 InitListExpr *StructuredList,
889 unsigned &StructuredIndex) {
Steve Naroff0cca7492008-05-01 22:18:59 +0000890 // Check for the special-case of initializing an array with a string.
891 if (Index < IList->getNumInits()) {
Chris Lattner79e079d2009-02-24 23:10:27 +0000892 if (Expr *Str = IsStringInit(IList->getInit(Index), DeclType,
893 SemaRef.Context)) {
894 CheckStringInit(Str, DeclType, SemaRef);
Douglas Gregor4c678342009-01-28 21:54:33 +0000895 // We place the string literal directly into the resulting
896 // initializer list. This is the only place where the structure
897 // of the structured initializer list doesn't match exactly,
898 // because doing so would involve allocating one character
899 // constant for each string.
Chris Lattnerf71ae8d2009-02-24 22:41:04 +0000900 UpdateStructuredListElement(StructuredList, StructuredIndex, Str);
Chris Lattner08202542009-02-24 22:50:46 +0000901 StructuredList->resizeInits(SemaRef.Context, StructuredIndex);
Steve Naroff0cca7492008-05-01 22:18:59 +0000902 ++Index;
Steve Naroff0cca7492008-05-01 22:18:59 +0000903 return;
904 }
905 }
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000906 if (const VariableArrayType *VAT =
Chris Lattner08202542009-02-24 22:50:46 +0000907 SemaRef.Context.getAsVariableArrayType(DeclType)) {
Eli Friedman638e1442008-05-25 13:22:35 +0000908 // Check for VLAs; in standard C it would be possible to check this
909 // earlier, but I don't know where clang accepts VLAs (gcc accepts
910 // them in all sorts of strange places).
Chris Lattner08202542009-02-24 22:50:46 +0000911 SemaRef.Diag(VAT->getSizeExpr()->getLocStart(),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000912 diag::err_variable_object_no_init)
913 << VAT->getSizeExpr()->getSourceRange();
Eli Friedman638e1442008-05-25 13:22:35 +0000914 hadError = true;
Douglas Gregor4c678342009-01-28 21:54:33 +0000915 ++Index;
916 ++StructuredIndex;
Eli Friedman638e1442008-05-25 13:22:35 +0000917 return;
918 }
919
Douglas Gregor05c13a32009-01-22 00:58:24 +0000920 // We might know the maximum number of elements in advance.
Douglas Gregor4c678342009-01-28 21:54:33 +0000921 llvm::APSInt maxElements(elementIndex.getBitWidth(),
922 elementIndex.isUnsigned());
Douglas Gregor05c13a32009-01-22 00:58:24 +0000923 bool maxElementsKnown = false;
924 if (const ConstantArrayType *CAT =
Chris Lattner08202542009-02-24 22:50:46 +0000925 SemaRef.Context.getAsConstantArrayType(DeclType)) {
Douglas Gregor05c13a32009-01-22 00:58:24 +0000926 maxElements = CAT->getSize();
Douglas Gregorf6c717c2009-01-23 16:54:12 +0000927 elementIndex.extOrTrunc(maxElements.getBitWidth());
Douglas Gregore3fa2de2009-01-23 18:58:42 +0000928 elementIndex.setIsUnsigned(maxElements.isUnsigned());
Douglas Gregor05c13a32009-01-22 00:58:24 +0000929 maxElementsKnown = true;
930 }
931
Chris Lattner08202542009-02-24 22:50:46 +0000932 QualType elementType = SemaRef.Context.getAsArrayType(DeclType)
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000933 ->getElementType();
Douglas Gregor05c13a32009-01-22 00:58:24 +0000934 while (Index < IList->getNumInits()) {
935 Expr *Init = IList->getInit(Index);
936 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) {
Douglas Gregor87f55cf2009-01-22 23:26:18 +0000937 // If we're not the subobject that matches up with the '{' for
938 // the designator, we shouldn't be handling the
939 // designator. Return immediately.
940 if (!SubobjectIsDesignatorContext)
941 return;
Douglas Gregor05c13a32009-01-22 00:58:24 +0000942
Douglas Gregor87f55cf2009-01-22 23:26:18 +0000943 // Handle this designated initializer. elementIndex will be
944 // updated to be the next array element we'll initialize.
Anders Carlsson9a8a70e2010-01-23 22:49:02 +0000945 if (CheckDesignatedInitializer(Entity, IList, DIE, 0,
Douglas Gregor4c678342009-01-28 21:54:33 +0000946 DeclType, 0, &elementIndex, Index,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000947 StructuredList, StructuredIndex, true,
948 false)) {
Douglas Gregor87f55cf2009-01-22 23:26:18 +0000949 hadError = true;
950 continue;
951 }
952
Douglas Gregorf6c717c2009-01-23 16:54:12 +0000953 if (elementIndex.getBitWidth() > maxElements.getBitWidth())
954 maxElements.extend(elementIndex.getBitWidth());
955 else if (elementIndex.getBitWidth() < maxElements.getBitWidth())
956 elementIndex.extend(maxElements.getBitWidth());
Douglas Gregore3fa2de2009-01-23 18:58:42 +0000957 elementIndex.setIsUnsigned(maxElements.isUnsigned());
Douglas Gregorf6c717c2009-01-23 16:54:12 +0000958
Douglas Gregor87f55cf2009-01-22 23:26:18 +0000959 // If the array is of incomplete type, keep track of the number of
960 // elements in the initializer.
961 if (!maxElementsKnown && elementIndex > maxElements)
962 maxElements = elementIndex;
963
Douglas Gregor05c13a32009-01-22 00:58:24 +0000964 continue;
965 }
966
967 // If we know the maximum number of elements, and we've already
968 // hit it, stop consuming elements in the initializer list.
969 if (maxElementsKnown && elementIndex == maxElements)
Steve Naroff0cca7492008-05-01 22:18:59 +0000970 break;
Douglas Gregor05c13a32009-01-22 00:58:24 +0000971
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000972 InitializedEntity ElementEntity =
Anders Carlsson784f6992010-01-23 20:13:41 +0000973 InitializedEntity::InitializeElement(SemaRef.Context, StructuredIndex,
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000974 Entity);
975 // Check this element.
976 CheckSubElementType(ElementEntity, IList, elementType, Index,
977 StructuredList, StructuredIndex);
Douglas Gregor05c13a32009-01-22 00:58:24 +0000978 ++elementIndex;
979
980 // If the array is of incomplete type, keep track of the number of
981 // elements in the initializer.
982 if (!maxElementsKnown && elementIndex > maxElements)
983 maxElements = elementIndex;
Steve Naroff0cca7492008-05-01 22:18:59 +0000984 }
Eli Friedman587cbdf2009-05-29 20:17:55 +0000985 if (!hadError && DeclType->isIncompleteArrayType()) {
Steve Naroff0cca7492008-05-01 22:18:59 +0000986 // If this is an incomplete array type, the actual type needs to
Daniel Dunbar396f0bf2008-08-18 20:28:46 +0000987 // be calculated here.
Douglas Gregore3fa2de2009-01-23 18:58:42 +0000988 llvm::APSInt Zero(maxElements.getBitWidth(), maxElements.isUnsigned());
Douglas Gregor05c13a32009-01-22 00:58:24 +0000989 if (maxElements == Zero) {
Daniel Dunbar396f0bf2008-08-18 20:28:46 +0000990 // Sizing an array implicitly to zero is not allowed by ISO C,
991 // but is supported by GNU.
Chris Lattner08202542009-02-24 22:50:46 +0000992 SemaRef.Diag(IList->getLocStart(),
Daniel Dunbar396f0bf2008-08-18 20:28:46 +0000993 diag::ext_typecheck_zero_array_size);
Steve Naroff0cca7492008-05-01 22:18:59 +0000994 }
Daniel Dunbar396f0bf2008-08-18 20:28:46 +0000995
Mike Stump1eb44332009-09-09 15:08:12 +0000996 DeclType = SemaRef.Context.getConstantArrayType(elementType, maxElements,
Daniel Dunbar396f0bf2008-08-18 20:28:46 +0000997 ArrayType::Normal, 0);
Steve Naroff0cca7492008-05-01 22:18:59 +0000998 }
999}
1000
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001001void InitListChecker::CheckStructUnionTypes(const InitializedEntity &Entity,
Anders Carlsson2bbae5d2010-01-23 20:20:40 +00001002 InitListExpr *IList,
Mike Stump1eb44332009-09-09 15:08:12 +00001003 QualType DeclType,
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001004 RecordDecl::field_iterator Field,
Mike Stump1eb44332009-09-09 15:08:12 +00001005 bool SubobjectIsDesignatorContext,
Douglas Gregor4c678342009-01-28 21:54:33 +00001006 unsigned &Index,
1007 InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001008 unsigned &StructuredIndex,
1009 bool TopLevelObject) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001010 RecordDecl* structDecl = DeclType->getAs<RecordType>()->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001011
Eli Friedmanb85f7072008-05-19 19:16:24 +00001012 // If the record is invalid, some of it's members are invalid. To avoid
1013 // confusion, we forgo checking the intializer for the entire record.
1014 if (structDecl->isInvalidDecl()) {
1015 hadError = true;
1016 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001017 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001018
1019 if (DeclType->isUnionType() && IList->getNumInits() == 0) {
1020 // Value-initialize the first named member of the union.
Ted Kremenek6217b802009-07-29 21:53:49 +00001021 RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001022 for (RecordDecl::field_iterator FieldEnd = RD->field_end();
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001023 Field != FieldEnd; ++Field) {
1024 if (Field->getDeclName()) {
1025 StructuredList->setInitializedFieldInUnion(*Field);
1026 break;
1027 }
1028 }
1029 return;
1030 }
1031
Douglas Gregor05c13a32009-01-22 00:58:24 +00001032 // If structDecl is a forward declaration, this loop won't do
1033 // anything except look at designated initializers; That's okay,
1034 // because an error should get printed out elsewhere. It might be
1035 // worthwhile to skip over the rest of the initializer, though.
Ted Kremenek6217b802009-07-29 21:53:49 +00001036 RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001037 RecordDecl::field_iterator FieldEnd = RD->field_end();
Douglas Gregordfb5e592009-02-12 19:00:39 +00001038 bool InitializedSomething = false;
Douglas Gregor05c13a32009-01-22 00:58:24 +00001039 while (Index < IList->getNumInits()) {
1040 Expr *Init = IList->getInit(Index);
1041
1042 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) {
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001043 // If we're not the subobject that matches up with the '{' for
1044 // the designator, we shouldn't be handling the
1045 // designator. Return immediately.
1046 if (!SubobjectIsDesignatorContext)
1047 return;
Douglas Gregor05c13a32009-01-22 00:58:24 +00001048
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001049 // Handle this designated initializer. Field will be updated to
1050 // the next field that we'll be initializing.
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001051 if (CheckDesignatedInitializer(Entity, IList, DIE, 0,
Douglas Gregor4c678342009-01-28 21:54:33 +00001052 DeclType, &Field, 0, Index,
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001053 StructuredList, StructuredIndex,
1054 true, TopLevelObject))
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001055 hadError = true;
1056
Douglas Gregordfb5e592009-02-12 19:00:39 +00001057 InitializedSomething = true;
Douglas Gregor05c13a32009-01-22 00:58:24 +00001058 continue;
1059 }
1060
1061 if (Field == FieldEnd) {
1062 // We've run out of fields. We're done.
1063 break;
1064 }
1065
Douglas Gregordfb5e592009-02-12 19:00:39 +00001066 // We've already initialized a member of a union. We're done.
1067 if (InitializedSomething && DeclType->isUnionType())
1068 break;
1069
Douglas Gregor44b43212008-12-11 16:49:14 +00001070 // If we've hit the flexible array member at the end, we're done.
1071 if (Field->getType()->isIncompleteArrayType())
1072 break;
1073
Douglas Gregor0bb76892009-01-29 16:53:55 +00001074 if (Field->isUnnamedBitfield()) {
Douglas Gregor4c678342009-01-28 21:54:33 +00001075 // Don't initialize unnamed bitfields, e.g. "int : 20;"
Douglas Gregor05c13a32009-01-22 00:58:24 +00001076 ++Field;
Eli Friedmanb85f7072008-05-19 19:16:24 +00001077 continue;
Steve Naroff0cca7492008-05-01 22:18:59 +00001078 }
Douglas Gregor44b43212008-12-11 16:49:14 +00001079
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001080 InitializedEntity MemberEntity =
1081 InitializedEntity::InitializeMember(*Field, &Entity);
1082 CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
1083 StructuredList, StructuredIndex);
Douglas Gregordfb5e592009-02-12 19:00:39 +00001084 InitializedSomething = true;
Douglas Gregor0bb76892009-01-29 16:53:55 +00001085
1086 if (DeclType->isUnionType()) {
1087 // Initialize the first field within the union.
1088 StructuredList->setInitializedFieldInUnion(*Field);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001089 }
Douglas Gregor05c13a32009-01-22 00:58:24 +00001090
1091 ++Field;
Steve Naroff0cca7492008-05-01 22:18:59 +00001092 }
Douglas Gregor44b43212008-12-11 16:49:14 +00001093
Mike Stump1eb44332009-09-09 15:08:12 +00001094 if (Field == FieldEnd || !Field->getType()->isIncompleteArrayType() ||
Douglas Gregora6457962009-03-20 00:32:56 +00001095 Index >= IList->getNumInits())
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001096 return;
1097
1098 // Handle GNU flexible array initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00001099 if (!TopLevelObject &&
Douglas Gregora6457962009-03-20 00:32:56 +00001100 (!isa<InitListExpr>(IList->getInit(Index)) ||
1101 cast<InitListExpr>(IList->getInit(Index))->getNumInits() > 0)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001102 SemaRef.Diag(IList->getInit(Index)->getSourceRange().getBegin(),
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001103 diag::err_flexible_array_init_nonempty)
1104 << IList->getInit(Index)->getSourceRange().getBegin();
Chris Lattner08202542009-02-24 22:50:46 +00001105 SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001106 << *Field;
1107 hadError = true;
Douglas Gregora6457962009-03-20 00:32:56 +00001108 ++Index;
1109 return;
1110 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00001111 SemaRef.Diag(IList->getInit(Index)->getSourceRange().getBegin(),
Douglas Gregora6457962009-03-20 00:32:56 +00001112 diag::ext_flexible_array_init)
1113 << IList->getInit(Index)->getSourceRange().getBegin();
1114 SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
1115 << *Field;
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001116 }
1117
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001118 InitializedEntity MemberEntity =
1119 InitializedEntity::InitializeMember(*Field, &Entity);
Anders Carlsson987dc6a2010-01-23 20:47:59 +00001120
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001121 if (isa<InitListExpr>(IList->getInit(Index)))
1122 CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
1123 StructuredList, StructuredIndex);
1124 else
1125 CheckImplicitInitList(MemberEntity, IList, Field->getType(), Index,
Anders Carlsson987dc6a2010-01-23 20:47:59 +00001126 StructuredList, StructuredIndex);
Steve Naroff0cca7492008-05-01 22:18:59 +00001127}
Steve Naroff0cca7492008-05-01 22:18:59 +00001128
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001129/// \brief Expand a field designator that refers to a member of an
1130/// anonymous struct or union into a series of field designators that
1131/// refers to the field within the appropriate subobject.
1132///
1133/// Field/FieldIndex will be updated to point to the (new)
1134/// currently-designated field.
1135static void ExpandAnonymousFieldDesignator(Sema &SemaRef,
Mike Stump1eb44332009-09-09 15:08:12 +00001136 DesignatedInitExpr *DIE,
1137 unsigned DesigIdx,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001138 FieldDecl *Field,
1139 RecordDecl::field_iterator &FieldIter,
1140 unsigned &FieldIndex) {
1141 typedef DesignatedInitExpr::Designator Designator;
1142
1143 // Build the path from the current object to the member of the
1144 // anonymous struct/union (backwards).
1145 llvm::SmallVector<FieldDecl *, 4> Path;
1146 SemaRef.BuildAnonymousStructUnionMemberPath(Field, Path);
Mike Stump1eb44332009-09-09 15:08:12 +00001147
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001148 // Build the replacement designators.
1149 llvm::SmallVector<Designator, 4> Replacements;
1150 for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator
1151 FI = Path.rbegin(), FIEnd = Path.rend();
1152 FI != FIEnd; ++FI) {
1153 if (FI + 1 == FIEnd)
Mike Stump1eb44332009-09-09 15:08:12 +00001154 Replacements.push_back(Designator((IdentifierInfo *)0,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001155 DIE->getDesignator(DesigIdx)->getDotLoc(),
1156 DIE->getDesignator(DesigIdx)->getFieldLoc()));
1157 else
1158 Replacements.push_back(Designator((IdentifierInfo *)0, SourceLocation(),
1159 SourceLocation()));
1160 Replacements.back().setField(*FI);
1161 }
1162
1163 // Expand the current designator into the set of replacement
1164 // designators, so we have a full subobject path down to where the
1165 // member of the anonymous struct/union is actually stored.
Douglas Gregor319d57f2010-01-06 23:17:19 +00001166 DIE->ExpandDesignator(SemaRef.Context, DesigIdx, &Replacements[0],
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001167 &Replacements[0] + Replacements.size());
Mike Stump1eb44332009-09-09 15:08:12 +00001168
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001169 // Update FieldIter/FieldIndex;
1170 RecordDecl *Record = cast<RecordDecl>(Path.back()->getDeclContext());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001171 FieldIter = Record->field_begin();
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001172 FieldIndex = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001173 for (RecordDecl::field_iterator FEnd = Record->field_end();
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001174 FieldIter != FEnd; ++FieldIter) {
1175 if (FieldIter->isUnnamedBitfield())
1176 continue;
1177
1178 if (*FieldIter == Path.back())
1179 return;
1180
1181 ++FieldIndex;
1182 }
1183
1184 assert(false && "Unable to find anonymous struct/union field");
1185}
1186
Douglas Gregor05c13a32009-01-22 00:58:24 +00001187/// @brief Check the well-formedness of a C99 designated initializer.
1188///
1189/// Determines whether the designated initializer @p DIE, which
1190/// resides at the given @p Index within the initializer list @p
1191/// IList, is well-formed for a current object of type @p DeclType
1192/// (C99 6.7.8). The actual subobject that this designator refers to
Mike Stump1eb44332009-09-09 15:08:12 +00001193/// within the current subobject is returned in either
Douglas Gregor4c678342009-01-28 21:54:33 +00001194/// @p NextField or @p NextElementIndex (whichever is appropriate).
Douglas Gregor05c13a32009-01-22 00:58:24 +00001195///
1196/// @param IList The initializer list in which this designated
1197/// initializer occurs.
1198///
Douglas Gregor71199712009-04-15 04:56:10 +00001199/// @param DIE The designated initializer expression.
1200///
1201/// @param DesigIdx The index of the current designator.
Douglas Gregor05c13a32009-01-22 00:58:24 +00001202///
1203/// @param DeclType The type of the "current object" (C99 6.7.8p17),
1204/// into which the designation in @p DIE should refer.
1205///
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001206/// @param NextField If non-NULL and the first designator in @p DIE is
1207/// a field, this will be set to the field declaration corresponding
1208/// to the field named by the designator.
Douglas Gregor05c13a32009-01-22 00:58:24 +00001209///
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001210/// @param NextElementIndex If non-NULL and the first designator in @p
1211/// DIE is an array designator or GNU array-range designator, this
1212/// will be set to the last index initialized by this designator.
Douglas Gregor05c13a32009-01-22 00:58:24 +00001213///
1214/// @param Index Index into @p IList where the designated initializer
1215/// @p DIE occurs.
1216///
Douglas Gregor4c678342009-01-28 21:54:33 +00001217/// @param StructuredList The initializer list expression that
1218/// describes all of the subobject initializers in the order they'll
1219/// actually be initialized.
1220///
Douglas Gregor05c13a32009-01-22 00:58:24 +00001221/// @returns true if there was an error, false otherwise.
Mike Stump1eb44332009-09-09 15:08:12 +00001222bool
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001223InitListChecker::CheckDesignatedInitializer(const InitializedEntity &Entity,
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001224 InitListExpr *IList,
Mike Stump1eb44332009-09-09 15:08:12 +00001225 DesignatedInitExpr *DIE,
Douglas Gregor71199712009-04-15 04:56:10 +00001226 unsigned DesigIdx,
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001227 QualType &CurrentObjectType,
1228 RecordDecl::field_iterator *NextField,
1229 llvm::APSInt *NextElementIndex,
Douglas Gregor4c678342009-01-28 21:54:33 +00001230 unsigned &Index,
1231 InitListExpr *StructuredList,
Douglas Gregor34e79462009-01-28 23:36:17 +00001232 unsigned &StructuredIndex,
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001233 bool FinishSubobjectInit,
1234 bool TopLevelObject) {
Douglas Gregor71199712009-04-15 04:56:10 +00001235 if (DesigIdx == DIE->size()) {
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001236 // Check the actual initialization for the designated object type.
1237 bool prevHadError = hadError;
Douglas Gregor6fbdc6b2009-01-29 00:39:20 +00001238
1239 // Temporarily remove the designator expression from the
1240 // initializer list that the child calls see, so that we don't try
1241 // to re-process the designator.
1242 unsigned OldIndex = Index;
1243 IList->setInit(OldIndex, DIE->getInit());
1244
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001245 CheckSubElementType(Entity, IList, CurrentObjectType, Index,
Douglas Gregor4c678342009-01-28 21:54:33 +00001246 StructuredList, StructuredIndex);
Douglas Gregor6fbdc6b2009-01-29 00:39:20 +00001247
1248 // Restore the designated initializer expression in the syntactic
1249 // form of the initializer list.
1250 if (IList->getInit(OldIndex) != DIE->getInit())
1251 DIE->setInit(IList->getInit(OldIndex));
1252 IList->setInit(OldIndex, DIE);
1253
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001254 return hadError && !prevHadError;
Douglas Gregor05c13a32009-01-22 00:58:24 +00001255 }
1256
Douglas Gregor71199712009-04-15 04:56:10 +00001257 bool IsFirstDesignator = (DesigIdx == 0);
Mike Stump1eb44332009-09-09 15:08:12 +00001258 assert((IsFirstDesignator || StructuredList) &&
Douglas Gregor4c678342009-01-28 21:54:33 +00001259 "Need a non-designated initializer list to start from");
1260
Douglas Gregor71199712009-04-15 04:56:10 +00001261 DesignatedInitExpr::Designator *D = DIE->getDesignator(DesigIdx);
Douglas Gregor4c678342009-01-28 21:54:33 +00001262 // Determine the structural initializer list that corresponds to the
1263 // current subobject.
1264 StructuredList = IsFirstDesignator? SyntacticToSemantic[IList]
Mike Stump1eb44332009-09-09 15:08:12 +00001265 : getStructuredSubobjectInit(IList, Index, CurrentObjectType,
Douglas Gregored8a93d2009-03-01 17:12:46 +00001266 StructuredList, StructuredIndex,
Douglas Gregor4c678342009-01-28 21:54:33 +00001267 SourceRange(D->getStartLocation(),
1268 DIE->getSourceRange().getEnd()));
1269 assert(StructuredList && "Expected a structured initializer list");
1270
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001271 if (D->isFieldDesignator()) {
1272 // C99 6.7.8p7:
1273 //
1274 // If a designator has the form
1275 //
1276 // . identifier
1277 //
1278 // then the current object (defined below) shall have
1279 // structure or union type and the identifier shall be the
Mike Stump1eb44332009-09-09 15:08:12 +00001280 // name of a member of that type.
Ted Kremenek6217b802009-07-29 21:53:49 +00001281 const RecordType *RT = CurrentObjectType->getAs<RecordType>();
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001282 if (!RT) {
1283 SourceLocation Loc = D->getDotLoc();
1284 if (Loc.isInvalid())
1285 Loc = D->getFieldLoc();
Chris Lattner08202542009-02-24 22:50:46 +00001286 SemaRef.Diag(Loc, diag::err_field_designator_non_aggr)
1287 << SemaRef.getLangOptions().CPlusPlus << CurrentObjectType;
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001288 ++Index;
1289 return true;
1290 }
1291
Douglas Gregor4c678342009-01-28 21:54:33 +00001292 // Note: we perform a linear search of the fields here, despite
1293 // the fact that we have a faster lookup method, because we always
1294 // need to compute the field's index.
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001295 FieldDecl *KnownField = D->getField();
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001296 IdentifierInfo *FieldName = D->getFieldName();
Douglas Gregor4c678342009-01-28 21:54:33 +00001297 unsigned FieldIndex = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001298 RecordDecl::field_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001299 Field = RT->getDecl()->field_begin(),
1300 FieldEnd = RT->getDecl()->field_end();
Douglas Gregor4c678342009-01-28 21:54:33 +00001301 for (; Field != FieldEnd; ++Field) {
1302 if (Field->isUnnamedBitfield())
1303 continue;
1304
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001305 if (KnownField == *Field || Field->getIdentifier() == FieldName)
Douglas Gregor4c678342009-01-28 21:54:33 +00001306 break;
1307
1308 ++FieldIndex;
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001309 }
1310
Douglas Gregor4c678342009-01-28 21:54:33 +00001311 if (Field == FieldEnd) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001312 // There was no normal field in the struct with the designated
1313 // name. Perform another lookup for this name, which may find
1314 // something that we can't designate (e.g., a member function),
1315 // may find nothing, or may find a member of an anonymous
Mike Stump1eb44332009-09-09 15:08:12 +00001316 // struct/union.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001317 DeclContext::lookup_result Lookup = RT->getDecl()->lookup(FieldName);
Douglas Gregorc171e3b2010-01-01 00:03:05 +00001318 FieldDecl *ReplacementField = 0;
Douglas Gregor4c678342009-01-28 21:54:33 +00001319 if (Lookup.first == Lookup.second) {
Douglas Gregorc171e3b2010-01-01 00:03:05 +00001320 // Name lookup didn't find anything. Determine whether this
1321 // was a typo for another field name.
1322 LookupResult R(SemaRef, FieldName, D->getFieldLoc(),
1323 Sema::LookupMemberName);
1324 if (SemaRef.CorrectTypo(R, /*Scope=*/0, /*SS=*/0, RT->getDecl()) &&
1325 (ReplacementField = R.getAsSingle<FieldDecl>()) &&
1326 ReplacementField->getDeclContext()->getLookupContext()
1327 ->Equals(RT->getDecl())) {
1328 SemaRef.Diag(D->getFieldLoc(),
1329 diag::err_field_designator_unknown_suggest)
1330 << FieldName << CurrentObjectType << R.getLookupName()
1331 << CodeModificationHint::CreateReplacement(D->getFieldLoc(),
1332 R.getLookupName().getAsString());
Douglas Gregor67dd1d42010-01-07 00:17:44 +00001333 SemaRef.Diag(ReplacementField->getLocation(),
1334 diag::note_previous_decl)
1335 << ReplacementField->getDeclName();
Douglas Gregorc171e3b2010-01-01 00:03:05 +00001336 } else {
1337 SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_unknown)
1338 << FieldName << CurrentObjectType;
1339 ++Index;
1340 return true;
1341 }
1342 } else if (!KnownField) {
1343 // Determine whether we found a field at all.
1344 ReplacementField = dyn_cast<FieldDecl>(*Lookup.first);
1345 }
1346
1347 if (!ReplacementField) {
Douglas Gregor4c678342009-01-28 21:54:33 +00001348 // Name lookup found something, but it wasn't a field.
Chris Lattner08202542009-02-24 22:50:46 +00001349 SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_nonfield)
Douglas Gregor4c678342009-01-28 21:54:33 +00001350 << FieldName;
Mike Stump1eb44332009-09-09 15:08:12 +00001351 SemaRef.Diag((*Lookup.first)->getLocation(),
Douglas Gregor4c678342009-01-28 21:54:33 +00001352 diag::note_field_designator_found);
Eli Friedmanba79fc22009-04-16 17:49:48 +00001353 ++Index;
1354 return true;
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001355 }
Douglas Gregorc171e3b2010-01-01 00:03:05 +00001356
1357 if (!KnownField &&
1358 cast<RecordDecl>((ReplacementField)->getDeclContext())
1359 ->isAnonymousStructOrUnion()) {
1360 // Handle an field designator that refers to a member of an
1361 // anonymous struct or union.
1362 ExpandAnonymousFieldDesignator(SemaRef, DIE, DesigIdx,
1363 ReplacementField,
1364 Field, FieldIndex);
1365 D = DIE->getDesignator(DesigIdx);
1366 } else if (!KnownField) {
1367 // The replacement field comes from typo correction; find it
1368 // in the list of fields.
1369 FieldIndex = 0;
1370 Field = RT->getDecl()->field_begin();
1371 for (; Field != FieldEnd; ++Field) {
1372 if (Field->isUnnamedBitfield())
1373 continue;
1374
1375 if (ReplacementField == *Field ||
1376 Field->getIdentifier() == ReplacementField->getIdentifier())
1377 break;
1378
1379 ++FieldIndex;
1380 }
1381 }
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001382 } else if (!KnownField &&
1383 cast<RecordDecl>((*Field)->getDeclContext())
Douglas Gregor4c678342009-01-28 21:54:33 +00001384 ->isAnonymousStructOrUnion()) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001385 ExpandAnonymousFieldDesignator(SemaRef, DIE, DesigIdx, *Field,
1386 Field, FieldIndex);
1387 D = DIE->getDesignator(DesigIdx);
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001388 }
Douglas Gregor4c678342009-01-28 21:54:33 +00001389
1390 // All of the fields of a union are located at the same place in
1391 // the initializer list.
Douglas Gregor0bb76892009-01-29 16:53:55 +00001392 if (RT->getDecl()->isUnion()) {
Douglas Gregor4c678342009-01-28 21:54:33 +00001393 FieldIndex = 0;
Douglas Gregor0bb76892009-01-29 16:53:55 +00001394 StructuredList->setInitializedFieldInUnion(*Field);
1395 }
Douglas Gregor4c678342009-01-28 21:54:33 +00001396
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001397 // Update the designator with the field declaration.
Douglas Gregor4c678342009-01-28 21:54:33 +00001398 D->setField(*Field);
Mike Stump1eb44332009-09-09 15:08:12 +00001399
Douglas Gregor4c678342009-01-28 21:54:33 +00001400 // Make sure that our non-designated initializer list has space
1401 // for a subobject corresponding to this field.
1402 if (FieldIndex >= StructuredList->getNumInits())
Chris Lattner08202542009-02-24 22:50:46 +00001403 StructuredList->resizeInits(SemaRef.Context, FieldIndex + 1);
Douglas Gregor4c678342009-01-28 21:54:33 +00001404
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001405 // This designator names a flexible array member.
1406 if (Field->getType()->isIncompleteArrayType()) {
1407 bool Invalid = false;
Douglas Gregor71199712009-04-15 04:56:10 +00001408 if ((DesigIdx + 1) != DIE->size()) {
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001409 // We can't designate an object within the flexible array
1410 // member (because GCC doesn't allow it).
Mike Stump1eb44332009-09-09 15:08:12 +00001411 DesignatedInitExpr::Designator *NextD
Douglas Gregor71199712009-04-15 04:56:10 +00001412 = DIE->getDesignator(DesigIdx + 1);
Mike Stump1eb44332009-09-09 15:08:12 +00001413 SemaRef.Diag(NextD->getStartLocation(),
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001414 diag::err_designator_into_flexible_array_member)
Mike Stump1eb44332009-09-09 15:08:12 +00001415 << SourceRange(NextD->getStartLocation(),
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001416 DIE->getSourceRange().getEnd());
Chris Lattner08202542009-02-24 22:50:46 +00001417 SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001418 << *Field;
1419 Invalid = true;
1420 }
1421
1422 if (!hadError && !isa<InitListExpr>(DIE->getInit())) {
1423 // The initializer is not an initializer list.
Chris Lattner08202542009-02-24 22:50:46 +00001424 SemaRef.Diag(DIE->getInit()->getSourceRange().getBegin(),
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001425 diag::err_flexible_array_init_needs_braces)
1426 << DIE->getInit()->getSourceRange();
Chris Lattner08202542009-02-24 22:50:46 +00001427 SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001428 << *Field;
1429 Invalid = true;
1430 }
1431
1432 // Handle GNU flexible array initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00001433 if (!Invalid && !TopLevelObject &&
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001434 cast<InitListExpr>(DIE->getInit())->getNumInits() > 0) {
Mike Stump1eb44332009-09-09 15:08:12 +00001435 SemaRef.Diag(DIE->getSourceRange().getBegin(),
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001436 diag::err_flexible_array_init_nonempty)
1437 << DIE->getSourceRange().getBegin();
Chris Lattner08202542009-02-24 22:50:46 +00001438 SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001439 << *Field;
1440 Invalid = true;
1441 }
1442
1443 if (Invalid) {
1444 ++Index;
1445 return true;
1446 }
1447
1448 // Initialize the array.
1449 bool prevHadError = hadError;
1450 unsigned newStructuredIndex = FieldIndex;
1451 unsigned OldIndex = Index;
1452 IList->setInit(Index, DIE->getInit());
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001453
1454 InitializedEntity MemberEntity =
1455 InitializedEntity::InitializeMember(*Field, &Entity);
1456 CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001457 StructuredList, newStructuredIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001458
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001459 IList->setInit(OldIndex, DIE);
1460 if (hadError && !prevHadError) {
1461 ++Field;
1462 ++FieldIndex;
1463 if (NextField)
1464 *NextField = Field;
1465 StructuredIndex = FieldIndex;
1466 return true;
1467 }
1468 } else {
1469 // Recurse to check later designated subobjects.
1470 QualType FieldType = (*Field)->getType();
1471 unsigned newStructuredIndex = FieldIndex;
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001472
1473 InitializedEntity MemberEntity =
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001474 InitializedEntity::InitializeMember(*Field, &Entity);
1475 if (CheckDesignatedInitializer(MemberEntity, IList, DIE, DesigIdx + 1,
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001476 FieldType, 0, 0, Index,
1477 StructuredList, newStructuredIndex,
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001478 true, false))
1479 return true;
1480 }
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001481
1482 // Find the position of the next field to be initialized in this
1483 // subobject.
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001484 ++Field;
Douglas Gregor4c678342009-01-28 21:54:33 +00001485 ++FieldIndex;
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001486
1487 // If this the first designator, our caller will continue checking
1488 // the rest of this struct/class/union subobject.
1489 if (IsFirstDesignator) {
1490 if (NextField)
1491 *NextField = Field;
Douglas Gregor4c678342009-01-28 21:54:33 +00001492 StructuredIndex = FieldIndex;
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001493 return false;
1494 }
1495
Douglas Gregor34e79462009-01-28 23:36:17 +00001496 if (!FinishSubobjectInit)
1497 return false;
1498
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001499 // We've already initialized something in the union; we're done.
1500 if (RT->getDecl()->isUnion())
1501 return hadError;
1502
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001503 // Check the remaining fields within this class/struct/union subobject.
1504 bool prevHadError = hadError;
Anders Carlsson2bbae5d2010-01-23 20:20:40 +00001505
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001506 CheckStructUnionTypes(Entity, IList, CurrentObjectType, Field, false, Index,
Douglas Gregor4c678342009-01-28 21:54:33 +00001507 StructuredList, FieldIndex);
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001508 return hadError && !prevHadError;
1509 }
1510
1511 // C99 6.7.8p6:
1512 //
1513 // If a designator has the form
1514 //
1515 // [ constant-expression ]
1516 //
1517 // then the current object (defined below) shall have array
1518 // type and the expression shall be an integer constant
1519 // expression. If the array is of unknown size, any
1520 // nonnegative value is valid.
1521 //
1522 // Additionally, cope with the GNU extension that permits
1523 // designators of the form
1524 //
1525 // [ constant-expression ... constant-expression ]
Chris Lattner08202542009-02-24 22:50:46 +00001526 const ArrayType *AT = SemaRef.Context.getAsArrayType(CurrentObjectType);
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001527 if (!AT) {
Chris Lattner08202542009-02-24 22:50:46 +00001528 SemaRef.Diag(D->getLBracketLoc(), diag::err_array_designator_non_array)
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001529 << CurrentObjectType;
1530 ++Index;
1531 return true;
1532 }
1533
1534 Expr *IndexExpr = 0;
Douglas Gregor34e79462009-01-28 23:36:17 +00001535 llvm::APSInt DesignatedStartIndex, DesignatedEndIndex;
1536 if (D->isArrayDesignator()) {
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001537 IndexExpr = DIE->getArrayIndex(*D);
Chris Lattner3bf68932009-04-25 21:59:05 +00001538 DesignatedStartIndex = IndexExpr->EvaluateAsInt(SemaRef.Context);
Douglas Gregor34e79462009-01-28 23:36:17 +00001539 DesignatedEndIndex = DesignatedStartIndex;
1540 } else {
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001541 assert(D->isArrayRangeDesignator() && "Need array-range designator");
Douglas Gregor34e79462009-01-28 23:36:17 +00001542
Mike Stump1eb44332009-09-09 15:08:12 +00001543
1544 DesignatedStartIndex =
Chris Lattner3bf68932009-04-25 21:59:05 +00001545 DIE->getArrayRangeStart(*D)->EvaluateAsInt(SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +00001546 DesignatedEndIndex =
Chris Lattner3bf68932009-04-25 21:59:05 +00001547 DIE->getArrayRangeEnd(*D)->EvaluateAsInt(SemaRef.Context);
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001548 IndexExpr = DIE->getArrayRangeEnd(*D);
Douglas Gregor34e79462009-01-28 23:36:17 +00001549
Chris Lattner3bf68932009-04-25 21:59:05 +00001550 if (DesignatedStartIndex.getZExtValue() !=DesignatedEndIndex.getZExtValue())
Douglas Gregora9c87802009-01-29 19:42:23 +00001551 FullyStructuredList->sawArrayRangeDesignator();
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001552 }
1553
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001554 if (isa<ConstantArrayType>(AT)) {
1555 llvm::APSInt MaxElements(cast<ConstantArrayType>(AT)->getSize(), false);
Douglas Gregor34e79462009-01-28 23:36:17 +00001556 DesignatedStartIndex.extOrTrunc(MaxElements.getBitWidth());
1557 DesignatedStartIndex.setIsUnsigned(MaxElements.isUnsigned());
1558 DesignatedEndIndex.extOrTrunc(MaxElements.getBitWidth());
1559 DesignatedEndIndex.setIsUnsigned(MaxElements.isUnsigned());
1560 if (DesignatedEndIndex >= MaxElements) {
Chris Lattner08202542009-02-24 22:50:46 +00001561 SemaRef.Diag(IndexExpr->getSourceRange().getBegin(),
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001562 diag::err_array_designator_too_large)
Douglas Gregor34e79462009-01-28 23:36:17 +00001563 << DesignatedEndIndex.toString(10) << MaxElements.toString(10)
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001564 << IndexExpr->getSourceRange();
1565 ++Index;
1566 return true;
1567 }
Douglas Gregor34e79462009-01-28 23:36:17 +00001568 } else {
1569 // Make sure the bit-widths and signedness match.
1570 if (DesignatedStartIndex.getBitWidth() > DesignatedEndIndex.getBitWidth())
1571 DesignatedEndIndex.extend(DesignatedStartIndex.getBitWidth());
Chris Lattner3bf68932009-04-25 21:59:05 +00001572 else if (DesignatedStartIndex.getBitWidth() <
1573 DesignatedEndIndex.getBitWidth())
Douglas Gregor34e79462009-01-28 23:36:17 +00001574 DesignatedStartIndex.extend(DesignatedEndIndex.getBitWidth());
1575 DesignatedStartIndex.setIsUnsigned(true);
1576 DesignatedEndIndex.setIsUnsigned(true);
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001577 }
Mike Stump1eb44332009-09-09 15:08:12 +00001578
Douglas Gregor4c678342009-01-28 21:54:33 +00001579 // Make sure that our non-designated initializer list has space
1580 // for a subobject corresponding to this array element.
Douglas Gregor34e79462009-01-28 23:36:17 +00001581 if (DesignatedEndIndex.getZExtValue() >= StructuredList->getNumInits())
Mike Stump1eb44332009-09-09 15:08:12 +00001582 StructuredList->resizeInits(SemaRef.Context,
Douglas Gregor34e79462009-01-28 23:36:17 +00001583 DesignatedEndIndex.getZExtValue() + 1);
Douglas Gregor4c678342009-01-28 21:54:33 +00001584
Douglas Gregor34e79462009-01-28 23:36:17 +00001585 // Repeatedly perform subobject initializations in the range
1586 // [DesignatedStartIndex, DesignatedEndIndex].
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001587
Douglas Gregor34e79462009-01-28 23:36:17 +00001588 // Move to the next designator
1589 unsigned ElementIndex = DesignatedStartIndex.getZExtValue();
1590 unsigned OldIndex = Index;
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001591
1592 InitializedEntity ElementEntity =
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001593 InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001594
Douglas Gregor34e79462009-01-28 23:36:17 +00001595 while (DesignatedStartIndex <= DesignatedEndIndex) {
1596 // Recurse to check later designated subobjects.
1597 QualType ElementType = AT->getElementType();
1598 Index = OldIndex;
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001599
1600 ElementEntity.setElementIndex(ElementIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001601 if (CheckDesignatedInitializer(ElementEntity, IList, DIE, DesigIdx + 1,
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001602 ElementType, 0, 0, Index,
1603 StructuredList, ElementIndex,
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001604 (DesignatedStartIndex == DesignatedEndIndex),
1605 false))
Douglas Gregor34e79462009-01-28 23:36:17 +00001606 return true;
1607
1608 // Move to the next index in the array that we'll be initializing.
1609 ++DesignatedStartIndex;
1610 ElementIndex = DesignatedStartIndex.getZExtValue();
1611 }
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001612
1613 // If this the first designator, our caller will continue checking
1614 // the rest of this array subobject.
1615 if (IsFirstDesignator) {
1616 if (NextElementIndex)
Douglas Gregor34e79462009-01-28 23:36:17 +00001617 *NextElementIndex = DesignatedStartIndex;
Douglas Gregor4c678342009-01-28 21:54:33 +00001618 StructuredIndex = ElementIndex;
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001619 return false;
1620 }
Mike Stump1eb44332009-09-09 15:08:12 +00001621
Douglas Gregor34e79462009-01-28 23:36:17 +00001622 if (!FinishSubobjectInit)
1623 return false;
1624
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001625 // Check the remaining elements within this array subobject.
Douglas Gregor05c13a32009-01-22 00:58:24 +00001626 bool prevHadError = hadError;
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001627 CheckArrayType(Entity, IList, CurrentObjectType, DesignatedStartIndex,
Anders Carlsson784f6992010-01-23 20:13:41 +00001628 /*SubobjectIsDesignatorContext=*/false, Index,
Douglas Gregor4c678342009-01-28 21:54:33 +00001629 StructuredList, ElementIndex);
Mike Stump1eb44332009-09-09 15:08:12 +00001630 return hadError && !prevHadError;
Douglas Gregor05c13a32009-01-22 00:58:24 +00001631}
1632
Douglas Gregor4c678342009-01-28 21:54:33 +00001633// Get the structured initializer list for a subobject of type
1634// @p CurrentObjectType.
1635InitListExpr *
1636InitListChecker::getStructuredSubobjectInit(InitListExpr *IList, unsigned Index,
1637 QualType CurrentObjectType,
1638 InitListExpr *StructuredList,
1639 unsigned StructuredIndex,
1640 SourceRange InitRange) {
1641 Expr *ExistingInit = 0;
1642 if (!StructuredList)
1643 ExistingInit = SyntacticToSemantic[IList];
1644 else if (StructuredIndex < StructuredList->getNumInits())
1645 ExistingInit = StructuredList->getInit(StructuredIndex);
Mike Stump1eb44332009-09-09 15:08:12 +00001646
Douglas Gregor4c678342009-01-28 21:54:33 +00001647 if (InitListExpr *Result = dyn_cast_or_null<InitListExpr>(ExistingInit))
1648 return Result;
1649
1650 if (ExistingInit) {
1651 // We are creating an initializer list that initializes the
1652 // subobjects of the current object, but there was already an
1653 // initialization that completely initialized the current
1654 // subobject, e.g., by a compound literal:
Mike Stump1eb44332009-09-09 15:08:12 +00001655 //
Douglas Gregor4c678342009-01-28 21:54:33 +00001656 // struct X { int a, b; };
1657 // struct X xs[] = { [0] = (struct X) { 1, 2 }, [0].b = 3 };
Mike Stump1eb44332009-09-09 15:08:12 +00001658 //
Douglas Gregor4c678342009-01-28 21:54:33 +00001659 // Here, xs[0].a == 0 and xs[0].b == 3, since the second,
1660 // designated initializer re-initializes the whole
1661 // subobject [0], overwriting previous initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00001662 SemaRef.Diag(InitRange.getBegin(),
Douglas Gregored8a93d2009-03-01 17:12:46 +00001663 diag::warn_subobject_initializer_overrides)
Douglas Gregor4c678342009-01-28 21:54:33 +00001664 << InitRange;
Mike Stump1eb44332009-09-09 15:08:12 +00001665 SemaRef.Diag(ExistingInit->getSourceRange().getBegin(),
Douglas Gregor4c678342009-01-28 21:54:33 +00001666 diag::note_previous_initializer)
Douglas Gregor54f07282009-01-28 23:43:32 +00001667 << /*FIXME:has side effects=*/0
Douglas Gregor4c678342009-01-28 21:54:33 +00001668 << ExistingInit->getSourceRange();
1669 }
1670
Mike Stump1eb44332009-09-09 15:08:12 +00001671 InitListExpr *Result
1672 = new (SemaRef.Context) InitListExpr(InitRange.getBegin(), 0, 0,
Douglas Gregored8a93d2009-03-01 17:12:46 +00001673 InitRange.getEnd());
1674
Douglas Gregor4c678342009-01-28 21:54:33 +00001675 Result->setType(CurrentObjectType);
1676
Douglas Gregorfa219202009-03-20 23:58:33 +00001677 // Pre-allocate storage for the structured initializer list.
1678 unsigned NumElements = 0;
Douglas Gregor08457732009-03-21 18:13:52 +00001679 unsigned NumInits = 0;
1680 if (!StructuredList)
1681 NumInits = IList->getNumInits();
1682 else if (Index < IList->getNumInits()) {
1683 if (InitListExpr *SubList = dyn_cast<InitListExpr>(IList->getInit(Index)))
1684 NumInits = SubList->getNumInits();
1685 }
1686
Mike Stump1eb44332009-09-09 15:08:12 +00001687 if (const ArrayType *AType
Douglas Gregorfa219202009-03-20 23:58:33 +00001688 = SemaRef.Context.getAsArrayType(CurrentObjectType)) {
1689 if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType)) {
1690 NumElements = CAType->getSize().getZExtValue();
1691 // Simple heuristic so that we don't allocate a very large
1692 // initializer with many empty entries at the end.
Douglas Gregor08457732009-03-21 18:13:52 +00001693 if (NumInits && NumElements > NumInits)
Douglas Gregorfa219202009-03-20 23:58:33 +00001694 NumElements = 0;
1695 }
John McCall183700f2009-09-21 23:43:11 +00001696 } else if (const VectorType *VType = CurrentObjectType->getAs<VectorType>())
Douglas Gregorfa219202009-03-20 23:58:33 +00001697 NumElements = VType->getNumElements();
Ted Kremenek6217b802009-07-29 21:53:49 +00001698 else if (const RecordType *RType = CurrentObjectType->getAs<RecordType>()) {
Douglas Gregorfa219202009-03-20 23:58:33 +00001699 RecordDecl *RDecl = RType->getDecl();
1700 if (RDecl->isUnion())
1701 NumElements = 1;
1702 else
Mike Stump1eb44332009-09-09 15:08:12 +00001703 NumElements = std::distance(RDecl->field_begin(),
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001704 RDecl->field_end());
Douglas Gregorfa219202009-03-20 23:58:33 +00001705 }
1706
Douglas Gregor08457732009-03-21 18:13:52 +00001707 if (NumElements < NumInits)
Douglas Gregorfa219202009-03-20 23:58:33 +00001708 NumElements = IList->getNumInits();
1709
1710 Result->reserveInits(NumElements);
1711
Douglas Gregor4c678342009-01-28 21:54:33 +00001712 // Link this new initializer list into the structured initializer
1713 // lists.
1714 if (StructuredList)
1715 StructuredList->updateInit(StructuredIndex, Result);
1716 else {
1717 Result->setSyntacticForm(IList);
1718 SyntacticToSemantic[IList] = Result;
1719 }
1720
1721 return Result;
1722}
1723
1724/// Update the initializer at index @p StructuredIndex within the
1725/// structured initializer list to the value @p expr.
1726void InitListChecker::UpdateStructuredListElement(InitListExpr *StructuredList,
1727 unsigned &StructuredIndex,
1728 Expr *expr) {
1729 // No structured initializer list to update
1730 if (!StructuredList)
1731 return;
1732
1733 if (Expr *PrevInit = StructuredList->updateInit(StructuredIndex, expr)) {
1734 // This initializer overwrites a previous initializer. Warn.
Mike Stump1eb44332009-09-09 15:08:12 +00001735 SemaRef.Diag(expr->getSourceRange().getBegin(),
Douglas Gregor4c678342009-01-28 21:54:33 +00001736 diag::warn_initializer_overrides)
1737 << expr->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001738 SemaRef.Diag(PrevInit->getSourceRange().getBegin(),
Douglas Gregor4c678342009-01-28 21:54:33 +00001739 diag::note_previous_initializer)
Douglas Gregor54f07282009-01-28 23:43:32 +00001740 << /*FIXME:has side effects=*/0
Douglas Gregor4c678342009-01-28 21:54:33 +00001741 << PrevInit->getSourceRange();
1742 }
Mike Stump1eb44332009-09-09 15:08:12 +00001743
Douglas Gregor4c678342009-01-28 21:54:33 +00001744 ++StructuredIndex;
1745}
1746
Douglas Gregor05c13a32009-01-22 00:58:24 +00001747/// Check that the given Index expression is a valid array designator
1748/// value. This is essentailly just a wrapper around
Chris Lattner3bf68932009-04-25 21:59:05 +00001749/// VerifyIntegerConstantExpression that also checks for negative values
Douglas Gregor05c13a32009-01-22 00:58:24 +00001750/// and produces a reasonable diagnostic if there is a
1751/// failure. Returns true if there was an error, false otherwise. If
1752/// everything went okay, Value will receive the value of the constant
1753/// expression.
Mike Stump1eb44332009-09-09 15:08:12 +00001754static bool
Chris Lattner3bf68932009-04-25 21:59:05 +00001755CheckArrayDesignatorExpr(Sema &S, Expr *Index, llvm::APSInt &Value) {
Douglas Gregor05c13a32009-01-22 00:58:24 +00001756 SourceLocation Loc = Index->getSourceRange().getBegin();
1757
1758 // Make sure this is an integer constant expression.
Chris Lattner3bf68932009-04-25 21:59:05 +00001759 if (S.VerifyIntegerConstantExpression(Index, &Value))
1760 return true;
Douglas Gregor05c13a32009-01-22 00:58:24 +00001761
Chris Lattner3bf68932009-04-25 21:59:05 +00001762 if (Value.isSigned() && Value.isNegative())
1763 return S.Diag(Loc, diag::err_array_designator_negative)
Douglas Gregor05c13a32009-01-22 00:58:24 +00001764 << Value.toString(10) << Index->getSourceRange();
1765
Douglas Gregor53d3d8e2009-01-23 21:04:18 +00001766 Value.setIsUnsigned(true);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001767 return false;
1768}
1769
1770Sema::OwningExprResult Sema::ActOnDesignatedInitializer(Designation &Desig,
1771 SourceLocation Loc,
Douglas Gregoreeae8f02009-03-28 00:41:23 +00001772 bool GNUSyntax,
Douglas Gregor05c13a32009-01-22 00:58:24 +00001773 OwningExprResult Init) {
1774 typedef DesignatedInitExpr::Designator ASTDesignator;
1775
1776 bool Invalid = false;
1777 llvm::SmallVector<ASTDesignator, 32> Designators;
1778 llvm::SmallVector<Expr *, 32> InitExpressions;
1779
1780 // Build designators and check array designator expressions.
1781 for (unsigned Idx = 0; Idx < Desig.getNumDesignators(); ++Idx) {
1782 const Designator &D = Desig.getDesignator(Idx);
1783 switch (D.getKind()) {
1784 case Designator::FieldDesignator:
Mike Stump1eb44332009-09-09 15:08:12 +00001785 Designators.push_back(ASTDesignator(D.getField(), D.getDotLoc(),
Douglas Gregor05c13a32009-01-22 00:58:24 +00001786 D.getFieldLoc()));
1787 break;
1788
1789 case Designator::ArrayDesignator: {
1790 Expr *Index = static_cast<Expr *>(D.getArrayIndex());
1791 llvm::APSInt IndexValue;
Douglas Gregor9ea62762009-05-21 23:17:49 +00001792 if (!Index->isTypeDependent() &&
1793 !Index->isValueDependent() &&
1794 CheckArrayDesignatorExpr(*this, Index, IndexValue))
Douglas Gregor05c13a32009-01-22 00:58:24 +00001795 Invalid = true;
1796 else {
1797 Designators.push_back(ASTDesignator(InitExpressions.size(),
Mike Stump1eb44332009-09-09 15:08:12 +00001798 D.getLBracketLoc(),
Douglas Gregor05c13a32009-01-22 00:58:24 +00001799 D.getRBracketLoc()));
1800 InitExpressions.push_back(Index);
1801 }
1802 break;
1803 }
1804
1805 case Designator::ArrayRangeDesignator: {
1806 Expr *StartIndex = static_cast<Expr *>(D.getArrayRangeStart());
1807 Expr *EndIndex = static_cast<Expr *>(D.getArrayRangeEnd());
1808 llvm::APSInt StartValue;
1809 llvm::APSInt EndValue;
Douglas Gregor9ea62762009-05-21 23:17:49 +00001810 bool StartDependent = StartIndex->isTypeDependent() ||
1811 StartIndex->isValueDependent();
1812 bool EndDependent = EndIndex->isTypeDependent() ||
1813 EndIndex->isValueDependent();
1814 if ((!StartDependent &&
1815 CheckArrayDesignatorExpr(*this, StartIndex, StartValue)) ||
1816 (!EndDependent &&
1817 CheckArrayDesignatorExpr(*this, EndIndex, EndValue)))
Douglas Gregor05c13a32009-01-22 00:58:24 +00001818 Invalid = true;
Douglas Gregord6f584f2009-01-23 22:22:29 +00001819 else {
1820 // Make sure we're comparing values with the same bit width.
Douglas Gregor9ea62762009-05-21 23:17:49 +00001821 if (StartDependent || EndDependent) {
1822 // Nothing to compute.
1823 } else if (StartValue.getBitWidth() > EndValue.getBitWidth())
Douglas Gregord6f584f2009-01-23 22:22:29 +00001824 EndValue.extend(StartValue.getBitWidth());
1825 else if (StartValue.getBitWidth() < EndValue.getBitWidth())
1826 StartValue.extend(EndValue.getBitWidth());
1827
Douglas Gregorc4bb7bf2009-05-21 23:30:39 +00001828 if (!StartDependent && !EndDependent && EndValue < StartValue) {
Douglas Gregord6f584f2009-01-23 22:22:29 +00001829 Diag(D.getEllipsisLoc(), diag::err_array_designator_empty_range)
Mike Stump1eb44332009-09-09 15:08:12 +00001830 << StartValue.toString(10) << EndValue.toString(10)
Douglas Gregord6f584f2009-01-23 22:22:29 +00001831 << StartIndex->getSourceRange() << EndIndex->getSourceRange();
1832 Invalid = true;
1833 } else {
1834 Designators.push_back(ASTDesignator(InitExpressions.size(),
Mike Stump1eb44332009-09-09 15:08:12 +00001835 D.getLBracketLoc(),
Douglas Gregord6f584f2009-01-23 22:22:29 +00001836 D.getEllipsisLoc(),
1837 D.getRBracketLoc()));
1838 InitExpressions.push_back(StartIndex);
1839 InitExpressions.push_back(EndIndex);
1840 }
Douglas Gregor05c13a32009-01-22 00:58:24 +00001841 }
1842 break;
1843 }
1844 }
1845 }
1846
1847 if (Invalid || Init.isInvalid())
1848 return ExprError();
1849
1850 // Clear out the expressions within the designation.
1851 Desig.ClearExprs(*this);
1852
1853 DesignatedInitExpr *DIE
Jay Foadbeaaccd2009-05-21 09:52:38 +00001854 = DesignatedInitExpr::Create(Context,
1855 Designators.data(), Designators.size(),
1856 InitExpressions.data(), InitExpressions.size(),
Anders Carlssone9146f22009-05-01 19:49:17 +00001857 Loc, GNUSyntax, Init.takeAs<Expr>());
Douglas Gregor05c13a32009-01-22 00:58:24 +00001858 return Owned(DIE);
1859}
Douglas Gregorc34ee5e2009-01-29 00:45:39 +00001860
Douglas Gregorcb57fb92009-12-16 06:35:08 +00001861bool Sema::CheckInitList(const InitializedEntity &Entity,
1862 InitListExpr *&InitList, QualType &DeclType) {
1863 InitListChecker CheckInitList(*this, Entity, InitList, DeclType);
Douglas Gregorc34ee5e2009-01-29 00:45:39 +00001864 if (!CheckInitList.HadError())
1865 InitList = CheckInitList.getFullyStructuredList();
1866
1867 return CheckInitList.HadError();
1868}
Douglas Gregor87fd7032009-02-02 17:43:21 +00001869
Douglas Gregor20093b42009-12-09 23:02:17 +00001870//===----------------------------------------------------------------------===//
1871// Initialization entity
1872//===----------------------------------------------------------------------===//
1873
Douglas Gregorcb57fb92009-12-16 06:35:08 +00001874InitializedEntity::InitializedEntity(ASTContext &Context, unsigned Index,
1875 const InitializedEntity &Parent)
Anders Carlssond3d824d2010-01-23 04:34:47 +00001876 : Parent(&Parent), Index(Index)
Douglas Gregorcb57fb92009-12-16 06:35:08 +00001877{
Anders Carlssond3d824d2010-01-23 04:34:47 +00001878 if (const ArrayType *AT = Context.getAsArrayType(Parent.getType())) {
1879 Kind = EK_ArrayElement;
Douglas Gregord6542d82009-12-22 15:35:07 +00001880 Type = AT->getElementType();
Anders Carlssond3d824d2010-01-23 04:34:47 +00001881 } else {
1882 Kind = EK_VectorElement;
Douglas Gregord6542d82009-12-22 15:35:07 +00001883 Type = Parent.getType()->getAs<VectorType>()->getElementType();
Anders Carlssond3d824d2010-01-23 04:34:47 +00001884 }
Douglas Gregor20093b42009-12-09 23:02:17 +00001885}
1886
1887InitializedEntity InitializedEntity::InitializeBase(ASTContext &Context,
1888 CXXBaseSpecifier *Base)
1889{
1890 InitializedEntity Result;
1891 Result.Kind = EK_Base;
1892 Result.Base = Base;
Douglas Gregord6542d82009-12-22 15:35:07 +00001893 Result.Type = Base->getType();
Douglas Gregor20093b42009-12-09 23:02:17 +00001894 return Result;
1895}
1896
Douglas Gregor99a2e602009-12-16 01:38:02 +00001897DeclarationName InitializedEntity::getName() const {
1898 switch (getKind()) {
Douglas Gregor99a2e602009-12-16 01:38:02 +00001899 case EK_Parameter:
Douglas Gregora188ff22009-12-22 16:09:06 +00001900 if (!VariableOrMember)
1901 return DeclarationName();
1902 // Fall through
1903
1904 case EK_Variable:
Douglas Gregor99a2e602009-12-16 01:38:02 +00001905 case EK_Member:
1906 return VariableOrMember->getDeclName();
1907
1908 case EK_Result:
1909 case EK_Exception:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00001910 case EK_New:
Douglas Gregor99a2e602009-12-16 01:38:02 +00001911 case EK_Temporary:
1912 case EK_Base:
Anders Carlssond3d824d2010-01-23 04:34:47 +00001913 case EK_ArrayElement:
1914 case EK_VectorElement:
Douglas Gregor99a2e602009-12-16 01:38:02 +00001915 return DeclarationName();
1916 }
1917
1918 // Silence GCC warning
1919 return DeclarationName();
1920}
1921
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00001922DeclaratorDecl *InitializedEntity::getDecl() const {
1923 switch (getKind()) {
1924 case EK_Variable:
1925 case EK_Parameter:
1926 case EK_Member:
1927 return VariableOrMember;
1928
1929 case EK_Result:
1930 case EK_Exception:
1931 case EK_New:
1932 case EK_Temporary:
1933 case EK_Base:
Anders Carlssond3d824d2010-01-23 04:34:47 +00001934 case EK_ArrayElement:
1935 case EK_VectorElement:
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00001936 return 0;
1937 }
1938
1939 // Silence GCC warning
1940 return 0;
1941}
1942
Douglas Gregor20093b42009-12-09 23:02:17 +00001943//===----------------------------------------------------------------------===//
1944// Initialization sequence
1945//===----------------------------------------------------------------------===//
1946
1947void InitializationSequence::Step::Destroy() {
1948 switch (Kind) {
1949 case SK_ResolveAddressOfOverloadedFunction:
1950 case SK_CastDerivedToBaseRValue:
1951 case SK_CastDerivedToBaseLValue:
1952 case SK_BindReference:
1953 case SK_BindReferenceToTemporary:
1954 case SK_UserConversion:
1955 case SK_QualificationConversionRValue:
1956 case SK_QualificationConversionLValue:
Douglas Gregord87b61f2009-12-10 17:56:55 +00001957 case SK_ListInitialization:
Douglas Gregor51c56d62009-12-14 20:49:26 +00001958 case SK_ConstructorInitialization:
Douglas Gregor71d17402009-12-15 00:01:57 +00001959 case SK_ZeroInitialization:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00001960 case SK_CAssignment:
Eli Friedmancfdc81a2009-12-19 08:11:05 +00001961 case SK_StringInit:
Douglas Gregor20093b42009-12-09 23:02:17 +00001962 break;
1963
1964 case SK_ConversionSequence:
1965 delete ICS;
1966 }
1967}
1968
1969void InitializationSequence::AddAddressOverloadResolutionStep(
1970 FunctionDecl *Function) {
1971 Step S;
1972 S.Kind = SK_ResolveAddressOfOverloadedFunction;
1973 S.Type = Function->getType();
John McCallb13b7372010-02-01 03:16:54 +00001974 // Access is currently ignored for these.
1975 S.Function = DeclAccessPair::make(Function, AccessSpecifier(0));
Douglas Gregor20093b42009-12-09 23:02:17 +00001976 Steps.push_back(S);
1977}
1978
1979void InitializationSequence::AddDerivedToBaseCastStep(QualType BaseType,
1980 bool IsLValue) {
1981 Step S;
1982 S.Kind = IsLValue? SK_CastDerivedToBaseLValue : SK_CastDerivedToBaseRValue;
1983 S.Type = BaseType;
1984 Steps.push_back(S);
1985}
1986
1987void InitializationSequence::AddReferenceBindingStep(QualType T,
1988 bool BindingTemporary) {
1989 Step S;
1990 S.Kind = BindingTemporary? SK_BindReferenceToTemporary : SK_BindReference;
1991 S.Type = T;
1992 Steps.push_back(S);
1993}
1994
Eli Friedman03981012009-12-11 02:42:07 +00001995void InitializationSequence::AddUserConversionStep(FunctionDecl *Function,
John McCallb13b7372010-02-01 03:16:54 +00001996 AccessSpecifier Access,
Eli Friedman03981012009-12-11 02:42:07 +00001997 QualType T) {
Douglas Gregor20093b42009-12-09 23:02:17 +00001998 Step S;
1999 S.Kind = SK_UserConversion;
Eli Friedman03981012009-12-11 02:42:07 +00002000 S.Type = T;
John McCallb13b7372010-02-01 03:16:54 +00002001 S.Function = DeclAccessPair::make(Function, Access);
Douglas Gregor20093b42009-12-09 23:02:17 +00002002 Steps.push_back(S);
2003}
2004
2005void InitializationSequence::AddQualificationConversionStep(QualType Ty,
2006 bool IsLValue) {
2007 Step S;
2008 S.Kind = IsLValue? SK_QualificationConversionLValue
2009 : SK_QualificationConversionRValue;
2010 S.Type = Ty;
2011 Steps.push_back(S);
2012}
2013
2014void InitializationSequence::AddConversionSequenceStep(
2015 const ImplicitConversionSequence &ICS,
2016 QualType T) {
2017 Step S;
2018 S.Kind = SK_ConversionSequence;
2019 S.Type = T;
2020 S.ICS = new ImplicitConversionSequence(ICS);
2021 Steps.push_back(S);
2022}
2023
Douglas Gregord87b61f2009-12-10 17:56:55 +00002024void InitializationSequence::AddListInitializationStep(QualType T) {
2025 Step S;
2026 S.Kind = SK_ListInitialization;
2027 S.Type = T;
2028 Steps.push_back(S);
2029}
2030
Douglas Gregor51c56d62009-12-14 20:49:26 +00002031void
2032InitializationSequence::AddConstructorInitializationStep(
2033 CXXConstructorDecl *Constructor,
John McCallb13b7372010-02-01 03:16:54 +00002034 AccessSpecifier Access,
Douglas Gregor51c56d62009-12-14 20:49:26 +00002035 QualType T) {
2036 Step S;
2037 S.Kind = SK_ConstructorInitialization;
2038 S.Type = T;
John McCallb13b7372010-02-01 03:16:54 +00002039 S.Function = DeclAccessPair::make(Constructor, Access);
Douglas Gregor51c56d62009-12-14 20:49:26 +00002040 Steps.push_back(S);
2041}
2042
Douglas Gregor71d17402009-12-15 00:01:57 +00002043void InitializationSequence::AddZeroInitializationStep(QualType T) {
2044 Step S;
2045 S.Kind = SK_ZeroInitialization;
2046 S.Type = T;
2047 Steps.push_back(S);
2048}
2049
Douglas Gregor18ef5e22009-12-18 05:02:21 +00002050void InitializationSequence::AddCAssignmentStep(QualType T) {
2051 Step S;
2052 S.Kind = SK_CAssignment;
2053 S.Type = T;
2054 Steps.push_back(S);
2055}
2056
Eli Friedmancfdc81a2009-12-19 08:11:05 +00002057void InitializationSequence::AddStringInitStep(QualType T) {
2058 Step S;
2059 S.Kind = SK_StringInit;
2060 S.Type = T;
2061 Steps.push_back(S);
2062}
2063
Douglas Gregor20093b42009-12-09 23:02:17 +00002064void InitializationSequence::SetOverloadFailure(FailureKind Failure,
2065 OverloadingResult Result) {
2066 SequenceKind = FailedSequence;
2067 this->Failure = Failure;
2068 this->FailedOverloadResult = Result;
2069}
2070
2071//===----------------------------------------------------------------------===//
2072// Attempt initialization
2073//===----------------------------------------------------------------------===//
2074
2075/// \brief Attempt list initialization (C++0x [dcl.init.list])
Douglas Gregord87b61f2009-12-10 17:56:55 +00002076static void TryListInitialization(Sema &S,
Douglas Gregor20093b42009-12-09 23:02:17 +00002077 const InitializedEntity &Entity,
2078 const InitializationKind &Kind,
2079 InitListExpr *InitList,
2080 InitializationSequence &Sequence) {
Douglas Gregord87b61f2009-12-10 17:56:55 +00002081 // FIXME: We only perform rudimentary checking of list
2082 // initializations at this point, then assume that any list
2083 // initialization of an array, aggregate, or scalar will be
2084 // well-formed. We we actually "perform" list initialization, we'll
2085 // do all of the necessary checking. C++0x initializer lists will
2086 // force us to perform more checking here.
2087 Sequence.setSequenceKind(InitializationSequence::ListInitialization);
2088
Douglas Gregord6542d82009-12-22 15:35:07 +00002089 QualType DestType = Entity.getType();
Douglas Gregord87b61f2009-12-10 17:56:55 +00002090
2091 // C++ [dcl.init]p13:
2092 // If T is a scalar type, then a declaration of the form
2093 //
2094 // T x = { a };
2095 //
2096 // is equivalent to
2097 //
2098 // T x = a;
2099 if (DestType->isScalarType()) {
2100 if (InitList->getNumInits() > 1 && S.getLangOptions().CPlusPlus) {
2101 Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForScalar);
2102 return;
2103 }
2104
2105 // Assume scalar initialization from a single value works.
2106 } else if (DestType->isAggregateType()) {
2107 // Assume aggregate initialization works.
2108 } else if (DestType->isVectorType()) {
2109 // Assume vector initialization works.
2110 } else if (DestType->isReferenceType()) {
2111 // FIXME: C++0x defines behavior for this.
2112 Sequence.SetFailed(InitializationSequence::FK_ReferenceBindingToInitList);
2113 return;
2114 } else if (DestType->isRecordType()) {
2115 // FIXME: C++0x defines behavior for this
2116 Sequence.SetFailed(InitializationSequence::FK_InitListBadDestinationType);
2117 }
2118
2119 // Add a general "list initialization" step.
2120 Sequence.AddListInitializationStep(DestType);
Douglas Gregor20093b42009-12-09 23:02:17 +00002121}
2122
2123/// \brief Try a reference initialization that involves calling a conversion
2124/// function.
2125///
2126/// FIXME: look intos DRs 656, 896
2127static OverloadingResult TryRefInitWithConversionFunction(Sema &S,
2128 const InitializedEntity &Entity,
2129 const InitializationKind &Kind,
2130 Expr *Initializer,
2131 bool AllowRValues,
2132 InitializationSequence &Sequence) {
Douglas Gregord6542d82009-12-22 15:35:07 +00002133 QualType DestType = Entity.getType();
Douglas Gregor20093b42009-12-09 23:02:17 +00002134 QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
2135 QualType T1 = cv1T1.getUnqualifiedType();
2136 QualType cv2T2 = Initializer->getType();
2137 QualType T2 = cv2T2.getUnqualifiedType();
2138
2139 bool DerivedToBase;
2140 assert(!S.CompareReferenceRelationship(Initializer->getLocStart(),
2141 T1, T2, DerivedToBase) &&
2142 "Must have incompatible references when binding via conversion");
Chandler Carruth60cfcec2009-12-13 01:37:04 +00002143 (void)DerivedToBase;
Douglas Gregor20093b42009-12-09 23:02:17 +00002144
2145 // Build the candidate set directly in the initialization sequence
2146 // structure, so that it will persist if we fail.
2147 OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
2148 CandidateSet.clear();
2149
2150 // Determine whether we are allowed to call explicit constructors or
2151 // explicit conversion operators.
2152 bool AllowExplicit = Kind.getKind() == InitializationKind::IK_Direct;
2153
2154 const RecordType *T1RecordType = 0;
2155 if (AllowRValues && (T1RecordType = T1->getAs<RecordType>())) {
2156 // The type we're converting to is a class type. Enumerate its constructors
2157 // to see if there is a suitable conversion.
2158 CXXRecordDecl *T1RecordDecl = cast<CXXRecordDecl>(T1RecordType->getDecl());
2159
2160 DeclarationName ConstructorName
2161 = S.Context.DeclarationNames.getCXXConstructorName(
2162 S.Context.getCanonicalType(T1).getUnqualifiedType());
2163 DeclContext::lookup_iterator Con, ConEnd;
2164 for (llvm::tie(Con, ConEnd) = T1RecordDecl->lookup(ConstructorName);
2165 Con != ConEnd; ++Con) {
2166 // Find the constructor (which may be a template).
2167 CXXConstructorDecl *Constructor = 0;
2168 FunctionTemplateDecl *ConstructorTmpl
2169 = dyn_cast<FunctionTemplateDecl>(*Con);
2170 if (ConstructorTmpl)
2171 Constructor = cast<CXXConstructorDecl>(
2172 ConstructorTmpl->getTemplatedDecl());
2173 else
2174 Constructor = cast<CXXConstructorDecl>(*Con);
2175
2176 if (!Constructor->isInvalidDecl() &&
2177 Constructor->isConvertingConstructor(AllowExplicit)) {
2178 if (ConstructorTmpl)
John McCall86820f52010-01-26 01:37:31 +00002179 S.AddTemplateOverloadCandidate(ConstructorTmpl,
2180 ConstructorTmpl->getAccess(),
2181 /*ExplicitArgs*/ 0,
Douglas Gregor20093b42009-12-09 23:02:17 +00002182 &Initializer, 1, CandidateSet);
2183 else
John McCall86820f52010-01-26 01:37:31 +00002184 S.AddOverloadCandidate(Constructor, Constructor->getAccess(),
2185 &Initializer, 1, CandidateSet);
Douglas Gregor20093b42009-12-09 23:02:17 +00002186 }
2187 }
2188 }
2189
2190 if (const RecordType *T2RecordType = T2->getAs<RecordType>()) {
2191 // The type we're converting from is a class type, enumerate its conversion
2192 // functions.
2193 CXXRecordDecl *T2RecordDecl = cast<CXXRecordDecl>(T2RecordType->getDecl());
2194
2195 // Determine the type we are converting to. If we are allowed to
2196 // convert to an rvalue, take the type that the destination type
2197 // refers to.
2198 QualType ToType = AllowRValues? cv1T1 : DestType;
2199
John McCalleec51cf2010-01-20 00:46:10 +00002200 const UnresolvedSetImpl *Conversions
Douglas Gregor20093b42009-12-09 23:02:17 +00002201 = T2RecordDecl->getVisibleConversionFunctions();
John McCalleec51cf2010-01-20 00:46:10 +00002202 for (UnresolvedSetImpl::const_iterator I = Conversions->begin(),
2203 E = Conversions->end(); I != E; ++I) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002204 NamedDecl *D = *I;
2205 CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
2206 if (isa<UsingShadowDecl>(D))
2207 D = cast<UsingShadowDecl>(D)->getTargetDecl();
2208
2209 FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D);
2210 CXXConversionDecl *Conv;
2211 if (ConvTemplate)
2212 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
2213 else
2214 Conv = cast<CXXConversionDecl>(*I);
2215
2216 // If the conversion function doesn't return a reference type,
2217 // it can't be considered for this conversion unless we're allowed to
2218 // consider rvalues.
2219 // FIXME: Do we need to make sure that we only consider conversion
2220 // candidates with reference-compatible results? That might be needed to
2221 // break recursion.
2222 if ((AllowExplicit || !Conv->isExplicit()) &&
2223 (AllowRValues || Conv->getConversionType()->isLValueReferenceType())){
2224 if (ConvTemplate)
John McCall86820f52010-01-26 01:37:31 +00002225 S.AddTemplateConversionCandidate(ConvTemplate, I.getAccess(),
2226 ActingDC, Initializer,
Douglas Gregor20093b42009-12-09 23:02:17 +00002227 ToType, CandidateSet);
2228 else
John McCall86820f52010-01-26 01:37:31 +00002229 S.AddConversionCandidate(Conv, I.getAccess(), ActingDC,
2230 Initializer, cv1T1, CandidateSet);
Douglas Gregor20093b42009-12-09 23:02:17 +00002231 }
2232 }
2233 }
2234
2235 SourceLocation DeclLoc = Initializer->getLocStart();
2236
2237 // Perform overload resolution. If it fails, return the failed result.
2238 OverloadCandidateSet::iterator Best;
2239 if (OverloadingResult Result
2240 = S.BestViableFunction(CandidateSet, DeclLoc, Best))
2241 return Result;
Eli Friedman03981012009-12-11 02:42:07 +00002242
Douglas Gregor20093b42009-12-09 23:02:17 +00002243 FunctionDecl *Function = Best->Function;
Eli Friedman03981012009-12-11 02:42:07 +00002244
2245 // Compute the returned type of the conversion.
Douglas Gregor20093b42009-12-09 23:02:17 +00002246 if (isa<CXXConversionDecl>(Function))
2247 T2 = Function->getResultType();
2248 else
2249 T2 = cv1T1;
Eli Friedman03981012009-12-11 02:42:07 +00002250
2251 // Add the user-defined conversion step.
John McCallb13b7372010-02-01 03:16:54 +00002252 Sequence.AddUserConversionStep(Function, Best->getAccess(),
2253 T2.getNonReferenceType());
Eli Friedman03981012009-12-11 02:42:07 +00002254
2255 // Determine whether we need to perform derived-to-base or
2256 // cv-qualification adjustments.
Douglas Gregor20093b42009-12-09 23:02:17 +00002257 bool NewDerivedToBase = false;
2258 Sema::ReferenceCompareResult NewRefRelationship
2259 = S.CompareReferenceRelationship(DeclLoc, T1, T2.getNonReferenceType(),
2260 NewDerivedToBase);
2261 assert(NewRefRelationship != Sema::Ref_Incompatible &&
2262 "Overload resolution picked a bad conversion function");
2263 (void)NewRefRelationship;
2264 if (NewDerivedToBase)
2265 Sequence.AddDerivedToBaseCastStep(
2266 S.Context.getQualifiedType(T1,
2267 T2.getNonReferenceType().getQualifiers()),
2268 /*isLValue=*/true);
2269
2270 if (cv1T1.getQualifiers() != T2.getNonReferenceType().getQualifiers())
2271 Sequence.AddQualificationConversionStep(cv1T1, T2->isReferenceType());
2272
2273 Sequence.AddReferenceBindingStep(cv1T1, !T2->isReferenceType());
2274 return OR_Success;
2275}
2276
2277/// \brief Attempt reference initialization (C++0x [dcl.init.list])
2278static void TryReferenceInitialization(Sema &S,
2279 const InitializedEntity &Entity,
2280 const InitializationKind &Kind,
2281 Expr *Initializer,
2282 InitializationSequence &Sequence) {
2283 Sequence.setSequenceKind(InitializationSequence::ReferenceBinding);
2284
Douglas Gregord6542d82009-12-22 15:35:07 +00002285 QualType DestType = Entity.getType();
Douglas Gregor20093b42009-12-09 23:02:17 +00002286 QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
Chandler Carruth5535c382010-01-12 20:32:25 +00002287 Qualifiers T1Quals;
2288 QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals);
Douglas Gregor20093b42009-12-09 23:02:17 +00002289 QualType cv2T2 = Initializer->getType();
Chandler Carruth5535c382010-01-12 20:32:25 +00002290 Qualifiers T2Quals;
2291 QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals);
Douglas Gregor20093b42009-12-09 23:02:17 +00002292 SourceLocation DeclLoc = Initializer->getLocStart();
2293
2294 // If the initializer is the address of an overloaded function, try
2295 // to resolve the overloaded function. If all goes well, T2 is the
2296 // type of the resulting function.
2297 if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy) {
2298 FunctionDecl *Fn = S.ResolveAddressOfOverloadedFunction(Initializer,
2299 T1,
2300 false);
2301 if (!Fn) {
2302 Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
2303 return;
2304 }
2305
2306 Sequence.AddAddressOverloadResolutionStep(Fn);
2307 cv2T2 = Fn->getType();
2308 T2 = cv2T2.getUnqualifiedType();
2309 }
2310
2311 // FIXME: Rvalue references
2312 bool ForceRValue = false;
2313
2314 // Compute some basic properties of the types and the initializer.
2315 bool isLValueRef = DestType->isLValueReferenceType();
2316 bool isRValueRef = !isLValueRef;
2317 bool DerivedToBase = false;
2318 Expr::isLvalueResult InitLvalue = ForceRValue ? Expr::LV_InvalidExpression :
2319 Initializer->isLvalue(S.Context);
2320 Sema::ReferenceCompareResult RefRelationship
2321 = S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, DerivedToBase);
2322
2323 // C++0x [dcl.init.ref]p5:
2324 // A reference to type "cv1 T1" is initialized by an expression of type
2325 // "cv2 T2" as follows:
2326 //
2327 // - If the reference is an lvalue reference and the initializer
2328 // expression
2329 OverloadingResult ConvOvlResult = OR_Success;
2330 if (isLValueRef) {
2331 if (InitLvalue == Expr::LV_Valid &&
2332 RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification) {
2333 // - is an lvalue (but is not a bit-field), and "cv1 T1" is
2334 // reference-compatible with "cv2 T2," or
2335 //
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002336 // Per C++ [over.best.ics]p2, we don't diagnose whether the lvalue is a
Douglas Gregor20093b42009-12-09 23:02:17 +00002337 // bit-field when we're determining whether the reference initialization
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002338 // can occur. However, we do pay attention to whether it is a bit-field
2339 // to decide whether we're actually binding to a temporary created from
2340 // the bit-field.
Douglas Gregor20093b42009-12-09 23:02:17 +00002341 if (DerivedToBase)
2342 Sequence.AddDerivedToBaseCastStep(
Chandler Carruth5535c382010-01-12 20:32:25 +00002343 S.Context.getQualifiedType(T1, T2Quals),
Douglas Gregor20093b42009-12-09 23:02:17 +00002344 /*isLValue=*/true);
Chandler Carruth5535c382010-01-12 20:32:25 +00002345 if (T1Quals != T2Quals)
Douglas Gregor20093b42009-12-09 23:02:17 +00002346 Sequence.AddQualificationConversionStep(cv1T1, /*IsLValue=*/true);
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002347 bool BindingTemporary = T1Quals.hasConst() && !T1Quals.hasVolatile() &&
Anders Carlsson09380262010-01-31 17:18:49 +00002348 (Initializer->getBitField() || Initializer->refersToVectorElement());
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002349 Sequence.AddReferenceBindingStep(cv1T1, BindingTemporary);
Douglas Gregor20093b42009-12-09 23:02:17 +00002350 return;
2351 }
2352
2353 // - has a class type (i.e., T2 is a class type), where T1 is not
2354 // reference-related to T2, and can be implicitly converted to an
2355 // lvalue of type "cv3 T3," where "cv1 T1" is reference-compatible
2356 // with "cv3 T3" (this conversion is selected by enumerating the
2357 // applicable conversion functions (13.3.1.6) and choosing the best
2358 // one through overload resolution (13.3)),
2359 if (RefRelationship == Sema::Ref_Incompatible && T2->isRecordType()) {
2360 ConvOvlResult = TryRefInitWithConversionFunction(S, Entity, Kind,
2361 Initializer,
2362 /*AllowRValues=*/false,
2363 Sequence);
2364 if (ConvOvlResult == OR_Success)
2365 return;
John McCall1d318332010-01-12 00:44:57 +00002366 if (ConvOvlResult != OR_No_Viable_Function) {
2367 Sequence.SetOverloadFailure(
2368 InitializationSequence::FK_ReferenceInitOverloadFailed,
2369 ConvOvlResult);
2370 }
Douglas Gregor20093b42009-12-09 23:02:17 +00002371 }
2372 }
2373
2374 // - Otherwise, the reference shall be an lvalue reference to a
2375 // non-volatile const type (i.e., cv1 shall be const), or the reference
2376 // shall be an rvalue reference and the initializer expression shall
2377 // be an rvalue.
Douglas Gregoref06e242010-01-29 19:39:15 +00002378 if (!((isLValueRef && T1Quals.hasConst() && !T1Quals.hasVolatile()) ||
Douglas Gregor20093b42009-12-09 23:02:17 +00002379 (isRValueRef && InitLvalue != Expr::LV_Valid))) {
2380 if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty())
2381 Sequence.SetOverloadFailure(
2382 InitializationSequence::FK_ReferenceInitOverloadFailed,
2383 ConvOvlResult);
2384 else if (isLValueRef)
2385 Sequence.SetFailed(InitLvalue == Expr::LV_Valid
2386 ? (RefRelationship == Sema::Ref_Related
2387 ? InitializationSequence::FK_ReferenceInitDropsQualifiers
2388 : InitializationSequence::FK_NonConstLValueReferenceBindingToUnrelated)
2389 : InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary);
2390 else
2391 Sequence.SetFailed(
2392 InitializationSequence::FK_RValueReferenceBindingToLValue);
2393
2394 return;
2395 }
2396
2397 // - If T1 and T2 are class types and
2398 if (T1->isRecordType() && T2->isRecordType()) {
2399 // - the initializer expression is an rvalue and "cv1 T1" is
2400 // reference-compatible with "cv2 T2", or
2401 if (InitLvalue != Expr::LV_Valid &&
2402 RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification) {
2403 if (DerivedToBase)
2404 Sequence.AddDerivedToBaseCastStep(
Chandler Carruth5535c382010-01-12 20:32:25 +00002405 S.Context.getQualifiedType(T1, T2Quals),
Douglas Gregor20093b42009-12-09 23:02:17 +00002406 /*isLValue=*/false);
Chandler Carruth5535c382010-01-12 20:32:25 +00002407 if (T1Quals != T2Quals)
Douglas Gregor20093b42009-12-09 23:02:17 +00002408 Sequence.AddQualificationConversionStep(cv1T1, /*IsLValue=*/false);
2409 Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true);
2410 return;
2411 }
2412
2413 // - T1 is not reference-related to T2 and the initializer expression
2414 // can be implicitly converted to an rvalue of type "cv3 T3" (this
2415 // conversion is selected by enumerating the applicable conversion
2416 // functions (13.3.1.6) and choosing the best one through overload
2417 // resolution (13.3)),
2418 if (RefRelationship == Sema::Ref_Incompatible) {
2419 ConvOvlResult = TryRefInitWithConversionFunction(S, Entity,
2420 Kind, Initializer,
2421 /*AllowRValues=*/true,
2422 Sequence);
2423 if (ConvOvlResult)
2424 Sequence.SetOverloadFailure(
2425 InitializationSequence::FK_ReferenceInitOverloadFailed,
2426 ConvOvlResult);
2427
2428 return;
2429 }
2430
2431 Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers);
2432 return;
2433 }
2434
2435 // - If the initializer expression is an rvalue, with T2 an array type,
2436 // and "cv1 T1" is reference-compatible with "cv2 T2," the reference
2437 // is bound to the object represented by the rvalue (see 3.10).
2438 // FIXME: How can an array type be reference-compatible with anything?
2439 // Don't we mean the element types of T1 and T2?
2440
2441 // - Otherwise, a temporary of type “cv1 T1” is created and initialized
2442 // from the initializer expression using the rules for a non-reference
2443 // copy initialization (8.5). The reference is then bound to the
2444 // temporary. [...]
2445 // Determine whether we are allowed to call explicit constructors or
2446 // explicit conversion operators.
2447 bool AllowExplicit = (Kind.getKind() == InitializationKind::IK_Direct);
2448 ImplicitConversionSequence ICS
2449 = S.TryImplicitConversion(Initializer, cv1T1,
2450 /*SuppressUserConversions=*/false, AllowExplicit,
2451 /*ForceRValue=*/false,
2452 /*FIXME:InOverloadResolution=*/false,
2453 /*UserCast=*/Kind.isExplicitCast());
2454
John McCall1d318332010-01-12 00:44:57 +00002455 if (ICS.isBad()) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002456 // FIXME: Use the conversion function set stored in ICS to turn
2457 // this into an overloading ambiguity diagnostic. However, we need
2458 // to keep that set as an OverloadCandidateSet rather than as some
2459 // other kind of set.
Douglas Gregor18ef5e22009-12-18 05:02:21 +00002460 if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty())
2461 Sequence.SetOverloadFailure(
2462 InitializationSequence::FK_ReferenceInitOverloadFailed,
2463 ConvOvlResult);
2464 else
2465 Sequence.SetFailed(InitializationSequence::FK_ReferenceInitFailed);
Douglas Gregor20093b42009-12-09 23:02:17 +00002466 return;
2467 }
2468
2469 // [...] If T1 is reference-related to T2, cv1 must be the
2470 // same cv-qualification as, or greater cv-qualification
2471 // than, cv2; otherwise, the program is ill-formed.
Chandler Carruth5535c382010-01-12 20:32:25 +00002472 unsigned T1CVRQuals = T1Quals.getCVRQualifiers();
2473 unsigned T2CVRQuals = T2Quals.getCVRQualifiers();
Douglas Gregor20093b42009-12-09 23:02:17 +00002474 if (RefRelationship == Sema::Ref_Related &&
Chandler Carruth5535c382010-01-12 20:32:25 +00002475 (T1CVRQuals | T2CVRQuals) != T1CVRQuals) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002476 Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers);
2477 return;
2478 }
2479
2480 // Perform the actual conversion.
2481 Sequence.AddConversionSequenceStep(ICS, cv1T1);
2482 Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true);
2483 return;
2484}
2485
2486/// \brief Attempt character array initialization from a string literal
2487/// (C++ [dcl.init.string], C99 6.7.8).
2488static void TryStringLiteralInitialization(Sema &S,
2489 const InitializedEntity &Entity,
2490 const InitializationKind &Kind,
2491 Expr *Initializer,
2492 InitializationSequence &Sequence) {
Eli Friedmancfdc81a2009-12-19 08:11:05 +00002493 Sequence.setSequenceKind(InitializationSequence::StringInit);
Douglas Gregord6542d82009-12-22 15:35:07 +00002494 Sequence.AddStringInitStep(Entity.getType());
Douglas Gregor20093b42009-12-09 23:02:17 +00002495}
2496
Douglas Gregor20093b42009-12-09 23:02:17 +00002497/// \brief Attempt initialization by constructor (C++ [dcl.init]), which
2498/// enumerates the constructors of the initialized entity and performs overload
2499/// resolution to select the best.
2500static void TryConstructorInitialization(Sema &S,
2501 const InitializedEntity &Entity,
2502 const InitializationKind &Kind,
2503 Expr **Args, unsigned NumArgs,
Douglas Gregor71d17402009-12-15 00:01:57 +00002504 QualType DestType,
Douglas Gregor20093b42009-12-09 23:02:17 +00002505 InitializationSequence &Sequence) {
Douglas Gregor18ef5e22009-12-18 05:02:21 +00002506 if (Kind.getKind() == InitializationKind::IK_Copy)
2507 Sequence.setSequenceKind(InitializationSequence::UserDefinedConversion);
2508 else
2509 Sequence.setSequenceKind(InitializationSequence::ConstructorInitialization);
Douglas Gregor51c56d62009-12-14 20:49:26 +00002510
2511 // Build the candidate set directly in the initialization sequence
2512 // structure, so that it will persist if we fail.
2513 OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
2514 CandidateSet.clear();
2515
2516 // Determine whether we are allowed to call explicit constructors or
2517 // explicit conversion operators.
2518 bool AllowExplicit = (Kind.getKind() == InitializationKind::IK_Direct ||
2519 Kind.getKind() == InitializationKind::IK_Value ||
2520 Kind.getKind() == InitializationKind::IK_Default);
2521
2522 // The type we're converting to is a class type. Enumerate its constructors
2523 // to see if one is suitable.
Douglas Gregor51c56d62009-12-14 20:49:26 +00002524 const RecordType *DestRecordType = DestType->getAs<RecordType>();
2525 assert(DestRecordType && "Constructor initialization requires record type");
2526 CXXRecordDecl *DestRecordDecl
2527 = cast<CXXRecordDecl>(DestRecordType->getDecl());
2528
2529 DeclarationName ConstructorName
2530 = S.Context.DeclarationNames.getCXXConstructorName(
2531 S.Context.getCanonicalType(DestType).getUnqualifiedType());
2532 DeclContext::lookup_iterator Con, ConEnd;
2533 for (llvm::tie(Con, ConEnd) = DestRecordDecl->lookup(ConstructorName);
2534 Con != ConEnd; ++Con) {
2535 // Find the constructor (which may be a template).
2536 CXXConstructorDecl *Constructor = 0;
2537 FunctionTemplateDecl *ConstructorTmpl
2538 = dyn_cast<FunctionTemplateDecl>(*Con);
2539 if (ConstructorTmpl)
2540 Constructor = cast<CXXConstructorDecl>(
2541 ConstructorTmpl->getTemplatedDecl());
2542 else
2543 Constructor = cast<CXXConstructorDecl>(*Con);
2544
2545 if (!Constructor->isInvalidDecl() &&
Douglas Gregor99a2e602009-12-16 01:38:02 +00002546 (AllowExplicit || !Constructor->isExplicit())) {
Douglas Gregor51c56d62009-12-14 20:49:26 +00002547 if (ConstructorTmpl)
John McCall86820f52010-01-26 01:37:31 +00002548 S.AddTemplateOverloadCandidate(ConstructorTmpl,
2549 ConstructorTmpl->getAccess(),
2550 /*ExplicitArgs*/ 0,
Douglas Gregor51c56d62009-12-14 20:49:26 +00002551 Args, NumArgs, CandidateSet);
2552 else
John McCall86820f52010-01-26 01:37:31 +00002553 S.AddOverloadCandidate(Constructor, Constructor->getAccess(),
2554 Args, NumArgs, CandidateSet);
Douglas Gregor51c56d62009-12-14 20:49:26 +00002555 }
2556 }
2557
2558 SourceLocation DeclLoc = Kind.getLocation();
2559
2560 // Perform overload resolution. If it fails, return the failed result.
2561 OverloadCandidateSet::iterator Best;
2562 if (OverloadingResult Result
2563 = S.BestViableFunction(CandidateSet, DeclLoc, Best)) {
2564 Sequence.SetOverloadFailure(
2565 InitializationSequence::FK_ConstructorOverloadFailed,
2566 Result);
2567 return;
2568 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002569
2570 // C++0x [dcl.init]p6:
2571 // If a program calls for the default initialization of an object
2572 // of a const-qualified type T, T shall be a class type with a
2573 // user-provided default constructor.
2574 if (Kind.getKind() == InitializationKind::IK_Default &&
2575 Entity.getType().isConstQualified() &&
2576 cast<CXXConstructorDecl>(Best->Function)->isImplicit()) {
2577 Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst);
2578 return;
2579 }
2580
Douglas Gregor51c56d62009-12-14 20:49:26 +00002581 // Add the constructor initialization step. Any cv-qualification conversion is
2582 // subsumed by the initialization.
Douglas Gregor18ef5e22009-12-18 05:02:21 +00002583 if (Kind.getKind() == InitializationKind::IK_Copy) {
John McCallb13b7372010-02-01 03:16:54 +00002584 Sequence.AddUserConversionStep(Best->Function, Best->getAccess(), DestType);
Douglas Gregor18ef5e22009-12-18 05:02:21 +00002585 } else {
2586 Sequence.AddConstructorInitializationStep(
Douglas Gregor51c56d62009-12-14 20:49:26 +00002587 cast<CXXConstructorDecl>(Best->Function),
John McCallb13b7372010-02-01 03:16:54 +00002588 Best->getAccess(),
Douglas Gregor18ef5e22009-12-18 05:02:21 +00002589 DestType);
2590 }
Douglas Gregor20093b42009-12-09 23:02:17 +00002591}
2592
Douglas Gregor71d17402009-12-15 00:01:57 +00002593/// \brief Attempt value initialization (C++ [dcl.init]p7).
2594static void TryValueInitialization(Sema &S,
2595 const InitializedEntity &Entity,
2596 const InitializationKind &Kind,
2597 InitializationSequence &Sequence) {
2598 // C++ [dcl.init]p5:
2599 //
2600 // To value-initialize an object of type T means:
Douglas Gregord6542d82009-12-22 15:35:07 +00002601 QualType T = Entity.getType();
Douglas Gregor71d17402009-12-15 00:01:57 +00002602
2603 // -- if T is an array type, then each element is value-initialized;
2604 while (const ArrayType *AT = S.Context.getAsArrayType(T))
2605 T = AT->getElementType();
2606
2607 if (const RecordType *RT = T->getAs<RecordType>()) {
2608 if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
2609 // -- if T is a class type (clause 9) with a user-declared
2610 // constructor (12.1), then the default constructor for T is
2611 // called (and the initialization is ill-formed if T has no
2612 // accessible default constructor);
2613 //
2614 // FIXME: we really want to refer to a single subobject of the array,
2615 // but Entity doesn't have a way to capture that (yet).
2616 if (ClassDecl->hasUserDeclaredConstructor())
2617 return TryConstructorInitialization(S, Entity, Kind, 0, 0, T, Sequence);
2618
Douglas Gregor16006c92009-12-16 18:50:27 +00002619 // -- if T is a (possibly cv-qualified) non-union class type
2620 // without a user-provided constructor, then the object is
2621 // zero-initialized and, if T’s implicitly-declared default
2622 // constructor is non-trivial, that constructor is called.
2623 if ((ClassDecl->getTagKind() == TagDecl::TK_class ||
2624 ClassDecl->getTagKind() == TagDecl::TK_struct) &&
2625 !ClassDecl->hasTrivialConstructor()) {
Douglas Gregord6542d82009-12-22 15:35:07 +00002626 Sequence.AddZeroInitializationStep(Entity.getType());
Douglas Gregor16006c92009-12-16 18:50:27 +00002627 return TryConstructorInitialization(S, Entity, Kind, 0, 0, T, Sequence);
2628 }
Douglas Gregor71d17402009-12-15 00:01:57 +00002629 }
2630 }
2631
Douglas Gregord6542d82009-12-22 15:35:07 +00002632 Sequence.AddZeroInitializationStep(Entity.getType());
Douglas Gregor71d17402009-12-15 00:01:57 +00002633 Sequence.setSequenceKind(InitializationSequence::ZeroInitialization);
2634}
2635
Douglas Gregor99a2e602009-12-16 01:38:02 +00002636/// \brief Attempt default initialization (C++ [dcl.init]p6).
2637static void TryDefaultInitialization(Sema &S,
2638 const InitializedEntity &Entity,
2639 const InitializationKind &Kind,
2640 InitializationSequence &Sequence) {
2641 assert(Kind.getKind() == InitializationKind::IK_Default);
2642
2643 // C++ [dcl.init]p6:
2644 // To default-initialize an object of type T means:
2645 // - if T is an array type, each element is default-initialized;
Douglas Gregord6542d82009-12-22 15:35:07 +00002646 QualType DestType = Entity.getType();
Douglas Gregor99a2e602009-12-16 01:38:02 +00002647 while (const ArrayType *Array = S.Context.getAsArrayType(DestType))
2648 DestType = Array->getElementType();
2649
2650 // - if T is a (possibly cv-qualified) class type (Clause 9), the default
2651 // constructor for T is called (and the initialization is ill-formed if
2652 // T has no accessible default constructor);
2653 if (DestType->isRecordType()) {
Douglas Gregor99a2e602009-12-16 01:38:02 +00002654 return TryConstructorInitialization(S, Entity, Kind, 0, 0, DestType,
2655 Sequence);
2656 }
2657
2658 // - otherwise, no initialization is performed.
2659 Sequence.setSequenceKind(InitializationSequence::NoInitialization);
2660
2661 // If a program calls for the default initialization of an object of
2662 // a const-qualified type T, T shall be a class type with a user-provided
2663 // default constructor.
2664 if (DestType.isConstQualified())
2665 Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst);
2666}
2667
Douglas Gregor20093b42009-12-09 23:02:17 +00002668/// \brief Attempt a user-defined conversion between two types (C++ [dcl.init]),
2669/// which enumerates all conversion functions and performs overload resolution
2670/// to select the best.
2671static void TryUserDefinedConversion(Sema &S,
2672 const InitializedEntity &Entity,
2673 const InitializationKind &Kind,
2674 Expr *Initializer,
2675 InitializationSequence &Sequence) {
Douglas Gregor4a520a22009-12-14 17:27:33 +00002676 Sequence.setSequenceKind(InitializationSequence::UserDefinedConversion);
2677
Douglas Gregord6542d82009-12-22 15:35:07 +00002678 QualType DestType = Entity.getType();
Douglas Gregor4a520a22009-12-14 17:27:33 +00002679 assert(!DestType->isReferenceType() && "References are handled elsewhere");
2680 QualType SourceType = Initializer->getType();
2681 assert((DestType->isRecordType() || SourceType->isRecordType()) &&
2682 "Must have a class type to perform a user-defined conversion");
2683
2684 // Build the candidate set directly in the initialization sequence
2685 // structure, so that it will persist if we fail.
2686 OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
2687 CandidateSet.clear();
2688
2689 // Determine whether we are allowed to call explicit constructors or
2690 // explicit conversion operators.
2691 bool AllowExplicit = Kind.getKind() == InitializationKind::IK_Direct;
2692
2693 if (const RecordType *DestRecordType = DestType->getAs<RecordType>()) {
2694 // The type we're converting to is a class type. Enumerate its constructors
2695 // to see if there is a suitable conversion.
2696 CXXRecordDecl *DestRecordDecl
2697 = cast<CXXRecordDecl>(DestRecordType->getDecl());
2698
2699 DeclarationName ConstructorName
2700 = S.Context.DeclarationNames.getCXXConstructorName(
2701 S.Context.getCanonicalType(DestType).getUnqualifiedType());
2702 DeclContext::lookup_iterator Con, ConEnd;
2703 for (llvm::tie(Con, ConEnd) = DestRecordDecl->lookup(ConstructorName);
2704 Con != ConEnd; ++Con) {
2705 // Find the constructor (which may be a template).
2706 CXXConstructorDecl *Constructor = 0;
2707 FunctionTemplateDecl *ConstructorTmpl
2708 = dyn_cast<FunctionTemplateDecl>(*Con);
2709 if (ConstructorTmpl)
2710 Constructor = cast<CXXConstructorDecl>(
2711 ConstructorTmpl->getTemplatedDecl());
2712 else
2713 Constructor = cast<CXXConstructorDecl>(*Con);
2714
2715 if (!Constructor->isInvalidDecl() &&
2716 Constructor->isConvertingConstructor(AllowExplicit)) {
2717 if (ConstructorTmpl)
John McCall86820f52010-01-26 01:37:31 +00002718 S.AddTemplateOverloadCandidate(ConstructorTmpl,
2719 ConstructorTmpl->getAccess(),
2720 /*ExplicitArgs*/ 0,
Douglas Gregor4a520a22009-12-14 17:27:33 +00002721 &Initializer, 1, CandidateSet);
2722 else
John McCall86820f52010-01-26 01:37:31 +00002723 S.AddOverloadCandidate(Constructor, Constructor->getAccess(),
2724 &Initializer, 1, CandidateSet);
Douglas Gregor4a520a22009-12-14 17:27:33 +00002725 }
2726 }
2727 }
Eli Friedmancfdc81a2009-12-19 08:11:05 +00002728
2729 SourceLocation DeclLoc = Initializer->getLocStart();
2730
Douglas Gregor4a520a22009-12-14 17:27:33 +00002731 if (const RecordType *SourceRecordType = SourceType->getAs<RecordType>()) {
2732 // The type we're converting from is a class type, enumerate its conversion
2733 // functions.
Eli Friedmancfdc81a2009-12-19 08:11:05 +00002734
Eli Friedman33c2da92009-12-20 22:12:03 +00002735 // We can only enumerate the conversion functions for a complete type; if
2736 // the type isn't complete, simply skip this step.
2737 if (!S.RequireCompleteType(DeclLoc, SourceType, 0)) {
2738 CXXRecordDecl *SourceRecordDecl
2739 = cast<CXXRecordDecl>(SourceRecordType->getDecl());
Douglas Gregor4a520a22009-12-14 17:27:33 +00002740
John McCalleec51cf2010-01-20 00:46:10 +00002741 const UnresolvedSetImpl *Conversions
Eli Friedman33c2da92009-12-20 22:12:03 +00002742 = SourceRecordDecl->getVisibleConversionFunctions();
John McCalleec51cf2010-01-20 00:46:10 +00002743 for (UnresolvedSetImpl::const_iterator I = Conversions->begin(),
Eli Friedman33c2da92009-12-20 22:12:03 +00002744 E = Conversions->end();
2745 I != E; ++I) {
2746 NamedDecl *D = *I;
2747 CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
2748 if (isa<UsingShadowDecl>(D))
2749 D = cast<UsingShadowDecl>(D)->getTargetDecl();
2750
2751 FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D);
2752 CXXConversionDecl *Conv;
Douglas Gregor4a520a22009-12-14 17:27:33 +00002753 if (ConvTemplate)
Eli Friedman33c2da92009-12-20 22:12:03 +00002754 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
Douglas Gregor4a520a22009-12-14 17:27:33 +00002755 else
Eli Friedman33c2da92009-12-20 22:12:03 +00002756 Conv = cast<CXXConversionDecl>(*I);
2757
2758 if (AllowExplicit || !Conv->isExplicit()) {
2759 if (ConvTemplate)
John McCall86820f52010-01-26 01:37:31 +00002760 S.AddTemplateConversionCandidate(ConvTemplate, I.getAccess(),
2761 ActingDC, Initializer, DestType,
Eli Friedman33c2da92009-12-20 22:12:03 +00002762 CandidateSet);
2763 else
John McCall86820f52010-01-26 01:37:31 +00002764 S.AddConversionCandidate(Conv, I.getAccess(), ActingDC,
2765 Initializer, DestType, CandidateSet);
Eli Friedman33c2da92009-12-20 22:12:03 +00002766 }
Douglas Gregor4a520a22009-12-14 17:27:33 +00002767 }
2768 }
2769 }
2770
Douglas Gregor4a520a22009-12-14 17:27:33 +00002771 // Perform overload resolution. If it fails, return the failed result.
2772 OverloadCandidateSet::iterator Best;
John McCall1d318332010-01-12 00:44:57 +00002773 if (OverloadingResult Result
Douglas Gregor4a520a22009-12-14 17:27:33 +00002774 = S.BestViableFunction(CandidateSet, DeclLoc, Best)) {
2775 Sequence.SetOverloadFailure(
2776 InitializationSequence::FK_UserConversionOverloadFailed,
2777 Result);
2778 return;
2779 }
John McCall1d318332010-01-12 00:44:57 +00002780
Douglas Gregor4a520a22009-12-14 17:27:33 +00002781 FunctionDecl *Function = Best->Function;
2782
2783 if (isa<CXXConstructorDecl>(Function)) {
2784 // Add the user-defined conversion step. Any cv-qualification conversion is
2785 // subsumed by the initialization.
John McCallb13b7372010-02-01 03:16:54 +00002786 Sequence.AddUserConversionStep(Function, Best->getAccess(), DestType);
Douglas Gregor4a520a22009-12-14 17:27:33 +00002787 return;
2788 }
2789
2790 // Add the user-defined conversion step that calls the conversion function.
2791 QualType ConvType = Function->getResultType().getNonReferenceType();
John McCallb13b7372010-02-01 03:16:54 +00002792 Sequence.AddUserConversionStep(Function, Best->getAccess(), ConvType);
Douglas Gregor4a520a22009-12-14 17:27:33 +00002793
2794 // If the conversion following the call to the conversion function is
2795 // interesting, add it as a separate step.
2796 if (Best->FinalConversion.First || Best->FinalConversion.Second ||
2797 Best->FinalConversion.Third) {
2798 ImplicitConversionSequence ICS;
John McCall1d318332010-01-12 00:44:57 +00002799 ICS.setStandard();
Douglas Gregor4a520a22009-12-14 17:27:33 +00002800 ICS.Standard = Best->FinalConversion;
2801 Sequence.AddConversionSequenceStep(ICS, DestType);
2802 }
Douglas Gregor20093b42009-12-09 23:02:17 +00002803}
2804
2805/// \brief Attempt an implicit conversion (C++ [conv]) converting from one
2806/// non-class type to another.
2807static void TryImplicitConversion(Sema &S,
2808 const InitializedEntity &Entity,
2809 const InitializationKind &Kind,
2810 Expr *Initializer,
2811 InitializationSequence &Sequence) {
2812 ImplicitConversionSequence ICS
Douglas Gregord6542d82009-12-22 15:35:07 +00002813 = S.TryImplicitConversion(Initializer, Entity.getType(),
Douglas Gregor20093b42009-12-09 23:02:17 +00002814 /*SuppressUserConversions=*/true,
2815 /*AllowExplicit=*/false,
2816 /*ForceRValue=*/false,
2817 /*FIXME:InOverloadResolution=*/false,
2818 /*UserCast=*/Kind.isExplicitCast());
2819
John McCall1d318332010-01-12 00:44:57 +00002820 if (ICS.isBad()) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002821 Sequence.SetFailed(InitializationSequence::FK_ConversionFailed);
2822 return;
2823 }
2824
Douglas Gregord6542d82009-12-22 15:35:07 +00002825 Sequence.AddConversionSequenceStep(ICS, Entity.getType());
Douglas Gregor20093b42009-12-09 23:02:17 +00002826}
2827
2828InitializationSequence::InitializationSequence(Sema &S,
2829 const InitializedEntity &Entity,
2830 const InitializationKind &Kind,
2831 Expr **Args,
2832 unsigned NumArgs) {
2833 ASTContext &Context = S.Context;
2834
2835 // C++0x [dcl.init]p16:
2836 // The semantics of initializers are as follows. The destination type is
2837 // the type of the object or reference being initialized and the source
2838 // type is the type of the initializer expression. The source type is not
2839 // defined when the initializer is a braced-init-list or when it is a
2840 // parenthesized list of expressions.
Douglas Gregord6542d82009-12-22 15:35:07 +00002841 QualType DestType = Entity.getType();
Douglas Gregor20093b42009-12-09 23:02:17 +00002842
2843 if (DestType->isDependentType() ||
2844 Expr::hasAnyTypeDependentArguments(Args, NumArgs)) {
2845 SequenceKind = DependentSequence;
2846 return;
2847 }
2848
2849 QualType SourceType;
2850 Expr *Initializer = 0;
Douglas Gregor99a2e602009-12-16 01:38:02 +00002851 if (NumArgs == 1) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002852 Initializer = Args[0];
2853 if (!isa<InitListExpr>(Initializer))
2854 SourceType = Initializer->getType();
2855 }
2856
2857 // - If the initializer is a braced-init-list, the object is
2858 // list-initialized (8.5.4).
2859 if (InitListExpr *InitList = dyn_cast_or_null<InitListExpr>(Initializer)) {
2860 TryListInitialization(S, Entity, Kind, InitList, *this);
Douglas Gregord87b61f2009-12-10 17:56:55 +00002861 return;
Douglas Gregor20093b42009-12-09 23:02:17 +00002862 }
2863
2864 // - If the destination type is a reference type, see 8.5.3.
2865 if (DestType->isReferenceType()) {
2866 // C++0x [dcl.init.ref]p1:
2867 // A variable declared to be a T& or T&&, that is, "reference to type T"
2868 // (8.3.2), shall be initialized by an object, or function, of type T or
2869 // by an object that can be converted into a T.
2870 // (Therefore, multiple arguments are not permitted.)
2871 if (NumArgs != 1)
2872 SetFailed(FK_TooManyInitsForReference);
2873 else
2874 TryReferenceInitialization(S, Entity, Kind, Args[0], *this);
2875 return;
2876 }
2877
2878 // - If the destination type is an array of characters, an array of
2879 // char16_t, an array of char32_t, or an array of wchar_t, and the
2880 // initializer is a string literal, see 8.5.2.
2881 if (Initializer && IsStringInit(Initializer, DestType, Context)) {
2882 TryStringLiteralInitialization(S, Entity, Kind, Initializer, *this);
2883 return;
2884 }
2885
2886 // - If the initializer is (), the object is value-initialized.
Douglas Gregor99a2e602009-12-16 01:38:02 +00002887 if (Kind.getKind() == InitializationKind::IK_Value ||
2888 (Kind.getKind() == InitializationKind::IK_Direct && NumArgs == 0)) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002889 TryValueInitialization(S, Entity, Kind, *this);
2890 return;
2891 }
2892
Douglas Gregor99a2e602009-12-16 01:38:02 +00002893 // Handle default initialization.
2894 if (Kind.getKind() == InitializationKind::IK_Default){
2895 TryDefaultInitialization(S, Entity, Kind, *this);
2896 return;
2897 }
Douglas Gregor18ef5e22009-12-18 05:02:21 +00002898
Douglas Gregor20093b42009-12-09 23:02:17 +00002899 // - Otherwise, if the destination type is an array, the program is
2900 // ill-formed.
2901 if (const ArrayType *AT = Context.getAsArrayType(DestType)) {
2902 if (AT->getElementType()->isAnyCharacterType())
2903 SetFailed(FK_ArrayNeedsInitListOrStringLiteral);
2904 else
2905 SetFailed(FK_ArrayNeedsInitList);
2906
2907 return;
2908 }
Eli Friedmancfdc81a2009-12-19 08:11:05 +00002909
2910 // Handle initialization in C
2911 if (!S.getLangOptions().CPlusPlus) {
2912 setSequenceKind(CAssignment);
2913 AddCAssignmentStep(DestType);
2914 return;
2915 }
Douglas Gregor20093b42009-12-09 23:02:17 +00002916
2917 // - If the destination type is a (possibly cv-qualified) class type:
2918 if (DestType->isRecordType()) {
2919 // - If the initialization is direct-initialization, or if it is
2920 // copy-initialization where the cv-unqualified version of the
2921 // source type is the same class as, or a derived class of, the
2922 // class of the destination, constructors are considered. [...]
2923 if (Kind.getKind() == InitializationKind::IK_Direct ||
2924 (Kind.getKind() == InitializationKind::IK_Copy &&
2925 (Context.hasSameUnqualifiedType(SourceType, DestType) ||
2926 S.IsDerivedFrom(SourceType, DestType))))
Douglas Gregor71d17402009-12-15 00:01:57 +00002927 TryConstructorInitialization(S, Entity, Kind, Args, NumArgs,
Douglas Gregord6542d82009-12-22 15:35:07 +00002928 Entity.getType(), *this);
Douglas Gregor20093b42009-12-09 23:02:17 +00002929 // - Otherwise (i.e., for the remaining copy-initialization cases),
2930 // user-defined conversion sequences that can convert from the source
2931 // type to the destination type or (when a conversion function is
2932 // used) to a derived class thereof are enumerated as described in
2933 // 13.3.1.4, and the best one is chosen through overload resolution
2934 // (13.3).
2935 else
2936 TryUserDefinedConversion(S, Entity, Kind, Initializer, *this);
2937 return;
2938 }
2939
Douglas Gregor99a2e602009-12-16 01:38:02 +00002940 if (NumArgs > 1) {
2941 SetFailed(FK_TooManyInitsForScalar);
2942 return;
2943 }
2944 assert(NumArgs == 1 && "Zero-argument case handled above");
2945
Douglas Gregor20093b42009-12-09 23:02:17 +00002946 // - Otherwise, if the source type is a (possibly cv-qualified) class
2947 // type, conversion functions are considered.
Douglas Gregor99a2e602009-12-16 01:38:02 +00002948 if (!SourceType.isNull() && SourceType->isRecordType()) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002949 TryUserDefinedConversion(S, Entity, Kind, Initializer, *this);
2950 return;
2951 }
2952
2953 // - Otherwise, the initial value of the object being initialized is the
Douglas Gregor4a520a22009-12-14 17:27:33 +00002954 // (possibly converted) value of the initializer expression. Standard
Douglas Gregor20093b42009-12-09 23:02:17 +00002955 // conversions (Clause 4) will be used, if necessary, to convert the
2956 // initializer expression to the cv-unqualified version of the
2957 // destination type; no user-defined conversions are considered.
Douglas Gregor99a2e602009-12-16 01:38:02 +00002958 setSequenceKind(StandardConversion);
Douglas Gregor20093b42009-12-09 23:02:17 +00002959 TryImplicitConversion(S, Entity, Kind, Initializer, *this);
2960}
2961
2962InitializationSequence::~InitializationSequence() {
2963 for (llvm::SmallVectorImpl<Step>::iterator Step = Steps.begin(),
2964 StepEnd = Steps.end();
2965 Step != StepEnd; ++Step)
2966 Step->Destroy();
2967}
2968
2969//===----------------------------------------------------------------------===//
2970// Perform initialization
2971//===----------------------------------------------------------------------===//
Douglas Gregor18ef5e22009-12-18 05:02:21 +00002972static Sema::AssignmentAction
2973getAssignmentAction(const InitializedEntity &Entity) {
2974 switch(Entity.getKind()) {
2975 case InitializedEntity::EK_Variable:
2976 case InitializedEntity::EK_New:
2977 return Sema::AA_Initializing;
2978
2979 case InitializedEntity::EK_Parameter:
2980 // FIXME: Can we tell when we're sending vs. passing?
2981 return Sema::AA_Passing;
2982
2983 case InitializedEntity::EK_Result:
2984 return Sema::AA_Returning;
2985
2986 case InitializedEntity::EK_Exception:
2987 case InitializedEntity::EK_Base:
2988 llvm_unreachable("No assignment action for C++-specific initialization");
2989 break;
2990
2991 case InitializedEntity::EK_Temporary:
2992 // FIXME: Can we tell apart casting vs. converting?
2993 return Sema::AA_Casting;
2994
2995 case InitializedEntity::EK_Member:
Anders Carlssond3d824d2010-01-23 04:34:47 +00002996 case InitializedEntity::EK_ArrayElement:
2997 case InitializedEntity::EK_VectorElement:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00002998 return Sema::AA_Initializing;
2999 }
3000
3001 return Sema::AA_Converting;
3002}
3003
3004static bool shouldBindAsTemporary(const InitializedEntity &Entity,
3005 bool IsCopy) {
3006 switch (Entity.getKind()) {
3007 case InitializedEntity::EK_Result:
3008 case InitializedEntity::EK_Exception:
Anders Carlsson1b36a2f2010-01-24 00:19:41 +00003009 case InitializedEntity::EK_ArrayElement:
3010 case InitializedEntity::EK_Member:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003011 return !IsCopy;
3012
3013 case InitializedEntity::EK_New:
3014 case InitializedEntity::EK_Variable:
3015 case InitializedEntity::EK_Base:
Anders Carlssond3d824d2010-01-23 04:34:47 +00003016 case InitializedEntity::EK_VectorElement:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003017 return false;
3018
3019 case InitializedEntity::EK_Parameter:
3020 case InitializedEntity::EK_Temporary:
3021 return true;
3022 }
3023
3024 llvm_unreachable("missed an InitializedEntity kind?");
3025}
3026
3027/// \brief If we need to perform an additional copy of the initialized object
3028/// for this kind of entity (e.g., the result of a function or an object being
3029/// thrown), make the copy.
3030static Sema::OwningExprResult CopyIfRequiredForEntity(Sema &S,
3031 const InitializedEntity &Entity,
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00003032 const InitializationKind &Kind,
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003033 Sema::OwningExprResult CurInit) {
Anders Carlsson1b36a2f2010-01-24 00:19:41 +00003034 Expr *CurInitExpr = (Expr *)CurInit.get();
3035
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003036 SourceLocation Loc;
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003037
3038 switch (Entity.getKind()) {
3039 case InitializedEntity::EK_Result:
Douglas Gregord6542d82009-12-22 15:35:07 +00003040 if (Entity.getType()->isReferenceType())
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003041 return move(CurInit);
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003042 Loc = Entity.getReturnLoc();
3043 break;
3044
3045 case InitializedEntity::EK_Exception:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003046 Loc = Entity.getThrowLoc();
3047 break;
3048
3049 case InitializedEntity::EK_Variable:
Douglas Gregord6542d82009-12-22 15:35:07 +00003050 if (Entity.getType()->isReferenceType() ||
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00003051 Kind.getKind() != InitializationKind::IK_Copy)
3052 return move(CurInit);
3053 Loc = Entity.getDecl()->getLocation();
3054 break;
3055
Anders Carlsson1b36a2f2010-01-24 00:19:41 +00003056 case InitializedEntity::EK_ArrayElement:
3057 case InitializedEntity::EK_Member:
3058 if (Entity.getType()->isReferenceType() ||
3059 Kind.getKind() != InitializationKind::IK_Copy)
3060 return move(CurInit);
3061 Loc = CurInitExpr->getLocStart();
3062 break;
3063
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003064 case InitializedEntity::EK_Parameter:
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00003065 // FIXME: Do we need this initialization for a parameter?
3066 return move(CurInit);
3067
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003068 case InitializedEntity::EK_New:
3069 case InitializedEntity::EK_Temporary:
3070 case InitializedEntity::EK_Base:
Anders Carlssond3d824d2010-01-23 04:34:47 +00003071 case InitializedEntity::EK_VectorElement:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003072 // We don't need to copy for any of these initialized entities.
3073 return move(CurInit);
3074 }
3075
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003076 CXXRecordDecl *Class = 0;
3077 if (const RecordType *Record = CurInitExpr->getType()->getAs<RecordType>())
3078 Class = cast<CXXRecordDecl>(Record->getDecl());
3079 if (!Class)
3080 return move(CurInit);
3081
3082 // Perform overload resolution using the class's copy constructors.
3083 DeclarationName ConstructorName
3084 = S.Context.DeclarationNames.getCXXConstructorName(
3085 S.Context.getCanonicalType(S.Context.getTypeDeclType(Class)));
3086 DeclContext::lookup_iterator Con, ConEnd;
3087 OverloadCandidateSet CandidateSet;
3088 for (llvm::tie(Con, ConEnd) = Class->lookup(ConstructorName);
3089 Con != ConEnd; ++Con) {
3090 // Find the constructor (which may be a template).
3091 CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(*Con);
3092 if (!Constructor || Constructor->isInvalidDecl() ||
Douglas Gregor9e9199d2009-12-22 00:34:07 +00003093 !Constructor->isCopyConstructor())
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003094 continue;
3095
John McCall86820f52010-01-26 01:37:31 +00003096 S.AddOverloadCandidate(Constructor, Constructor->getAccess(),
3097 &CurInitExpr, 1, CandidateSet);
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003098 }
3099
3100 OverloadCandidateSet::iterator Best;
3101 switch (S.BestViableFunction(CandidateSet, Loc, Best)) {
3102 case OR_Success:
3103 break;
3104
3105 case OR_No_Viable_Function:
3106 S.Diag(Loc, diag::err_temp_copy_no_viable)
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00003107 << (int)Entity.getKind() << CurInitExpr->getType()
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003108 << CurInitExpr->getSourceRange();
John McCallcbce6062010-01-12 07:18:19 +00003109 S.PrintOverloadCandidates(CandidateSet, Sema::OCD_AllCandidates,
3110 &CurInitExpr, 1);
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003111 return S.ExprError();
3112
3113 case OR_Ambiguous:
3114 S.Diag(Loc, diag::err_temp_copy_ambiguous)
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00003115 << (int)Entity.getKind() << CurInitExpr->getType()
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003116 << CurInitExpr->getSourceRange();
John McCallcbce6062010-01-12 07:18:19 +00003117 S.PrintOverloadCandidates(CandidateSet, Sema::OCD_ViableCandidates,
3118 &CurInitExpr, 1);
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003119 return S.ExprError();
3120
3121 case OR_Deleted:
3122 S.Diag(Loc, diag::err_temp_copy_deleted)
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00003123 << (int)Entity.getKind() << CurInitExpr->getType()
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003124 << CurInitExpr->getSourceRange();
3125 S.Diag(Best->Function->getLocation(), diag::note_unavailable_here)
3126 << Best->Function->isDeleted();
3127 return S.ExprError();
3128 }
3129
3130 CurInit.release();
3131 return S.BuildCXXConstructExpr(Loc, CurInitExpr->getType(),
3132 cast<CXXConstructorDecl>(Best->Function),
3133 /*Elidable=*/true,
3134 Sema::MultiExprArg(S,
3135 (void**)&CurInitExpr, 1));
3136}
Douglas Gregor20093b42009-12-09 23:02:17 +00003137
3138Action::OwningExprResult
3139InitializationSequence::Perform(Sema &S,
3140 const InitializedEntity &Entity,
3141 const InitializationKind &Kind,
Douglas Gregord87b61f2009-12-10 17:56:55 +00003142 Action::MultiExprArg Args,
3143 QualType *ResultType) {
Douglas Gregor20093b42009-12-09 23:02:17 +00003144 if (SequenceKind == FailedSequence) {
3145 unsigned NumArgs = Args.size();
3146 Diagnose(S, Entity, Kind, (Expr **)Args.release(), NumArgs);
3147 return S.ExprError();
3148 }
3149
3150 if (SequenceKind == DependentSequence) {
Douglas Gregord87b61f2009-12-10 17:56:55 +00003151 // If the declaration is a non-dependent, incomplete array type
3152 // that has an initializer, then its type will be completed once
3153 // the initializer is instantiated.
Douglas Gregord6542d82009-12-22 15:35:07 +00003154 if (ResultType && !Entity.getType()->isDependentType() &&
Douglas Gregord87b61f2009-12-10 17:56:55 +00003155 Args.size() == 1) {
Douglas Gregord6542d82009-12-22 15:35:07 +00003156 QualType DeclType = Entity.getType();
Douglas Gregord87b61f2009-12-10 17:56:55 +00003157 if (const IncompleteArrayType *ArrayT
3158 = S.Context.getAsIncompleteArrayType(DeclType)) {
3159 // FIXME: We don't currently have the ability to accurately
3160 // compute the length of an initializer list without
3161 // performing full type-checking of the initializer list
3162 // (since we have to determine where braces are implicitly
3163 // introduced and such). So, we fall back to making the array
3164 // type a dependently-sized array type with no specified
3165 // bound.
3166 if (isa<InitListExpr>((Expr *)Args.get()[0])) {
3167 SourceRange Brackets;
Douglas Gregord6542d82009-12-22 15:35:07 +00003168
Douglas Gregord87b61f2009-12-10 17:56:55 +00003169 // Scavange the location of the brackets from the entity, if we can.
Douglas Gregord6542d82009-12-22 15:35:07 +00003170 if (DeclaratorDecl *DD = Entity.getDecl()) {
3171 if (TypeSourceInfo *TInfo = DD->getTypeSourceInfo()) {
3172 TypeLoc TL = TInfo->getTypeLoc();
3173 if (IncompleteArrayTypeLoc *ArrayLoc
3174 = dyn_cast<IncompleteArrayTypeLoc>(&TL))
3175 Brackets = ArrayLoc->getBracketsRange();
3176 }
Douglas Gregord87b61f2009-12-10 17:56:55 +00003177 }
3178
3179 *ResultType
3180 = S.Context.getDependentSizedArrayType(ArrayT->getElementType(),
3181 /*NumElts=*/0,
3182 ArrayT->getSizeModifier(),
3183 ArrayT->getIndexTypeCVRQualifiers(),
3184 Brackets);
3185 }
3186
3187 }
3188 }
3189
Eli Friedman08544622009-12-22 02:35:53 +00003190 if (Kind.getKind() == InitializationKind::IK_Copy || Kind.isExplicitCast())
Douglas Gregor20093b42009-12-09 23:02:17 +00003191 return Sema::OwningExprResult(S, Args.release()[0]);
3192
3193 unsigned NumArgs = Args.size();
3194 return S.Owned(new (S.Context) ParenListExpr(S.Context,
3195 SourceLocation(),
3196 (Expr **)Args.release(),
3197 NumArgs,
3198 SourceLocation()));
3199 }
3200
Douglas Gregor99a2e602009-12-16 01:38:02 +00003201 if (SequenceKind == NoInitialization)
3202 return S.Owned((Expr *)0);
3203
Douglas Gregord6542d82009-12-22 15:35:07 +00003204 QualType DestType = Entity.getType().getNonReferenceType();
3205 // FIXME: Ugly hack around the fact that Entity.getType() is not
Eli Friedmana91eb542009-12-22 02:10:53 +00003206 // the same as Entity.getDecl()->getType() in cases involving type merging,
3207 // and we want latter when it makes sense.
Douglas Gregord87b61f2009-12-10 17:56:55 +00003208 if (ResultType)
Eli Friedmana91eb542009-12-22 02:10:53 +00003209 *ResultType = Entity.getDecl() ? Entity.getDecl()->getType() :
Douglas Gregord6542d82009-12-22 15:35:07 +00003210 Entity.getType();
Douglas Gregor20093b42009-12-09 23:02:17 +00003211
Douglas Gregor99a2e602009-12-16 01:38:02 +00003212 Sema::OwningExprResult CurInit = S.Owned((Expr *)0);
3213
3214 assert(!Steps.empty() && "Cannot have an empty initialization sequence");
3215
3216 // For initialization steps that start with a single initializer,
3217 // grab the only argument out the Args and place it into the "current"
3218 // initializer.
3219 switch (Steps.front().Kind) {
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003220 case SK_ResolveAddressOfOverloadedFunction:
3221 case SK_CastDerivedToBaseRValue:
3222 case SK_CastDerivedToBaseLValue:
3223 case SK_BindReference:
3224 case SK_BindReferenceToTemporary:
3225 case SK_UserConversion:
3226 case SK_QualificationConversionLValue:
3227 case SK_QualificationConversionRValue:
3228 case SK_ConversionSequence:
3229 case SK_ListInitialization:
3230 case SK_CAssignment:
Eli Friedmancfdc81a2009-12-19 08:11:05 +00003231 case SK_StringInit:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003232 assert(Args.size() == 1);
3233 CurInit = Sema::OwningExprResult(S, ((Expr **)(Args.get()))[0]->Retain());
3234 if (CurInit.isInvalid())
3235 return S.ExprError();
3236 break;
3237
3238 case SK_ConstructorInitialization:
3239 case SK_ZeroInitialization:
3240 break;
Douglas Gregor20093b42009-12-09 23:02:17 +00003241 }
3242
3243 // Walk through the computed steps for the initialization sequence,
3244 // performing the specified conversions along the way.
Douglas Gregor16006c92009-12-16 18:50:27 +00003245 bool ConstructorInitRequiresZeroInit = false;
Douglas Gregor20093b42009-12-09 23:02:17 +00003246 for (step_iterator Step = step_begin(), StepEnd = step_end();
3247 Step != StepEnd; ++Step) {
3248 if (CurInit.isInvalid())
3249 return S.ExprError();
3250
3251 Expr *CurInitExpr = (Expr *)CurInit.get();
Douglas Gregor99a2e602009-12-16 01:38:02 +00003252 QualType SourceType = CurInitExpr? CurInitExpr->getType() : QualType();
Douglas Gregor20093b42009-12-09 23:02:17 +00003253
3254 switch (Step->Kind) {
3255 case SK_ResolveAddressOfOverloadedFunction:
3256 // Overload resolution determined which function invoke; update the
3257 // initializer to reflect that choice.
John McCallb13b7372010-02-01 03:16:54 +00003258 // Access control was done in overload resolution.
3259 CurInit = S.FixOverloadedFunctionReference(move(CurInit),
3260 cast<FunctionDecl>(Step->Function.getDecl()));
Douglas Gregor20093b42009-12-09 23:02:17 +00003261 break;
3262
3263 case SK_CastDerivedToBaseRValue:
3264 case SK_CastDerivedToBaseLValue: {
3265 // We have a derived-to-base cast that produces either an rvalue or an
3266 // lvalue. Perform that cast.
3267
3268 // Casts to inaccessible base classes are allowed with C-style casts.
3269 bool IgnoreBaseAccess = Kind.isCStyleOrFunctionalCast();
3270 if (S.CheckDerivedToBaseConversion(SourceType, Step->Type,
3271 CurInitExpr->getLocStart(),
3272 CurInitExpr->getSourceRange(),
3273 IgnoreBaseAccess))
3274 return S.ExprError();
3275
3276 CurInit = S.Owned(new (S.Context) ImplicitCastExpr(Step->Type,
3277 CastExpr::CK_DerivedToBase,
3278 (Expr*)CurInit.release(),
3279 Step->Kind == SK_CastDerivedToBaseLValue));
3280 break;
3281 }
3282
3283 case SK_BindReference:
3284 if (FieldDecl *BitField = CurInitExpr->getBitField()) {
3285 // References cannot bind to bit fields (C++ [dcl.init.ref]p5).
3286 S.Diag(Kind.getLocation(), diag::err_reference_bind_to_bitfield)
Douglas Gregord6542d82009-12-22 15:35:07 +00003287 << Entity.getType().isVolatileQualified()
Douglas Gregor20093b42009-12-09 23:02:17 +00003288 << BitField->getDeclName()
3289 << CurInitExpr->getSourceRange();
3290 S.Diag(BitField->getLocation(), diag::note_bitfield_decl);
3291 return S.ExprError();
3292 }
Anders Carlssona6fe0bf2010-01-29 02:47:33 +00003293
Anders Carlsson09380262010-01-31 17:18:49 +00003294 if (CurInitExpr->refersToVectorElement()) {
John McCall41593e32010-02-02 19:02:38 +00003295 // References cannot bind to vector elements.
Anders Carlsson09380262010-01-31 17:18:49 +00003296 S.Diag(Kind.getLocation(), diag::err_reference_bind_to_vector_element)
3297 << Entity.getType().isVolatileQualified()
3298 << CurInitExpr->getSourceRange();
3299 return S.ExprError();
3300 }
3301
Douglas Gregor20093b42009-12-09 23:02:17 +00003302 // Reference binding does not have any corresponding ASTs.
3303
3304 // Check exception specifications
3305 if (S.CheckExceptionSpecCompatibility(CurInitExpr, DestType))
3306 return S.ExprError();
Anders Carlsson3aba0932010-01-31 18:34:51 +00003307
3308 // FIXME: We should do this for all types.
3309 if (DestType->isAnyComplexType()) {
3310 CurInit =
3311 S.Owned(CXXBindReferenceExpr::Create(S.Context,
3312 CurInit.takeAs<Expr>(),
3313 /*ExtendsLifetime=*/false,
3314 /*RequiresTemporaryCopy=*/false));
3315 }
3316
Douglas Gregor20093b42009-12-09 23:02:17 +00003317 break;
Anders Carlsson3aba0932010-01-31 18:34:51 +00003318
Douglas Gregor20093b42009-12-09 23:02:17 +00003319 case SK_BindReferenceToTemporary:
3320 // Check exception specifications
3321 if (S.CheckExceptionSpecCompatibility(CurInitExpr, DestType))
3322 return S.ExprError();
3323
Anders Carlsson3aba0932010-01-31 18:34:51 +00003324 // FIXME: We should do this for all types.
3325 if (DestType->isAnyComplexType()) {
3326 CurInit =
3327 S.Owned(CXXBindReferenceExpr::Create(S.Context,
3328 CurInit.takeAs<Expr>(),
3329 /*ExtendsLifetime=*/false,
3330 /*RequiresTemporaryCopy=*/true));
3331 }
Douglas Gregor20093b42009-12-09 23:02:17 +00003332 break;
3333
3334 case SK_UserConversion: {
3335 // We have a user-defined conversion that invokes either a constructor
3336 // or a conversion function.
3337 CastExpr::CastKind CastKind = CastExpr::CK_Unknown;
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003338 bool IsCopy = false;
John McCallb13b7372010-02-01 03:16:54 +00003339 FunctionDecl *Fn = cast<FunctionDecl>(Step->Function.getDecl());
3340 AccessSpecifier FnAccess = Step->Function.getAccess();
3341 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Fn)) {
Douglas Gregor20093b42009-12-09 23:02:17 +00003342 // Build a call to the selected constructor.
3343 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(S);
3344 SourceLocation Loc = CurInitExpr->getLocStart();
3345 CurInit.release(); // Ownership transferred into MultiExprArg, below.
John McCallb13b7372010-02-01 03:16:54 +00003346
Douglas Gregor20093b42009-12-09 23:02:17 +00003347 // Determine the arguments required to actually perform the constructor
3348 // call.
3349 if (S.CompleteConstructorCall(Constructor,
3350 Sema::MultiExprArg(S,
3351 (void **)&CurInitExpr,
3352 1),
3353 Loc, ConstructorArgs))
3354 return S.ExprError();
3355
3356 // Build the an expression that constructs a temporary.
3357 CurInit = S.BuildCXXConstructExpr(Loc, Step->Type, Constructor,
3358 move_arg(ConstructorArgs));
3359 if (CurInit.isInvalid())
3360 return S.ExprError();
John McCallb13b7372010-02-01 03:16:54 +00003361
3362 S.CheckConstructorAccess(Kind.getLocation(), Constructor, FnAccess);
Douglas Gregor20093b42009-12-09 23:02:17 +00003363
3364 CastKind = CastExpr::CK_ConstructorConversion;
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003365 QualType Class = S.Context.getTypeDeclType(Constructor->getParent());
3366 if (S.Context.hasSameUnqualifiedType(SourceType, Class) ||
3367 S.IsDerivedFrom(SourceType, Class))
3368 IsCopy = true;
Douglas Gregor20093b42009-12-09 23:02:17 +00003369 } else {
3370 // Build a call to the conversion function.
John McCallb13b7372010-02-01 03:16:54 +00003371 CXXConversionDecl *Conversion = cast<CXXConversionDecl>(Fn);
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003372
John McCallb13b7372010-02-01 03:16:54 +00003373 S.CheckMemberOperatorAccess(Kind.getLocation(), CurInitExpr,
3374 Conversion, FnAccess);
3375
Douglas Gregor20093b42009-12-09 23:02:17 +00003376 // FIXME: Should we move this initialization into a separate
3377 // derived-to-base conversion? I believe the answer is "no", because
3378 // we don't want to turn off access control here for c-style casts.
3379 if (S.PerformObjectArgumentInitialization(CurInitExpr, Conversion))
3380 return S.ExprError();
3381
3382 // Do a little dance to make sure that CurInit has the proper
3383 // pointer.
3384 CurInit.release();
3385
3386 // Build the actual call to the conversion function.
3387 CurInit = S.Owned(S.BuildCXXMemberCallExpr(CurInitExpr, Conversion));
3388 if (CurInit.isInvalid() || !CurInit.get())
3389 return S.ExprError();
3390
3391 CastKind = CastExpr::CK_UserDefinedConversion;
3392 }
3393
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003394 if (shouldBindAsTemporary(Entity, IsCopy))
3395 CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>());
3396
Douglas Gregor20093b42009-12-09 23:02:17 +00003397 CurInitExpr = CurInit.takeAs<Expr>();
3398 CurInit = S.Owned(new (S.Context) ImplicitCastExpr(CurInitExpr->getType(),
3399 CastKind,
3400 CurInitExpr,
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003401 false));
3402
3403 if (!IsCopy)
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00003404 CurInit = CopyIfRequiredForEntity(S, Entity, Kind, move(CurInit));
Douglas Gregor20093b42009-12-09 23:02:17 +00003405 break;
3406 }
3407
3408 case SK_QualificationConversionLValue:
3409 case SK_QualificationConversionRValue:
3410 // Perform a qualification conversion; these can never go wrong.
3411 S.ImpCastExprToType(CurInitExpr, Step->Type,
3412 CastExpr::CK_NoOp,
3413 Step->Kind == SK_QualificationConversionLValue);
3414 CurInit.release();
3415 CurInit = S.Owned(CurInitExpr);
3416 break;
3417
3418 case SK_ConversionSequence:
Douglas Gregor68647482009-12-16 03:45:30 +00003419 if (S.PerformImplicitConversion(CurInitExpr, Step->Type, Sema::AA_Converting,
Douglas Gregor20093b42009-12-09 23:02:17 +00003420 false, false, *Step->ICS))
3421 return S.ExprError();
3422
3423 CurInit.release();
3424 CurInit = S.Owned(CurInitExpr);
3425 break;
Douglas Gregord87b61f2009-12-10 17:56:55 +00003426
3427 case SK_ListInitialization: {
3428 InitListExpr *InitList = cast<InitListExpr>(CurInitExpr);
3429 QualType Ty = Step->Type;
Douglas Gregorcb57fb92009-12-16 06:35:08 +00003430 if (S.CheckInitList(Entity, InitList, ResultType? *ResultType : Ty))
Douglas Gregord87b61f2009-12-10 17:56:55 +00003431 return S.ExprError();
3432
3433 CurInit.release();
3434 CurInit = S.Owned(InitList);
3435 break;
3436 }
Douglas Gregor51c56d62009-12-14 20:49:26 +00003437
3438 case SK_ConstructorInitialization: {
3439 CXXConstructorDecl *Constructor
John McCallb13b7372010-02-01 03:16:54 +00003440 = cast<CXXConstructorDecl>(Step->Function.getDecl());
3441
Douglas Gregor51c56d62009-12-14 20:49:26 +00003442 // Build a call to the selected constructor.
3443 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(S);
3444 SourceLocation Loc = Kind.getLocation();
3445
3446 // Determine the arguments required to actually perform the constructor
3447 // call.
3448 if (S.CompleteConstructorCall(Constructor, move(Args),
3449 Loc, ConstructorArgs))
3450 return S.ExprError();
3451
3452 // Build the an expression that constructs a temporary.
Douglas Gregord6542d82009-12-22 15:35:07 +00003453 CurInit = S.BuildCXXConstructExpr(Loc, Entity.getType(),
Douglas Gregor745880f2009-12-20 22:01:25 +00003454 Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00003455 move_arg(ConstructorArgs),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003456 ConstructorInitRequiresZeroInit,
3457 Entity.getKind() == InitializedEntity::EK_Base);
Douglas Gregor51c56d62009-12-14 20:49:26 +00003458 if (CurInit.isInvalid())
3459 return S.ExprError();
John McCallb13b7372010-02-01 03:16:54 +00003460
3461 // Only check access if all of that succeeded.
3462 S.CheckConstructorAccess(Loc, Constructor, Step->Function.getAccess());
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003463
3464 bool Elidable
3465 = cast<CXXConstructExpr>((Expr *)CurInit.get())->isElidable();
3466 if (shouldBindAsTemporary(Entity, Elidable))
3467 CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>());
3468
3469 if (!Elidable)
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00003470 CurInit = CopyIfRequiredForEntity(S, Entity, Kind, move(CurInit));
Douglas Gregor51c56d62009-12-14 20:49:26 +00003471 break;
3472 }
Douglas Gregor71d17402009-12-15 00:01:57 +00003473
3474 case SK_ZeroInitialization: {
Douglas Gregor16006c92009-12-16 18:50:27 +00003475 step_iterator NextStep = Step;
3476 ++NextStep;
3477 if (NextStep != StepEnd &&
3478 NextStep->Kind == SK_ConstructorInitialization) {
3479 // The need for zero-initialization is recorded directly into
3480 // the call to the object's constructor within the next step.
3481 ConstructorInitRequiresZeroInit = true;
3482 } else if (Kind.getKind() == InitializationKind::IK_Value &&
3483 S.getLangOptions().CPlusPlus &&
3484 !Kind.isImplicitValueInit()) {
Douglas Gregor71d17402009-12-15 00:01:57 +00003485 CurInit = S.Owned(new (S.Context) CXXZeroInitValueExpr(Step->Type,
3486 Kind.getRange().getBegin(),
3487 Kind.getRange().getEnd()));
Douglas Gregor16006c92009-12-16 18:50:27 +00003488 } else {
Douglas Gregor71d17402009-12-15 00:01:57 +00003489 CurInit = S.Owned(new (S.Context) ImplicitValueInitExpr(Step->Type));
Douglas Gregor16006c92009-12-16 18:50:27 +00003490 }
Douglas Gregor71d17402009-12-15 00:01:57 +00003491 break;
3492 }
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003493
3494 case SK_CAssignment: {
3495 QualType SourceType = CurInitExpr->getType();
3496 Sema::AssignConvertType ConvTy =
3497 S.CheckSingleAssignmentConstraints(Step->Type, CurInitExpr);
Douglas Gregoraa037312009-12-22 07:24:36 +00003498
3499 // If this is a call, allow conversion to a transparent union.
3500 if (ConvTy != Sema::Compatible &&
3501 Entity.getKind() == InitializedEntity::EK_Parameter &&
3502 S.CheckTransparentUnionArgumentConstraints(Step->Type, CurInitExpr)
3503 == Sema::Compatible)
3504 ConvTy = Sema::Compatible;
3505
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003506 if (S.DiagnoseAssignmentResult(ConvTy, Kind.getLocation(),
3507 Step->Type, SourceType,
3508 CurInitExpr, getAssignmentAction(Entity)))
3509 return S.ExprError();
3510
3511 CurInit.release();
3512 CurInit = S.Owned(CurInitExpr);
3513 break;
3514 }
Eli Friedmancfdc81a2009-12-19 08:11:05 +00003515
3516 case SK_StringInit: {
3517 QualType Ty = Step->Type;
3518 CheckStringInit(CurInitExpr, ResultType ? *ResultType : Ty, S);
3519 break;
3520 }
Douglas Gregor20093b42009-12-09 23:02:17 +00003521 }
3522 }
3523
3524 return move(CurInit);
3525}
3526
3527//===----------------------------------------------------------------------===//
3528// Diagnose initialization failures
3529//===----------------------------------------------------------------------===//
3530bool InitializationSequence::Diagnose(Sema &S,
3531 const InitializedEntity &Entity,
3532 const InitializationKind &Kind,
3533 Expr **Args, unsigned NumArgs) {
3534 if (SequenceKind != FailedSequence)
3535 return false;
3536
Douglas Gregord6542d82009-12-22 15:35:07 +00003537 QualType DestType = Entity.getType();
Douglas Gregor20093b42009-12-09 23:02:17 +00003538 switch (Failure) {
3539 case FK_TooManyInitsForReference:
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003540 // FIXME: Customize for the initialized entity?
3541 if (NumArgs == 0)
3542 S.Diag(Kind.getLocation(), diag::err_reference_without_init)
3543 << DestType.getNonReferenceType();
3544 else // FIXME: diagnostic below could be better!
3545 S.Diag(Kind.getLocation(), diag::err_reference_has_multiple_inits)
3546 << SourceRange(Args[0]->getLocStart(), Args[NumArgs - 1]->getLocEnd());
Douglas Gregor20093b42009-12-09 23:02:17 +00003547 break;
3548
3549 case FK_ArrayNeedsInitList:
3550 case FK_ArrayNeedsInitListOrStringLiteral:
3551 S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list)
3552 << (Failure == FK_ArrayNeedsInitListOrStringLiteral);
3553 break;
3554
3555 case FK_AddressOfOverloadFailed:
3556 S.ResolveAddressOfOverloadedFunction(Args[0],
3557 DestType.getNonReferenceType(),
3558 true);
3559 break;
3560
3561 case FK_ReferenceInitOverloadFailed:
Douglas Gregor4a520a22009-12-14 17:27:33 +00003562 case FK_UserConversionOverloadFailed:
Douglas Gregor20093b42009-12-09 23:02:17 +00003563 switch (FailedOverloadResult) {
3564 case OR_Ambiguous:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003565 if (Failure == FK_UserConversionOverloadFailed)
3566 S.Diag(Kind.getLocation(), diag::err_typecheck_ambiguous_condition)
3567 << Args[0]->getType() << DestType
3568 << Args[0]->getSourceRange();
3569 else
3570 S.Diag(Kind.getLocation(), diag::err_ref_init_ambiguous)
3571 << DestType << Args[0]->getType()
3572 << Args[0]->getSourceRange();
3573
John McCallcbce6062010-01-12 07:18:19 +00003574 S.PrintOverloadCandidates(FailedCandidateSet, Sema::OCD_ViableCandidates,
3575 Args, NumArgs);
Douglas Gregor20093b42009-12-09 23:02:17 +00003576 break;
3577
3578 case OR_No_Viable_Function:
3579 S.Diag(Kind.getLocation(), diag::err_typecheck_nonviable_condition)
3580 << Args[0]->getType() << DestType.getNonReferenceType()
3581 << Args[0]->getSourceRange();
John McCallcbce6062010-01-12 07:18:19 +00003582 S.PrintOverloadCandidates(FailedCandidateSet, Sema::OCD_AllCandidates,
3583 Args, NumArgs);
Douglas Gregor20093b42009-12-09 23:02:17 +00003584 break;
3585
3586 case OR_Deleted: {
3587 S.Diag(Kind.getLocation(), diag::err_typecheck_deleted_function)
3588 << Args[0]->getType() << DestType.getNonReferenceType()
3589 << Args[0]->getSourceRange();
3590 OverloadCandidateSet::iterator Best;
3591 OverloadingResult Ovl = S.BestViableFunction(FailedCandidateSet,
3592 Kind.getLocation(),
3593 Best);
3594 if (Ovl == OR_Deleted) {
3595 S.Diag(Best->Function->getLocation(), diag::note_unavailable_here)
3596 << Best->Function->isDeleted();
3597 } else {
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00003598 llvm_unreachable("Inconsistent overload resolution?");
Douglas Gregor20093b42009-12-09 23:02:17 +00003599 }
3600 break;
3601 }
3602
3603 case OR_Success:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00003604 llvm_unreachable("Conversion did not fail!");
Douglas Gregor20093b42009-12-09 23:02:17 +00003605 break;
3606 }
3607 break;
3608
3609 case FK_NonConstLValueReferenceBindingToTemporary:
3610 case FK_NonConstLValueReferenceBindingToUnrelated:
3611 S.Diag(Kind.getLocation(),
3612 Failure == FK_NonConstLValueReferenceBindingToTemporary
3613 ? diag::err_lvalue_reference_bind_to_temporary
3614 : diag::err_lvalue_reference_bind_to_unrelated)
Douglas Gregoref06e242010-01-29 19:39:15 +00003615 << DestType.getNonReferenceType().isVolatileQualified()
Douglas Gregor20093b42009-12-09 23:02:17 +00003616 << DestType.getNonReferenceType()
3617 << Args[0]->getType()
3618 << Args[0]->getSourceRange();
3619 break;
3620
3621 case FK_RValueReferenceBindingToLValue:
3622 S.Diag(Kind.getLocation(), diag::err_lvalue_to_rvalue_ref)
3623 << Args[0]->getSourceRange();
3624 break;
3625
3626 case FK_ReferenceInitDropsQualifiers:
3627 S.Diag(Kind.getLocation(), diag::err_reference_bind_drops_quals)
3628 << DestType.getNonReferenceType()
3629 << Args[0]->getType()
3630 << Args[0]->getSourceRange();
3631 break;
3632
3633 case FK_ReferenceInitFailed:
3634 S.Diag(Kind.getLocation(), diag::err_reference_bind_failed)
3635 << DestType.getNonReferenceType()
3636 << (Args[0]->isLvalue(S.Context) == Expr::LV_Valid)
3637 << Args[0]->getType()
3638 << Args[0]->getSourceRange();
3639 break;
3640
3641 case FK_ConversionFailed:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003642 S.Diag(Kind.getLocation(), diag::err_init_conversion_failed)
3643 << (int)Entity.getKind()
Douglas Gregor20093b42009-12-09 23:02:17 +00003644 << DestType
3645 << (Args[0]->isLvalue(S.Context) == Expr::LV_Valid)
3646 << Args[0]->getType()
3647 << Args[0]->getSourceRange();
Douglas Gregord87b61f2009-12-10 17:56:55 +00003648 break;
3649
3650 case FK_TooManyInitsForScalar: {
Douglas Gregor99a2e602009-12-16 01:38:02 +00003651 SourceRange R;
3652
3653 if (InitListExpr *InitList = dyn_cast<InitListExpr>(Args[0]))
3654 R = SourceRange(InitList->getInit(1)->getLocStart(),
3655 InitList->getLocEnd());
3656 else
3657 R = SourceRange(Args[0]->getLocStart(), Args[NumArgs - 1]->getLocEnd());
Douglas Gregord87b61f2009-12-10 17:56:55 +00003658
3659 S.Diag(Kind.getLocation(), diag::err_excess_initializers)
Douglas Gregor99a2e602009-12-16 01:38:02 +00003660 << /*scalar=*/2 << R;
Douglas Gregord87b61f2009-12-10 17:56:55 +00003661 break;
3662 }
3663
3664 case FK_ReferenceBindingToInitList:
3665 S.Diag(Kind.getLocation(), diag::err_reference_bind_init_list)
3666 << DestType.getNonReferenceType() << Args[0]->getSourceRange();
3667 break;
3668
3669 case FK_InitListBadDestinationType:
3670 S.Diag(Kind.getLocation(), diag::err_init_list_bad_dest_type)
3671 << (DestType->isRecordType()) << DestType << Args[0]->getSourceRange();
3672 break;
Douglas Gregor51c56d62009-12-14 20:49:26 +00003673
3674 case FK_ConstructorOverloadFailed: {
3675 SourceRange ArgsRange;
3676 if (NumArgs)
3677 ArgsRange = SourceRange(Args[0]->getLocStart(),
3678 Args[NumArgs - 1]->getLocEnd());
3679
3680 // FIXME: Using "DestType" for the entity we're printing is probably
3681 // bad.
3682 switch (FailedOverloadResult) {
3683 case OR_Ambiguous:
3684 S.Diag(Kind.getLocation(), diag::err_ovl_ambiguous_init)
3685 << DestType << ArgsRange;
John McCall81201622010-01-08 04:41:39 +00003686 S.PrintOverloadCandidates(FailedCandidateSet,
John McCallcbce6062010-01-12 07:18:19 +00003687 Sema::OCD_ViableCandidates, Args, NumArgs);
Douglas Gregor51c56d62009-12-14 20:49:26 +00003688 break;
3689
3690 case OR_No_Viable_Function:
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003691 if (Kind.getKind() == InitializationKind::IK_Default &&
3692 (Entity.getKind() == InitializedEntity::EK_Base ||
3693 Entity.getKind() == InitializedEntity::EK_Member) &&
3694 isa<CXXConstructorDecl>(S.CurContext)) {
3695 // This is implicit default initialization of a member or
3696 // base within a constructor. If no viable function was
3697 // found, notify the user that she needs to explicitly
3698 // initialize this base/member.
3699 CXXConstructorDecl *Constructor
3700 = cast<CXXConstructorDecl>(S.CurContext);
3701 if (Entity.getKind() == InitializedEntity::EK_Base) {
3702 S.Diag(Kind.getLocation(), diag::err_missing_default_ctor)
3703 << Constructor->isImplicit()
3704 << S.Context.getTypeDeclType(Constructor->getParent())
3705 << /*base=*/0
3706 << Entity.getType();
3707
3708 RecordDecl *BaseDecl
3709 = Entity.getBaseSpecifier()->getType()->getAs<RecordType>()
3710 ->getDecl();
3711 S.Diag(BaseDecl->getLocation(), diag::note_previous_decl)
3712 << S.Context.getTagDeclType(BaseDecl);
3713 } else {
3714 S.Diag(Kind.getLocation(), diag::err_missing_default_ctor)
3715 << Constructor->isImplicit()
3716 << S.Context.getTypeDeclType(Constructor->getParent())
3717 << /*member=*/1
3718 << Entity.getName();
3719 S.Diag(Entity.getDecl()->getLocation(), diag::note_field_decl);
3720
3721 if (const RecordType *Record
3722 = Entity.getType()->getAs<RecordType>())
3723 S.Diag(Record->getDecl()->getLocation(),
3724 diag::note_previous_decl)
3725 << S.Context.getTagDeclType(Record->getDecl());
3726 }
3727 break;
3728 }
3729
Douglas Gregor51c56d62009-12-14 20:49:26 +00003730 S.Diag(Kind.getLocation(), diag::err_ovl_no_viable_function_in_init)
3731 << DestType << ArgsRange;
John McCallcbce6062010-01-12 07:18:19 +00003732 S.PrintOverloadCandidates(FailedCandidateSet, Sema::OCD_AllCandidates,
3733 Args, NumArgs);
Douglas Gregor51c56d62009-12-14 20:49:26 +00003734 break;
3735
3736 case OR_Deleted: {
3737 S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init)
3738 << true << DestType << ArgsRange;
3739 OverloadCandidateSet::iterator Best;
3740 OverloadingResult Ovl = S.BestViableFunction(FailedCandidateSet,
3741 Kind.getLocation(),
3742 Best);
3743 if (Ovl == OR_Deleted) {
3744 S.Diag(Best->Function->getLocation(), diag::note_unavailable_here)
3745 << Best->Function->isDeleted();
3746 } else {
3747 llvm_unreachable("Inconsistent overload resolution?");
3748 }
3749 break;
3750 }
3751
3752 case OR_Success:
3753 llvm_unreachable("Conversion did not fail!");
3754 break;
3755 }
3756 break;
3757 }
Douglas Gregor99a2e602009-12-16 01:38:02 +00003758
3759 case FK_DefaultInitOfConst:
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003760 if (Entity.getKind() == InitializedEntity::EK_Member &&
3761 isa<CXXConstructorDecl>(S.CurContext)) {
3762 // This is implicit default-initialization of a const member in
3763 // a constructor. Complain that it needs to be explicitly
3764 // initialized.
3765 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(S.CurContext);
3766 S.Diag(Kind.getLocation(), diag::err_uninitialized_member_in_ctor)
3767 << Constructor->isImplicit()
3768 << S.Context.getTypeDeclType(Constructor->getParent())
3769 << /*const=*/1
3770 << Entity.getName();
3771 S.Diag(Entity.getDecl()->getLocation(), diag::note_previous_decl)
3772 << Entity.getName();
3773 } else {
3774 S.Diag(Kind.getLocation(), diag::err_default_init_const)
3775 << DestType << (bool)DestType->getAs<RecordType>();
3776 }
Douglas Gregor99a2e602009-12-16 01:38:02 +00003777 break;
Douglas Gregor20093b42009-12-09 23:02:17 +00003778 }
3779
3780 return true;
3781}
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003782
Douglas Gregorde4b1d82010-01-29 19:14:02 +00003783void InitializationSequence::dump(llvm::raw_ostream &OS) const {
3784 switch (SequenceKind) {
3785 case FailedSequence: {
3786 OS << "Failed sequence: ";
3787 switch (Failure) {
3788 case FK_TooManyInitsForReference:
3789 OS << "too many initializers for reference";
3790 break;
3791
3792 case FK_ArrayNeedsInitList:
3793 OS << "array requires initializer list";
3794 break;
3795
3796 case FK_ArrayNeedsInitListOrStringLiteral:
3797 OS << "array requires initializer list or string literal";
3798 break;
3799
3800 case FK_AddressOfOverloadFailed:
3801 OS << "address of overloaded function failed";
3802 break;
3803
3804 case FK_ReferenceInitOverloadFailed:
3805 OS << "overload resolution for reference initialization failed";
3806 break;
3807
3808 case FK_NonConstLValueReferenceBindingToTemporary:
3809 OS << "non-const lvalue reference bound to temporary";
3810 break;
3811
3812 case FK_NonConstLValueReferenceBindingToUnrelated:
3813 OS << "non-const lvalue reference bound to unrelated type";
3814 break;
3815
3816 case FK_RValueReferenceBindingToLValue:
3817 OS << "rvalue reference bound to an lvalue";
3818 break;
3819
3820 case FK_ReferenceInitDropsQualifiers:
3821 OS << "reference initialization drops qualifiers";
3822 break;
3823
3824 case FK_ReferenceInitFailed:
3825 OS << "reference initialization failed";
3826 break;
3827
3828 case FK_ConversionFailed:
3829 OS << "conversion failed";
3830 break;
3831
3832 case FK_TooManyInitsForScalar:
3833 OS << "too many initializers for scalar";
3834 break;
3835
3836 case FK_ReferenceBindingToInitList:
3837 OS << "referencing binding to initializer list";
3838 break;
3839
3840 case FK_InitListBadDestinationType:
3841 OS << "initializer list for non-aggregate, non-scalar type";
3842 break;
3843
3844 case FK_UserConversionOverloadFailed:
3845 OS << "overloading failed for user-defined conversion";
3846 break;
3847
3848 case FK_ConstructorOverloadFailed:
3849 OS << "constructor overloading failed";
3850 break;
3851
3852 case FK_DefaultInitOfConst:
3853 OS << "default initialization of a const variable";
3854 break;
3855 }
3856 OS << '\n';
3857 return;
3858 }
3859
3860 case DependentSequence:
3861 OS << "Dependent sequence: ";
3862 return;
3863
3864 case UserDefinedConversion:
3865 OS << "User-defined conversion sequence: ";
3866 break;
3867
3868 case ConstructorInitialization:
3869 OS << "Constructor initialization sequence: ";
3870 break;
3871
3872 case ReferenceBinding:
3873 OS << "Reference binding: ";
3874 break;
3875
3876 case ListInitialization:
3877 OS << "List initialization: ";
3878 break;
3879
3880 case ZeroInitialization:
3881 OS << "Zero initialization\n";
3882 return;
3883
3884 case NoInitialization:
3885 OS << "No initialization\n";
3886 return;
3887
3888 case StandardConversion:
3889 OS << "Standard conversion: ";
3890 break;
3891
3892 case CAssignment:
3893 OS << "C assignment: ";
3894 break;
3895
3896 case StringInit:
3897 OS << "String initialization: ";
3898 break;
3899 }
3900
3901 for (step_iterator S = step_begin(), SEnd = step_end(); S != SEnd; ++S) {
3902 if (S != step_begin()) {
3903 OS << " -> ";
3904 }
3905
3906 switch (S->Kind) {
3907 case SK_ResolveAddressOfOverloadedFunction:
3908 OS << "resolve address of overloaded function";
3909 break;
3910
3911 case SK_CastDerivedToBaseRValue:
3912 OS << "derived-to-base case (rvalue" << S->Type.getAsString() << ")";
3913 break;
3914
3915 case SK_CastDerivedToBaseLValue:
3916 OS << "derived-to-base case (lvalue" << S->Type.getAsString() << ")";
3917 break;
3918
3919 case SK_BindReference:
3920 OS << "bind reference to lvalue";
3921 break;
3922
3923 case SK_BindReferenceToTemporary:
3924 OS << "bind reference to a temporary";
3925 break;
3926
3927 case SK_UserConversion:
3928 OS << "user-defined conversion via " << S->Function->getNameAsString();
3929 break;
3930
3931 case SK_QualificationConversionRValue:
3932 OS << "qualification conversion (rvalue)";
3933
3934 case SK_QualificationConversionLValue:
3935 OS << "qualification conversion (lvalue)";
3936 break;
3937
3938 case SK_ConversionSequence:
3939 OS << "implicit conversion sequence (";
3940 S->ICS->DebugPrint(); // FIXME: use OS
3941 OS << ")";
3942 break;
3943
3944 case SK_ListInitialization:
3945 OS << "list initialization";
3946 break;
3947
3948 case SK_ConstructorInitialization:
3949 OS << "constructor initialization";
3950 break;
3951
3952 case SK_ZeroInitialization:
3953 OS << "zero initialization";
3954 break;
3955
3956 case SK_CAssignment:
3957 OS << "C assignment";
3958 break;
3959
3960 case SK_StringInit:
3961 OS << "string initialization";
3962 break;
3963 }
3964 }
3965}
3966
3967void InitializationSequence::dump() const {
3968 dump(llvm::errs());
3969}
3970
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003971//===----------------------------------------------------------------------===//
3972// Initialization helper functions
3973//===----------------------------------------------------------------------===//
3974Sema::OwningExprResult
3975Sema::PerformCopyInitialization(const InitializedEntity &Entity,
3976 SourceLocation EqualLoc,
3977 OwningExprResult Init) {
3978 if (Init.isInvalid())
3979 return ExprError();
3980
3981 Expr *InitE = (Expr *)Init.get();
3982 assert(InitE && "No initialization expression?");
3983
3984 if (EqualLoc.isInvalid())
3985 EqualLoc = InitE->getLocStart();
3986
3987 InitializationKind Kind = InitializationKind::CreateCopy(InitE->getLocStart(),
3988 EqualLoc);
3989 InitializationSequence Seq(*this, Entity, Kind, &InitE, 1);
3990 Init.release();
3991 return Seq.Perform(*this, Entity, Kind,
3992 MultiExprArg(*this, (void**)&InitE, 1));
3993}