blob: 993e68bd67301cbdbea47e94084a90e92e6a36e9 [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//
Sebastian Redl5d3d41d2011-09-24 17:47:39 +000010// This file implements semantic analysis for initializers.
Chris Lattnerdd8e0062009-02-24 22:27:37 +000011//
Steve Naroff0cca7492008-05-01 22:18:59 +000012//===----------------------------------------------------------------------===//
13
Douglas Gregore737f502010-08-12 20:07:10 +000014#include "clang/Sema/Initialization.h"
Steve Naroff0cca7492008-05-01 22:18:59 +000015#include "clang/AST/ASTContext.h"
John McCall7cd088e2010-08-24 07:21:54 +000016#include "clang/AST/DeclObjC.h"
Anders Carlsson2078bb92009-05-27 16:10:08 +000017#include "clang/AST/ExprCXX.h"
Chris Lattner79e079d2009-02-24 23:10:27 +000018#include "clang/AST/ExprObjC.h"
Douglas Gregord6542d82009-12-22 15:35:07 +000019#include "clang/AST/TypeLoc.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "clang/Lex/Preprocessor.h"
21#include "clang/Sema/Designator.h"
22#include "clang/Sema/Lookup.h"
23#include "clang/Sema/SemaInternal.h"
Sebastian Redl2b916b82012-01-17 22:49:42 +000024#include "llvm/ADT/APInt.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000025#include "llvm/ADT/SmallString.h"
Douglas Gregor20093b42009-12-09 23:02:17 +000026#include "llvm/Support/ErrorHandling.h"
Jeffrey Yasskin19159132011-07-26 23:20:30 +000027#include "llvm/Support/raw_ostream.h"
Douglas Gregorc34ee5e2009-01-29 00:45:39 +000028#include <map>
Douglas Gregor05c13a32009-01-22 00:58:24 +000029using namespace clang;
Steve Naroff0cca7492008-05-01 22:18:59 +000030
Chris Lattnerdd8e0062009-02-24 22:27:37 +000031//===----------------------------------------------------------------------===//
32// Sema Initialization Checking
33//===----------------------------------------------------------------------===//
34
John McCallce6c9b72011-02-21 07:22:22 +000035static Expr *IsStringInit(Expr *Init, const ArrayType *AT,
36 ASTContext &Context) {
Eli Friedman8718a6a2009-05-29 18:22:49 +000037 if (!isa<ConstantArrayType>(AT) && !isa<IncompleteArrayType>(AT))
38 return 0;
39
Chris Lattner8879e3b2009-02-26 23:26:43 +000040 // See if this is a string literal or @encode.
41 Init = Init->IgnoreParens();
Mike Stump1eb44332009-09-09 15:08:12 +000042
Chris Lattner8879e3b2009-02-26 23:26:43 +000043 // Handle @encode, which is a narrow string.
44 if (isa<ObjCEncodeExpr>(Init) && AT->getElementType()->isCharType())
45 return Init;
46
47 // Otherwise we can only handle string literals.
48 StringLiteral *SL = dyn_cast<StringLiteral>(Init);
Chris Lattner220b6362009-02-26 23:42:47 +000049 if (SL == 0) return 0;
Eli Friedmanbb6415c2009-05-31 10:54:53 +000050
51 QualType ElemTy = Context.getCanonicalType(AT->getElementType());
Douglas Gregor5cee1192011-07-27 05:40:30 +000052
53 switch (SL->getKind()) {
54 case StringLiteral::Ascii:
55 case StringLiteral::UTF8:
56 // char array can be initialized with a narrow string.
57 // Only allow char x[] = "foo"; not char x[] = L"foo";
Eli Friedmanbb6415c2009-05-31 10:54:53 +000058 return ElemTy->isCharType() ? Init : 0;
Douglas Gregor5cee1192011-07-27 05:40:30 +000059 case StringLiteral::UTF16:
60 return ElemTy->isChar16Type() ? Init : 0;
61 case StringLiteral::UTF32:
62 return ElemTy->isChar32Type() ? Init : 0;
63 case StringLiteral::Wide:
64 // wchar_t array can be initialized with a wide string: C99 6.7.8p15 (with
65 // correction from DR343): "An array with element type compatible with a
66 // qualified or unqualified version of wchar_t may be initialized by a wide
67 // string literal, optionally enclosed in braces."
68 if (Context.typesAreCompatible(Context.getWCharType(),
69 ElemTy.getUnqualifiedType()))
70 return Init;
Chris Lattner8879e3b2009-02-26 23:26:43 +000071
Douglas Gregor5cee1192011-07-27 05:40:30 +000072 return 0;
73 }
Mike Stump1eb44332009-09-09 15:08:12 +000074
Douglas Gregor5cee1192011-07-27 05:40:30 +000075 llvm_unreachable("missed a StringLiteral kind?");
Chris Lattnerdd8e0062009-02-24 22:27:37 +000076}
77
John McCallce6c9b72011-02-21 07:22:22 +000078static Expr *IsStringInit(Expr *init, QualType declType, ASTContext &Context) {
79 const ArrayType *arrayType = Context.getAsArrayType(declType);
80 if (!arrayType) return 0;
81
82 return IsStringInit(init, arrayType, Context);
83}
84
Richard Smith30ae1ed2013-05-05 16:40:13 +000085/// Update the type of a string literal, including any surrounding parentheses,
86/// to match the type of the object which it is initializing.
87static void updateStringLiteralType(Expr *E, QualType Ty) {
Richard Smith27f9cf32013-05-06 00:35:47 +000088 while (true) {
Richard Smith30ae1ed2013-05-05 16:40:13 +000089 E->setType(Ty);
Richard Smith27f9cf32013-05-06 00:35:47 +000090 if (isa<StringLiteral>(E) || isa<ObjCEncodeExpr>(E))
91 break;
92 else if (ParenExpr *PE = dyn_cast<ParenExpr>(E))
93 E = PE->getSubExpr();
94 else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E))
95 E = UO->getSubExpr();
96 else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E))
97 E = GSE->getResultExpr();
98 else
99 llvm_unreachable("unexpected expr in string literal init");
Richard Smith30ae1ed2013-05-05 16:40:13 +0000100 }
Richard Smith30ae1ed2013-05-05 16:40:13 +0000101}
102
John McCallfef8b342011-02-21 07:57:55 +0000103static void CheckStringInit(Expr *Str, QualType &DeclT, const ArrayType *AT,
104 Sema &S) {
Chris Lattner79e079d2009-02-24 23:10:27 +0000105 // Get the length of the string as parsed.
106 uint64_t StrLength =
107 cast<ConstantArrayType>(Str->getType())->getSize().getZExtValue();
108
Mike Stump1eb44332009-09-09 15:08:12 +0000109
Chris Lattnerdd8e0062009-02-24 22:27:37 +0000110 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000111 // C99 6.7.8p14. We have an array of character type with unknown size
Chris Lattnerdd8e0062009-02-24 22:27:37 +0000112 // being initialized to a string literal.
Benjamin Kramer65263b42012-08-04 17:00:46 +0000113 llvm::APInt ConstVal(32, StrLength);
Chris Lattnerdd8e0062009-02-24 22:27:37 +0000114 // Return a new array type (C99 6.7.8p22).
John McCall46a617a2009-10-16 00:14:28 +0000115 DeclT = S.Context.getConstantArrayType(IAT->getElementType(),
116 ConstVal,
117 ArrayType::Normal, 0);
Richard Smith30ae1ed2013-05-05 16:40:13 +0000118 updateStringLiteralType(Str, DeclT);
Chris Lattner19da8cd2009-02-24 23:01:39 +0000119 return;
Chris Lattnerdd8e0062009-02-24 22:27:37 +0000120 }
Mike Stump1eb44332009-09-09 15:08:12 +0000121
Eli Friedman8718a6a2009-05-29 18:22:49 +0000122 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Mike Stump1eb44332009-09-09 15:08:12 +0000123
Eli Friedmanbc34b1d2011-04-11 00:23:45 +0000124 // We have an array of character type with known size. However,
Eli Friedman8718a6a2009-05-29 18:22:49 +0000125 // the size may be smaller or larger than the string we are initializing.
126 // FIXME: Avoid truncation for 64-bit length strings.
David Blaikie4e4d0842012-03-11 07:00:24 +0000127 if (S.getLangOpts().CPlusPlus) {
Richard Smith30ae1ed2013-05-05 16:40:13 +0000128 if (StringLiteral *SL = dyn_cast<StringLiteral>(Str->IgnoreParens())) {
Anders Carlssonb8fc45f2011-04-14 00:41:11 +0000129 // For Pascal strings it's OK to strip off the terminating null character,
130 // so the example below is valid:
131 //
132 // unsigned char a[2] = "\pa";
133 if (SL->isPascal())
134 StrLength--;
135 }
136
Eli Friedmanbc34b1d2011-04-11 00:23:45 +0000137 // [dcl.init.string]p2
138 if (StrLength > CAT->getSize().getZExtValue())
Daniel Dunbar96a00142012-03-09 18:35:03 +0000139 S.Diag(Str->getLocStart(),
Eli Friedmanbc34b1d2011-04-11 00:23:45 +0000140 diag::err_initializer_string_for_char_array_too_long)
141 << Str->getSourceRange();
142 } else {
143 // C99 6.7.8p14.
144 if (StrLength-1 > CAT->getSize().getZExtValue())
Daniel Dunbar96a00142012-03-09 18:35:03 +0000145 S.Diag(Str->getLocStart(),
Eli Friedmanbc34b1d2011-04-11 00:23:45 +0000146 diag::warn_initializer_string_for_char_array_too_long)
147 << Str->getSourceRange();
148 }
Mike Stump1eb44332009-09-09 15:08:12 +0000149
Eli Friedman8718a6a2009-05-29 18:22:49 +0000150 // Set the type to the actual size that we are initializing. If we have
151 // something like:
152 // char x[1] = "foo";
153 // then this will set the string literal's type to char[1].
Richard Smith30ae1ed2013-05-05 16:40:13 +0000154 updateStringLiteralType(Str, DeclT);
Chris Lattnerdd8e0062009-02-24 22:27:37 +0000155}
156
Chris Lattnerdd8e0062009-02-24 22:27:37 +0000157//===----------------------------------------------------------------------===//
158// Semantic checking for initializer lists.
159//===----------------------------------------------------------------------===//
160
Douglas Gregor9e80f722009-01-29 01:05:33 +0000161/// @brief Semantic checking for initializer lists.
162///
163/// The InitListChecker class contains a set of routines that each
164/// handle the initialization of a certain kind of entity, e.g.,
165/// arrays, vectors, struct/union types, scalars, etc. The
166/// InitListChecker itself performs a recursive walk of the subobject
167/// structure of the type to be initialized, while stepping through
168/// the initializer list one element at a time. The IList and Index
169/// parameters to each of the Check* routines contain the active
170/// (syntactic) initializer list and the index into that initializer
171/// list that represents the current initializer. Each routine is
172/// responsible for moving that Index forward as it consumes elements.
173///
174/// Each Check* routine also has a StructuredList/StructuredIndex
Abramo Bagnara63e7d252011-01-27 19:55:10 +0000175/// arguments, which contains the current "structured" (semantic)
Douglas Gregor9e80f722009-01-29 01:05:33 +0000176/// initializer list and the index into that initializer list where we
177/// are copying initializers as we map them over to the semantic
178/// list. Once we have completed our recursive walk of the subobject
179/// structure, we will have constructed a full semantic initializer
180/// list.
181///
182/// C99 designators cause changes in the initializer list traversal,
183/// because they make the initialization "jump" into a specific
184/// subobject and then continue the initialization from that
185/// point. CheckDesignatedInitializer() recursively steps into the
186/// designated subobject and manages backing out the recursion to
187/// initialize the subobjects after the one designated.
Chris Lattner8b419b92009-02-24 22:48:58 +0000188namespace {
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000189class InitListChecker {
Chris Lattner08202542009-02-24 22:50:46 +0000190 Sema &SemaRef;
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000191 bool hadError;
Sebastian Redl14b0c192011-09-24 17:48:00 +0000192 bool VerifyOnly; // no diagnostics, no structure building
Sebastian Redlc2235182011-10-16 18:19:28 +0000193 bool AllowBraceElision;
Benjamin Kramera7894162012-02-23 14:48:40 +0000194 llvm::DenseMap<InitListExpr *, InitListExpr *> SyntacticToSemantic;
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000195 InitListExpr *FullyStructuredList;
Mike Stump1eb44332009-09-09 15:08:12 +0000196
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000197 void CheckImplicitInitList(const InitializedEntity &Entity,
Anders Carlsson987dc6a2010-01-23 20:47:59 +0000198 InitListExpr *ParentIList, QualType T,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000199 unsigned &Index, InitListExpr *StructuredList,
Eli Friedman629f1182011-08-23 20:17:13 +0000200 unsigned &StructuredIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000201 void CheckExplicitInitList(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000202 InitListExpr *IList, QualType &T,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000203 unsigned &Index, InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000204 unsigned &StructuredIndex,
205 bool TopLevelObject = false);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000206 void CheckListElementTypes(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000207 InitListExpr *IList, QualType &DeclType,
Mike Stump1eb44332009-09-09 15:08:12 +0000208 bool SubobjectIsDesignatorContext,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000209 unsigned &Index,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000210 InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000211 unsigned &StructuredIndex,
212 bool TopLevelObject = false);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000213 void CheckSubElementType(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000214 InitListExpr *IList, QualType ElemType,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000215 unsigned &Index,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000216 InitListExpr *StructuredList,
217 unsigned &StructuredIndex);
Eli Friedman0c706c22011-09-19 23:17:44 +0000218 void CheckComplexType(const InitializedEntity &Entity,
219 InitListExpr *IList, QualType DeclType,
220 unsigned &Index,
221 InitListExpr *StructuredList,
222 unsigned &StructuredIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000223 void CheckScalarType(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000224 InitListExpr *IList, QualType DeclType,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000225 unsigned &Index,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000226 InitListExpr *StructuredList,
227 unsigned &StructuredIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000228 void CheckReferenceType(const InitializedEntity &Entity,
229 InitListExpr *IList, QualType DeclType,
Douglas Gregor930d8b52009-01-30 22:09:00 +0000230 unsigned &Index,
231 InitListExpr *StructuredList,
232 unsigned &StructuredIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000233 void CheckVectorType(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000234 InitListExpr *IList, QualType DeclType, unsigned &Index,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000235 InitListExpr *StructuredList,
236 unsigned &StructuredIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000237 void CheckStructUnionTypes(const InitializedEntity &Entity,
Anders Carlsson2bbae5d2010-01-23 20:20:40 +0000238 InitListExpr *IList, QualType DeclType,
Mike Stump1eb44332009-09-09 15:08:12 +0000239 RecordDecl::field_iterator Field,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000240 bool SubobjectIsDesignatorContext, unsigned &Index,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000241 InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000242 unsigned &StructuredIndex,
243 bool TopLevelObject = false);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000244 void CheckArrayType(const InitializedEntity &Entity,
Anders Carlsson784f6992010-01-23 20:13:41 +0000245 InitListExpr *IList, QualType &DeclType,
Mike Stump1eb44332009-09-09 15:08:12 +0000246 llvm::APSInt elementIndex,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000247 bool SubobjectIsDesignatorContext, unsigned &Index,
Douglas Gregor9e80f722009-01-29 01:05:33 +0000248 InitListExpr *StructuredList,
249 unsigned &StructuredIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000250 bool CheckDesignatedInitializer(const InitializedEntity &Entity,
Anders Carlsson9a8a70e2010-01-23 22:49:02 +0000251 InitListExpr *IList, DesignatedInitExpr *DIE,
Douglas Gregor71199712009-04-15 04:56:10 +0000252 unsigned DesigIdx,
Mike Stump1eb44332009-09-09 15:08:12 +0000253 QualType &CurrentObjectType,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000254 RecordDecl::field_iterator *NextField,
255 llvm::APSInt *NextElementIndex,
256 unsigned &Index,
257 InitListExpr *StructuredList,
258 unsigned &StructuredIndex,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000259 bool FinishSubobjectInit,
260 bool TopLevelObject);
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000261 InitListExpr *getStructuredSubobjectInit(InitListExpr *IList, unsigned Index,
262 QualType CurrentObjectType,
263 InitListExpr *StructuredList,
264 unsigned StructuredIndex,
265 SourceRange InitRange);
Douglas Gregor9e80f722009-01-29 01:05:33 +0000266 void UpdateStructuredListElement(InitListExpr *StructuredList,
267 unsigned &StructuredIndex,
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000268 Expr *expr);
269 int numArrayElements(QualType DeclType);
270 int numStructUnionElements(QualType DeclType);
Douglas Gregor930d8b52009-01-30 22:09:00 +0000271
Douglas Gregord6d37de2009-12-22 00:05:34 +0000272 void FillInValueInitForField(unsigned Init, FieldDecl *Field,
273 const InitializedEntity &ParentEntity,
274 InitListExpr *ILE, bool &RequiresSecondPass);
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000275 void FillInValueInitializations(const InitializedEntity &Entity,
276 InitListExpr *ILE, bool &RequiresSecondPass);
Eli Friedmanf40fd6b2011-08-23 22:24:57 +0000277 bool CheckFlexibleArrayInit(const InitializedEntity &Entity,
278 Expr *InitExpr, FieldDecl *Field,
279 bool TopLevelObject);
Sebastian Redl3ff5c862011-10-16 18:19:20 +0000280 void CheckValueInitializable(const InitializedEntity &Entity);
281
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000282public:
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000283 InitListChecker(Sema &S, const InitializedEntity &Entity,
Sebastian Redlc2235182011-10-16 18:19:28 +0000284 InitListExpr *IL, QualType &T, bool VerifyOnly,
285 bool AllowBraceElision);
Douglas Gregorc34ee5e2009-01-29 00:45:39 +0000286 bool HadError() { return hadError; }
287
288 // @brief Retrieves the fully-structured initializer list used for
289 // semantic analysis and code generation.
290 InitListExpr *getFullyStructuredList() const { return FullyStructuredList; }
291};
Chris Lattner8b419b92009-02-24 22:48:58 +0000292} // end anonymous namespace
Chris Lattner68355a52009-01-29 05:10:57 +0000293
Sebastian Redl3ff5c862011-10-16 18:19:20 +0000294void InitListChecker::CheckValueInitializable(const InitializedEntity &Entity) {
295 assert(VerifyOnly &&
296 "CheckValueInitializable is only inteded for verification mode.");
297
298 SourceLocation Loc;
299 InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
300 true);
Dmitri Gribenko62ed8892013-05-05 20:40:26 +0000301 InitializationSequence InitSeq(SemaRef, Entity, Kind, None);
Sebastian Redl3ff5c862011-10-16 18:19:20 +0000302 if (InitSeq.Failed())
303 hadError = true;
304}
305
Douglas Gregord6d37de2009-12-22 00:05:34 +0000306void InitListChecker::FillInValueInitForField(unsigned Init, FieldDecl *Field,
307 const InitializedEntity &ParentEntity,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000308 InitListExpr *ILE,
Douglas Gregord6d37de2009-12-22 00:05:34 +0000309 bool &RequiresSecondPass) {
Daniel Dunbar96a00142012-03-09 18:35:03 +0000310 SourceLocation Loc = ILE->getLocStart();
Douglas Gregord6d37de2009-12-22 00:05:34 +0000311 unsigned NumInits = ILE->getNumInits();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000312 InitializedEntity MemberEntity
Douglas Gregord6d37de2009-12-22 00:05:34 +0000313 = InitializedEntity::InitializeMember(Field, &ParentEntity);
314 if (Init >= NumInits || !ILE->getInit(Init)) {
Richard Smithc3bf52c2013-04-20 22:23:05 +0000315 // If there's no explicit initializer but we have a default initializer, use
316 // that. This only happens in C++1y, since classes with default
317 // initializers are not aggregates in C++11.
318 if (Field->hasInClassInitializer()) {
319 Expr *DIE = CXXDefaultInitExpr::Create(SemaRef.Context,
320 ILE->getRBraceLoc(), Field);
321 if (Init < NumInits)
322 ILE->setInit(Init, DIE);
323 else {
324 ILE->updateInit(SemaRef.Context, Init, DIE);
325 RequiresSecondPass = true;
326 }
327 return;
328 }
329
Douglas Gregord6d37de2009-12-22 00:05:34 +0000330 // FIXME: We probably don't need to handle references
331 // specially here, since value-initialization of references is
332 // handled in InitializationSequence.
333 if (Field->getType()->isReferenceType()) {
334 // C++ [dcl.init.aggr]p9:
335 // If an incomplete or empty initializer-list leaves a
336 // member of reference type uninitialized, the program is
337 // ill-formed.
338 SemaRef.Diag(Loc, diag::err_init_reference_member_uninitialized)
339 << Field->getType()
340 << ILE->getSyntacticForm()->getSourceRange();
341 SemaRef.Diag(Field->getLocation(),
342 diag::note_uninit_reference_member);
343 hadError = true;
344 return;
345 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000346
Douglas Gregord6d37de2009-12-22 00:05:34 +0000347 InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
348 true);
Dmitri Gribenko62ed8892013-05-05 20:40:26 +0000349 InitializationSequence InitSeq(SemaRef, MemberEntity, Kind, None);
Douglas Gregord6d37de2009-12-22 00:05:34 +0000350 if (!InitSeq) {
Dmitri Gribenko55431692013-05-05 00:41:58 +0000351 InitSeq.Diagnose(SemaRef, MemberEntity, Kind, None);
Douglas Gregord6d37de2009-12-22 00:05:34 +0000352 hadError = true;
353 return;
354 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000355
John McCall60d7b3a2010-08-24 06:29:42 +0000356 ExprResult MemberInit
Dmitri Gribenko62ed8892013-05-05 20:40:26 +0000357 = InitSeq.Perform(SemaRef, MemberEntity, Kind, None);
Douglas Gregord6d37de2009-12-22 00:05:34 +0000358 if (MemberInit.isInvalid()) {
359 hadError = true;
360 return;
361 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000362
Douglas Gregord6d37de2009-12-22 00:05:34 +0000363 if (hadError) {
364 // Do nothing
365 } else if (Init < NumInits) {
366 ILE->setInit(Init, MemberInit.takeAs<Expr>());
Sebastian Redl7491c492011-06-05 13:59:11 +0000367 } else if (InitSeq.isConstructorInitialization()) {
Douglas Gregord6d37de2009-12-22 00:05:34 +0000368 // Value-initialization requires a constructor call, so
369 // extend the initializer list to include the constructor
370 // call and make a note that we'll need to take another pass
371 // through the initializer list.
Ted Kremenek709210f2010-04-13 23:39:13 +0000372 ILE->updateInit(SemaRef.Context, Init, MemberInit.takeAs<Expr>());
Douglas Gregord6d37de2009-12-22 00:05:34 +0000373 RequiresSecondPass = true;
374 }
375 } else if (InitListExpr *InnerILE
376 = dyn_cast<InitListExpr>(ILE->getInit(Init)))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000377 FillInValueInitializations(MemberEntity, InnerILE,
378 RequiresSecondPass);
Douglas Gregord6d37de2009-12-22 00:05:34 +0000379}
380
Douglas Gregor4c678342009-01-28 21:54:33 +0000381/// Recursively replaces NULL values within the given initializer list
382/// with expressions that perform value-initialization of the
383/// appropriate type.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000384void
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000385InitListChecker::FillInValueInitializations(const InitializedEntity &Entity,
386 InitListExpr *ILE,
387 bool &RequiresSecondPass) {
Mike Stump1eb44332009-09-09 15:08:12 +0000388 assert((ILE->getType() != SemaRef.Context.VoidTy) &&
Douglas Gregor930d8b52009-01-30 22:09:00 +0000389 "Should not have void type");
Daniel Dunbar96a00142012-03-09 18:35:03 +0000390 SourceLocation Loc = ILE->getLocStart();
Douglas Gregor87fd7032009-02-02 17:43:21 +0000391 if (ILE->getSyntacticForm())
Daniel Dunbar96a00142012-03-09 18:35:03 +0000392 Loc = ILE->getSyntacticForm()->getLocStart();
Mike Stump1eb44332009-09-09 15:08:12 +0000393
Ted Kremenek6217b802009-07-29 21:53:49 +0000394 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) {
Richard Smithc3bf52c2013-04-20 22:23:05 +0000395 const RecordDecl *RDecl = RType->getDecl();
396 if (RDecl->isUnion() && ILE->getInitializedFieldInUnion())
Douglas Gregord6d37de2009-12-22 00:05:34 +0000397 FillInValueInitForField(0, ILE->getInitializedFieldInUnion(),
398 Entity, ILE, RequiresSecondPass);
Richard Smithc3bf52c2013-04-20 22:23:05 +0000399 else if (RDecl->isUnion() && isa<CXXRecordDecl>(RDecl) &&
400 cast<CXXRecordDecl>(RDecl)->hasInClassInitializer()) {
401 for (RecordDecl::field_iterator Field = RDecl->field_begin(),
402 FieldEnd = RDecl->field_end();
403 Field != FieldEnd; ++Field) {
404 if (Field->hasInClassInitializer()) {
405 FillInValueInitForField(0, *Field, Entity, ILE, RequiresSecondPass);
406 break;
407 }
408 }
409 } else {
Douglas Gregord6d37de2009-12-22 00:05:34 +0000410 unsigned Init = 0;
Richard Smithc3bf52c2013-04-20 22:23:05 +0000411 for (RecordDecl::field_iterator Field = RDecl->field_begin(),
412 FieldEnd = RDecl->field_end();
Douglas Gregord6d37de2009-12-22 00:05:34 +0000413 Field != FieldEnd; ++Field) {
414 if (Field->isUnnamedBitfield())
415 continue;
Douglas Gregor4c678342009-01-28 21:54:33 +0000416
Douglas Gregord6d37de2009-12-22 00:05:34 +0000417 if (hadError)
Douglas Gregor87fd7032009-02-02 17:43:21 +0000418 return;
Douglas Gregord6d37de2009-12-22 00:05:34 +0000419
David Blaikie581deb32012-06-06 20:45:41 +0000420 FillInValueInitForField(Init, *Field, Entity, ILE, RequiresSecondPass);
Douglas Gregord6d37de2009-12-22 00:05:34 +0000421 if (hadError)
Douglas Gregor87fd7032009-02-02 17:43:21 +0000422 return;
Douglas Gregor87fd7032009-02-02 17:43:21 +0000423
Douglas Gregord6d37de2009-12-22 00:05:34 +0000424 ++Init;
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000425
Douglas Gregord6d37de2009-12-22 00:05:34 +0000426 // Only look at the first initialization of a union.
Richard Smithc3bf52c2013-04-20 22:23:05 +0000427 if (RDecl->isUnion())
Douglas Gregord6d37de2009-12-22 00:05:34 +0000428 break;
429 }
Douglas Gregor4c678342009-01-28 21:54:33 +0000430 }
431
432 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000433 }
Douglas Gregor4c678342009-01-28 21:54:33 +0000434
435 QualType ElementType;
Mike Stump1eb44332009-09-09 15:08:12 +0000436
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000437 InitializedEntity ElementEntity = Entity;
Douglas Gregor87fd7032009-02-02 17:43:21 +0000438 unsigned NumInits = ILE->getNumInits();
439 unsigned NumElements = NumInits;
Chris Lattner08202542009-02-24 22:50:46 +0000440 if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) {
Douglas Gregor4c678342009-01-28 21:54:33 +0000441 ElementType = AType->getElementType();
Douglas Gregor87fd7032009-02-02 17:43:21 +0000442 if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType))
443 NumElements = CAType->getSize().getZExtValue();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000444 ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context,
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000445 0, Entity);
John McCall183700f2009-09-21 23:43:11 +0000446 } else if (const VectorType *VType = ILE->getType()->getAs<VectorType>()) {
Douglas Gregor4c678342009-01-28 21:54:33 +0000447 ElementType = VType->getElementType();
Douglas Gregor87fd7032009-02-02 17:43:21 +0000448 NumElements = VType->getNumElements();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000449 ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context,
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000450 0, Entity);
Mike Stump1eb44332009-09-09 15:08:12 +0000451 } else
Douglas Gregor4c678342009-01-28 21:54:33 +0000452 ElementType = ILE->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000453
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000454
Douglas Gregor87fd7032009-02-02 17:43:21 +0000455 for (unsigned Init = 0; Init != NumElements; ++Init) {
Douglas Gregor16006c92009-12-16 18:50:27 +0000456 if (hadError)
457 return;
458
Anders Carlssond3d824d2010-01-23 04:34:47 +0000459 if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement ||
460 ElementEntity.getKind() == InitializedEntity::EK_VectorElement)
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000461 ElementEntity.setElementIndex(Init);
462
Argyrios Kyrtzidis21f77cd2011-10-21 23:02:22 +0000463 Expr *InitExpr = (Init < NumInits ? ILE->getInit(Init) : 0);
464 if (!InitExpr && !ILE->hasArrayFiller()) {
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000465 InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
466 true);
Dmitri Gribenko62ed8892013-05-05 20:40:26 +0000467 InitializationSequence InitSeq(SemaRef, ElementEntity, Kind, None);
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000468 if (!InitSeq) {
Dmitri Gribenko55431692013-05-05 00:41:58 +0000469 InitSeq.Diagnose(SemaRef, ElementEntity, Kind, None);
Douglas Gregor87fd7032009-02-02 17:43:21 +0000470 hadError = true;
471 return;
472 }
473
John McCall60d7b3a2010-08-24 06:29:42 +0000474 ExprResult ElementInit
Dmitri Gribenko62ed8892013-05-05 20:40:26 +0000475 = InitSeq.Perform(SemaRef, ElementEntity, Kind, None);
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000476 if (ElementInit.isInvalid()) {
Douglas Gregor16006c92009-12-16 18:50:27 +0000477 hadError = true;
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000478 return;
479 }
480
481 if (hadError) {
482 // Do nothing
483 } else if (Init < NumInits) {
Argyrios Kyrtzidis3e8dc2a2011-04-21 20:03:38 +0000484 // For arrays, just set the expression used for value-initialization
485 // of the "holes" in the array.
486 if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement)
487 ILE->setArrayFiller(ElementInit.takeAs<Expr>());
488 else
489 ILE->setInit(Init, ElementInit.takeAs<Expr>());
Argyrios Kyrtzidis4423ac02011-04-21 00:27:41 +0000490 } else {
491 // For arrays, just set the expression used for value-initialization
492 // of the rest of elements and exit.
493 if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement) {
494 ILE->setArrayFiller(ElementInit.takeAs<Expr>());
495 return;
496 }
497
Sebastian Redl7491c492011-06-05 13:59:11 +0000498 if (InitSeq.isConstructorInitialization()) {
Argyrios Kyrtzidis4423ac02011-04-21 00:27:41 +0000499 // Value-initialization requires a constructor call, so
500 // extend the initializer list to include the constructor
501 // call and make a note that we'll need to take another pass
502 // through the initializer list.
503 ILE->updateInit(SemaRef.Context, Init, ElementInit.takeAs<Expr>());
504 RequiresSecondPass = true;
505 }
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000506 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000507 } else if (InitListExpr *InnerILE
Argyrios Kyrtzidis21f77cd2011-10-21 23:02:22 +0000508 = dyn_cast_or_null<InitListExpr>(InitExpr))
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000509 FillInValueInitializations(ElementEntity, InnerILE, RequiresSecondPass);
Douglas Gregor4c678342009-01-28 21:54:33 +0000510 }
511}
512
Chris Lattner68355a52009-01-29 05:10:57 +0000513
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000514InitListChecker::InitListChecker(Sema &S, const InitializedEntity &Entity,
Sebastian Redl14b0c192011-09-24 17:48:00 +0000515 InitListExpr *IL, QualType &T,
Sebastian Redlc2235182011-10-16 18:19:28 +0000516 bool VerifyOnly, bool AllowBraceElision)
Richard Smithb6f8d282011-12-20 04:00:21 +0000517 : SemaRef(S), VerifyOnly(VerifyOnly), AllowBraceElision(AllowBraceElision) {
Steve Naroff0cca7492008-05-01 22:18:59 +0000518 hadError = false;
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000519
Eli Friedmanb85f7072008-05-19 19:16:24 +0000520 unsigned newIndex = 0;
Douglas Gregor4c678342009-01-28 21:54:33 +0000521 unsigned newStructuredIndex = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000522 FullyStructuredList
Douglas Gregored8a93d2009-03-01 17:12:46 +0000523 = getStructuredSubobjectInit(IL, newIndex, T, 0, 0, IL->getSourceRange());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000524 CheckExplicitInitList(Entity, IL, T, newIndex,
Anders Carlsson46f46592010-01-23 19:55:29 +0000525 FullyStructuredList, newStructuredIndex,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000526 /*TopLevelObject=*/true);
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000527
Sebastian Redl14b0c192011-09-24 17:48:00 +0000528 if (!hadError && !VerifyOnly) {
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000529 bool RequiresSecondPass = false;
530 FillInValueInitializations(Entity, FullyStructuredList, RequiresSecondPass);
Douglas Gregor16006c92009-12-16 18:50:27 +0000531 if (RequiresSecondPass && !hadError)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000532 FillInValueInitializations(Entity, FullyStructuredList,
Douglas Gregorcb57fb92009-12-16 06:35:08 +0000533 RequiresSecondPass);
534 }
Steve Naroff0cca7492008-05-01 22:18:59 +0000535}
536
537int InitListChecker::numArrayElements(QualType DeclType) {
Eli Friedman638e1442008-05-25 13:22:35 +0000538 // FIXME: use a proper constant
539 int maxElements = 0x7FFFFFFF;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000540 if (const ConstantArrayType *CAT =
Chris Lattner08202542009-02-24 22:50:46 +0000541 SemaRef.Context.getAsConstantArrayType(DeclType)) {
Steve Naroff0cca7492008-05-01 22:18:59 +0000542 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
543 }
544 return maxElements;
545}
546
547int InitListChecker::numStructUnionElements(QualType DeclType) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000548 RecordDecl *structDecl = DeclType->getAs<RecordType>()->getDecl();
Douglas Gregor4c678342009-01-28 21:54:33 +0000549 int InitializableMembers = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000550 for (RecordDecl::field_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000551 Field = structDecl->field_begin(),
552 FieldEnd = structDecl->field_end();
Douglas Gregor4c678342009-01-28 21:54:33 +0000553 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +0000554 if (!Field->isUnnamedBitfield())
Douglas Gregor4c678342009-01-28 21:54:33 +0000555 ++InitializableMembers;
556 }
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000557 if (structDecl->isUnion())
Eli Friedmanf84eda32008-05-25 14:03:31 +0000558 return std::min(InitializableMembers, 1);
559 return InitializableMembers - structDecl->hasFlexibleArrayMember();
Steve Naroff0cca7492008-05-01 22:18:59 +0000560}
561
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000562void InitListChecker::CheckImplicitInitList(const InitializedEntity &Entity,
Anders Carlsson987dc6a2010-01-23 20:47:59 +0000563 InitListExpr *ParentIList,
Douglas Gregor4c678342009-01-28 21:54:33 +0000564 QualType T, unsigned &Index,
565 InitListExpr *StructuredList,
Eli Friedman629f1182011-08-23 20:17:13 +0000566 unsigned &StructuredIndex) {
Steve Naroff0cca7492008-05-01 22:18:59 +0000567 int maxElements = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000568
Steve Naroff0cca7492008-05-01 22:18:59 +0000569 if (T->isArrayType())
570 maxElements = numArrayElements(T);
Douglas Gregorfb87b892010-04-26 21:31:17 +0000571 else if (T->isRecordType())
Steve Naroff0cca7492008-05-01 22:18:59 +0000572 maxElements = numStructUnionElements(T);
Eli Friedmanb85f7072008-05-19 19:16:24 +0000573 else if (T->isVectorType())
John McCall183700f2009-09-21 23:43:11 +0000574 maxElements = T->getAs<VectorType>()->getNumElements();
Steve Naroff0cca7492008-05-01 22:18:59 +0000575 else
David Blaikieb219cfc2011-09-23 05:06:16 +0000576 llvm_unreachable("CheckImplicitInitList(): Illegal type");
Eli Friedmanb85f7072008-05-19 19:16:24 +0000577
Eli Friedman402256f2008-05-25 13:49:22 +0000578 if (maxElements == 0) {
Sebastian Redl14b0c192011-09-24 17:48:00 +0000579 if (!VerifyOnly)
580 SemaRef.Diag(ParentIList->getInit(Index)->getLocStart(),
581 diag::err_implicit_empty_initializer);
Douglas Gregor4c678342009-01-28 21:54:33 +0000582 ++Index;
Eli Friedman402256f2008-05-25 13:49:22 +0000583 hadError = true;
584 return;
585 }
586
Douglas Gregor4c678342009-01-28 21:54:33 +0000587 // Build a structured initializer list corresponding to this subobject.
588 InitListExpr *StructuredSubobjectInitList
Mike Stump1eb44332009-09-09 15:08:12 +0000589 = getStructuredSubobjectInit(ParentIList, Index, T, StructuredList,
590 StructuredIndex,
Daniel Dunbar96a00142012-03-09 18:35:03 +0000591 SourceRange(ParentIList->getInit(Index)->getLocStart(),
Douglas Gregored8a93d2009-03-01 17:12:46 +0000592 ParentIList->getSourceRange().getEnd()));
Douglas Gregor4c678342009-01-28 21:54:33 +0000593 unsigned StructuredSubobjectInitIndex = 0;
Eli Friedmanb85f7072008-05-19 19:16:24 +0000594
Douglas Gregor4c678342009-01-28 21:54:33 +0000595 // Check the element types and build the structural subobject.
Douglas Gregor87fd7032009-02-02 17:43:21 +0000596 unsigned StartIndex = Index;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000597 CheckListElementTypes(Entity, ParentIList, T,
Anders Carlsson987dc6a2010-01-23 20:47:59 +0000598 /*SubobjectIsDesignatorContext=*/false, Index,
Mike Stump1eb44332009-09-09 15:08:12 +0000599 StructuredSubobjectInitList,
Eli Friedman629f1182011-08-23 20:17:13 +0000600 StructuredSubobjectInitIndex);
Sebastian Redlc2235182011-10-16 18:19:28 +0000601
602 if (VerifyOnly) {
603 if (!AllowBraceElision && (T->isArrayType() || T->isRecordType()))
604 hadError = true;
605 } else {
Sebastian Redl14b0c192011-09-24 17:48:00 +0000606 StructuredSubobjectInitList->setType(T);
Douglas Gregora6457962009-03-20 00:32:56 +0000607
Sebastian Redlc2235182011-10-16 18:19:28 +0000608 unsigned EndIndex = (Index == StartIndex? StartIndex : Index - 1);
Sebastian Redl14b0c192011-09-24 17:48:00 +0000609 // Update the structured sub-object initializer so that it's ending
610 // range corresponds with the end of the last initializer it used.
611 if (EndIndex < ParentIList->getNumInits()) {
612 SourceLocation EndLoc
613 = ParentIList->getInit(EndIndex)->getSourceRange().getEnd();
614 StructuredSubobjectInitList->setRBraceLoc(EndLoc);
615 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000616
Sebastian Redlc2235182011-10-16 18:19:28 +0000617 // Complain about missing braces.
Sebastian Redl14b0c192011-09-24 17:48:00 +0000618 if (T->isArrayType() || T->isRecordType()) {
619 SemaRef.Diag(StructuredSubobjectInitList->getLocStart(),
Sebastian Redlc2235182011-10-16 18:19:28 +0000620 AllowBraceElision ? diag::warn_missing_braces :
621 diag::err_missing_braces)
Sebastian Redl14b0c192011-09-24 17:48:00 +0000622 << StructuredSubobjectInitList->getSourceRange()
623 << FixItHint::CreateInsertion(
624 StructuredSubobjectInitList->getLocStart(), "{")
625 << FixItHint::CreateInsertion(
626 SemaRef.PP.getLocForEndOfToken(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000627 StructuredSubobjectInitList->getLocEnd()),
Sebastian Redl14b0c192011-09-24 17:48:00 +0000628 "}");
Sebastian Redlc2235182011-10-16 18:19:28 +0000629 if (!AllowBraceElision)
630 hadError = true;
Sebastian Redl14b0c192011-09-24 17:48:00 +0000631 }
Tanya Lattner1e1d3962010-03-07 04:17:15 +0000632 }
Steve Naroff0cca7492008-05-01 22:18:59 +0000633}
634
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000635void InitListChecker::CheckExplicitInitList(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000636 InitListExpr *IList, QualType &T,
Douglas Gregor4c678342009-01-28 21:54:33 +0000637 unsigned &Index,
638 InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000639 unsigned &StructuredIndex,
640 bool TopLevelObject) {
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000641 assert(IList->isExplicit() && "Illegal Implicit InitListExpr");
Sebastian Redl14b0c192011-09-24 17:48:00 +0000642 if (!VerifyOnly) {
643 SyntacticToSemantic[IList] = StructuredList;
644 StructuredList->setSyntacticForm(IList);
645 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000646 CheckListElementTypes(Entity, IList, T, /*SubobjectIsDesignatorContext=*/true,
Anders Carlsson46f46592010-01-23 19:55:29 +0000647 Index, StructuredList, StructuredIndex, TopLevelObject);
Sebastian Redl14b0c192011-09-24 17:48:00 +0000648 if (!VerifyOnly) {
Eli Friedman5c89c392012-02-23 02:25:10 +0000649 QualType ExprTy = T;
650 if (!ExprTy->isArrayType())
651 ExprTy = ExprTy.getNonLValueExprType(SemaRef.Context);
Sebastian Redl14b0c192011-09-24 17:48:00 +0000652 IList->setType(ExprTy);
653 StructuredList->setType(ExprTy);
654 }
Eli Friedman638e1442008-05-25 13:22:35 +0000655 if (hadError)
656 return;
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000657
Eli Friedman638e1442008-05-25 13:22:35 +0000658 if (Index < IList->getNumInits()) {
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000659 // We have leftover initializers
Sebastian Redl14b0c192011-09-24 17:48:00 +0000660 if (VerifyOnly) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000661 if (SemaRef.getLangOpts().CPlusPlus ||
662 (SemaRef.getLangOpts().OpenCL &&
Sebastian Redl14b0c192011-09-24 17:48:00 +0000663 IList->getType()->isVectorType())) {
664 hadError = true;
665 }
666 return;
667 }
668
Eli Friedmane5408582009-05-29 20:20:05 +0000669 if (StructuredIndex == 1 &&
670 IsStringInit(StructuredList->getInit(0), T, SemaRef.Context)) {
Douglas Gregor7c53ca62009-02-18 22:23:55 +0000671 unsigned DK = diag::warn_excess_initializers_in_char_array_initializer;
David Blaikie4e4d0842012-03-11 07:00:24 +0000672 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregor7c53ca62009-02-18 22:23:55 +0000673 DK = diag::err_excess_initializers_in_char_array_initializer;
Eli Friedmane5408582009-05-29 20:20:05 +0000674 hadError = true;
675 }
Eli Friedmanbb504d32008-05-19 20:12:18 +0000676 // Special-case
Chris Lattner08202542009-02-24 22:50:46 +0000677 SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000678 << IList->getInit(Index)->getSourceRange();
Eli Friedmand8dc2102008-05-20 05:25:56 +0000679 } else if (!T->isIncompleteType()) {
Douglas Gregorb574e562009-01-30 22:26:29 +0000680 // Don't complain for incomplete types, since we'll get an error
681 // elsewhere
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000682 QualType CurrentObjectType = StructuredList->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000683 int initKind =
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000684 CurrentObjectType->isArrayType()? 0 :
685 CurrentObjectType->isVectorType()? 1 :
686 CurrentObjectType->isScalarType()? 2 :
687 CurrentObjectType->isUnionType()? 3 :
688 4;
Douglas Gregor7c53ca62009-02-18 22:23:55 +0000689
690 unsigned DK = diag::warn_excess_initializers;
David Blaikie4e4d0842012-03-11 07:00:24 +0000691 if (SemaRef.getLangOpts().CPlusPlus) {
Eli Friedmane5408582009-05-29 20:20:05 +0000692 DK = diag::err_excess_initializers;
693 hadError = true;
694 }
David Blaikie4e4d0842012-03-11 07:00:24 +0000695 if (SemaRef.getLangOpts().OpenCL && initKind == 1) {
Nate Begeman08634522009-07-07 21:53:06 +0000696 DK = diag::err_excess_initializers;
697 hadError = true;
698 }
Douglas Gregor7c53ca62009-02-18 22:23:55 +0000699
Chris Lattner08202542009-02-24 22:50:46 +0000700 SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000701 << initKind << IList->getInit(Index)->getSourceRange();
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000702 }
703 }
Eli Friedmancda25a92008-05-19 20:20:43 +0000704
Sebastian Redl14b0c192011-09-24 17:48:00 +0000705 if (!VerifyOnly && T->isScalarType() && IList->getNumInits() == 1 &&
706 !TopLevelObject)
Chris Lattner08202542009-02-24 22:50:46 +0000707 SemaRef.Diag(IList->getLocStart(), diag::warn_braces_around_scalar_init)
Douglas Gregora3a83512009-04-01 23:51:29 +0000708 << IList->getSourceRange()
Douglas Gregor849b2432010-03-31 17:46:05 +0000709 << FixItHint::CreateRemoval(IList->getLocStart())
710 << FixItHint::CreateRemoval(IList->getLocEnd());
Steve Naroff0cca7492008-05-01 22:18:59 +0000711}
712
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000713void InitListChecker::CheckListElementTypes(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000714 InitListExpr *IList,
Mike Stump1eb44332009-09-09 15:08:12 +0000715 QualType &DeclType,
Douglas Gregor87f55cf2009-01-22 23:26:18 +0000716 bool SubobjectIsDesignatorContext,
Douglas Gregor4c678342009-01-28 21:54:33 +0000717 unsigned &Index,
718 InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +0000719 unsigned &StructuredIndex,
720 bool TopLevelObject) {
Eli Friedman0c706c22011-09-19 23:17:44 +0000721 if (DeclType->isAnyComplexType() && SubobjectIsDesignatorContext) {
722 // Explicitly braced initializer for complex type can be real+imaginary
723 // parts.
724 CheckComplexType(Entity, IList, DeclType, Index,
725 StructuredList, StructuredIndex);
726 } else if (DeclType->isScalarType()) {
Anders Carlsson46f46592010-01-23 19:55:29 +0000727 CheckScalarType(Entity, IList, DeclType, Index,
728 StructuredList, StructuredIndex);
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000729 } else if (DeclType->isVectorType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000730 CheckVectorType(Entity, IList, DeclType, Index,
Anders Carlsson46f46592010-01-23 19:55:29 +0000731 StructuredList, StructuredIndex);
Richard Smith20599392012-07-07 08:35:56 +0000732 } else if (DeclType->isRecordType()) {
733 assert(DeclType->isAggregateType() &&
734 "non-aggregate records should be handed in CheckSubElementType");
735 RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
736 CheckStructUnionTypes(Entity, IList, DeclType, RD->field_begin(),
737 SubobjectIsDesignatorContext, Index,
738 StructuredList, StructuredIndex,
739 TopLevelObject);
740 } else if (DeclType->isArrayType()) {
741 llvm::APSInt Zero(
742 SemaRef.Context.getTypeSize(SemaRef.Context.getSizeType()),
743 false);
744 CheckArrayType(Entity, IList, DeclType, Zero,
745 SubobjectIsDesignatorContext, Index,
746 StructuredList, StructuredIndex);
Steve Naroff61353522008-08-10 16:05:48 +0000747 } else if (DeclType->isVoidType() || DeclType->isFunctionType()) {
748 // This type is invalid, issue a diagnostic.
Douglas Gregor4c678342009-01-28 21:54:33 +0000749 ++Index;
Sebastian Redl14b0c192011-09-24 17:48:00 +0000750 if (!VerifyOnly)
751 SemaRef.Diag(IList->getLocStart(), diag::err_illegal_initializer_type)
752 << DeclType;
Eli Friedmand8dc2102008-05-20 05:25:56 +0000753 hadError = true;
Douglas Gregor930d8b52009-01-30 22:09:00 +0000754 } else if (DeclType->isReferenceType()) {
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000755 CheckReferenceType(Entity, IList, DeclType, Index,
756 StructuredList, StructuredIndex);
John McCallc12c5bb2010-05-15 11:32:37 +0000757 } else if (DeclType->isObjCObjectType()) {
Sebastian Redl14b0c192011-09-24 17:48:00 +0000758 if (!VerifyOnly)
759 SemaRef.Diag(IList->getLocStart(), diag::err_init_objc_class)
760 << DeclType;
Douglas Gregor4d9e7382010-05-03 18:24:37 +0000761 hadError = true;
Steve Naroff0cca7492008-05-01 22:18:59 +0000762 } else {
Sebastian Redl14b0c192011-09-24 17:48:00 +0000763 if (!VerifyOnly)
764 SemaRef.Diag(IList->getLocStart(), diag::err_illegal_initializer_type)
765 << DeclType;
Douglas Gregor4d9e7382010-05-03 18:24:37 +0000766 hadError = true;
Steve Naroff0cca7492008-05-01 22:18:59 +0000767 }
768}
769
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000770void InitListChecker::CheckSubElementType(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000771 InitListExpr *IList,
Mike Stump1eb44332009-09-09 15:08:12 +0000772 QualType ElemType,
Douglas Gregor4c678342009-01-28 21:54:33 +0000773 unsigned &Index,
774 InitListExpr *StructuredList,
775 unsigned &StructuredIndex) {
Douglas Gregor6fbdc6b2009-01-29 00:39:20 +0000776 Expr *expr = IList->getInit(Index);
Eli Friedmanc9c0ea62008-05-19 20:00:43 +0000777 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
Richard Smith20599392012-07-07 08:35:56 +0000778 if (!ElemType->isRecordType() || ElemType->isAggregateType()) {
779 unsigned newIndex = 0;
780 unsigned newStructuredIndex = 0;
781 InitListExpr *newStructuredList
782 = getStructuredSubobjectInit(IList, Index, ElemType,
783 StructuredList, StructuredIndex,
784 SubInitList->getSourceRange());
785 CheckExplicitInitList(Entity, SubInitList, ElemType, newIndex,
786 newStructuredList, newStructuredIndex);
787 ++StructuredIndex;
788 ++Index;
789 return;
790 }
791 assert(SemaRef.getLangOpts().CPlusPlus &&
792 "non-aggregate records are only possible in C++");
793 // C++ initialization is handled later.
794 }
795
796 if (ElemType->isScalarType()) {
John McCallfef8b342011-02-21 07:57:55 +0000797 return CheckScalarType(Entity, IList, ElemType, Index,
798 StructuredList, StructuredIndex);
Douglas Gregor930d8b52009-01-30 22:09:00 +0000799 } else if (ElemType->isReferenceType()) {
John McCallfef8b342011-02-21 07:57:55 +0000800 return CheckReferenceType(Entity, IList, ElemType, Index,
801 StructuredList, StructuredIndex);
802 }
Anders Carlssond28b4282009-08-27 17:18:13 +0000803
John McCallfef8b342011-02-21 07:57:55 +0000804 if (const ArrayType *arrayType = SemaRef.Context.getAsArrayType(ElemType)) {
805 // arrayType can be incomplete if we're initializing a flexible
806 // array member. There's nothing we can do with the completed
807 // type here, though.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000808
John McCallfef8b342011-02-21 07:57:55 +0000809 if (Expr *Str = IsStringInit(expr, arrayType, SemaRef.Context)) {
Eli Friedman8a5d9292011-09-26 19:09:09 +0000810 if (!VerifyOnly) {
811 CheckStringInit(Str, ElemType, arrayType, SemaRef);
812 UpdateStructuredListElement(StructuredList, StructuredIndex, Str);
813 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000814 ++Index;
John McCallfef8b342011-02-21 07:57:55 +0000815 return;
Douglas Gregor930d8b52009-01-30 22:09:00 +0000816 }
John McCallfef8b342011-02-21 07:57:55 +0000817
818 // Fall through for subaggregate initialization.
819
David Blaikie4e4d0842012-03-11 07:00:24 +0000820 } else if (SemaRef.getLangOpts().CPlusPlus) {
John McCallfef8b342011-02-21 07:57:55 +0000821 // C++ [dcl.init.aggr]p12:
822 // All implicit type conversions (clause 4) are considered when
Sebastian Redl5d3d41d2011-09-24 17:47:39 +0000823 // initializing the aggregate member with an initializer from
John McCallfef8b342011-02-21 07:57:55 +0000824 // an initializer-list. If the initializer can initialize a
825 // member, the member is initialized. [...]
826
827 // FIXME: Better EqualLoc?
828 InitializationKind Kind =
829 InitializationKind::CreateCopy(expr->getLocStart(), SourceLocation());
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000830 InitializationSequence Seq(SemaRef, Entity, Kind, expr);
John McCallfef8b342011-02-21 07:57:55 +0000831
832 if (Seq) {
Sebastian Redl14b0c192011-09-24 17:48:00 +0000833 if (!VerifyOnly) {
Richard Smithb6f8d282011-12-20 04:00:21 +0000834 ExprResult Result =
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000835 Seq.Perform(SemaRef, Entity, Kind, expr);
Richard Smithb6f8d282011-12-20 04:00:21 +0000836 if (Result.isInvalid())
837 hadError = true;
John McCallfef8b342011-02-21 07:57:55 +0000838
Sebastian Redl14b0c192011-09-24 17:48:00 +0000839 UpdateStructuredListElement(StructuredList, StructuredIndex,
Richard Smithb6f8d282011-12-20 04:00:21 +0000840 Result.takeAs<Expr>());
Sebastian Redl14b0c192011-09-24 17:48:00 +0000841 }
John McCallfef8b342011-02-21 07:57:55 +0000842 ++Index;
843 return;
844 }
845
846 // Fall through for subaggregate initialization
847 } else {
848 // C99 6.7.8p13:
849 //
850 // The initializer for a structure or union object that has
851 // automatic storage duration shall be either an initializer
852 // list as described below, or a single expression that has
853 // compatible structure or union type. In the latter case, the
854 // initial value of the object, including unnamed members, is
855 // that of the expression.
John Wiegley429bb272011-04-08 18:41:53 +0000856 ExprResult ExprRes = SemaRef.Owned(expr);
John McCallfef8b342011-02-21 07:57:55 +0000857 if ((ElemType->isRecordType() || ElemType->isVectorType()) &&
Sebastian Redl14b0c192011-09-24 17:48:00 +0000858 SemaRef.CheckSingleAssignmentConstraints(ElemType, ExprRes,
859 !VerifyOnly)
John McCallfef8b342011-02-21 07:57:55 +0000860 == Sema::Compatible) {
John Wiegley429bb272011-04-08 18:41:53 +0000861 if (ExprRes.isInvalid())
862 hadError = true;
863 else {
864 ExprRes = SemaRef.DefaultFunctionArrayLvalueConversion(ExprRes.take());
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000865 if (ExprRes.isInvalid())
866 hadError = true;
John Wiegley429bb272011-04-08 18:41:53 +0000867 }
868 UpdateStructuredListElement(StructuredList, StructuredIndex,
869 ExprRes.takeAs<Expr>());
John McCallfef8b342011-02-21 07:57:55 +0000870 ++Index;
871 return;
872 }
John Wiegley429bb272011-04-08 18:41:53 +0000873 ExprRes.release();
John McCallfef8b342011-02-21 07:57:55 +0000874 // Fall through for subaggregate initialization
875 }
876
877 // C++ [dcl.init.aggr]p12:
878 //
879 // [...] Otherwise, if the member is itself a non-empty
880 // subaggregate, brace elision is assumed and the initializer is
881 // considered for the initialization of the first member of
882 // the subaggregate.
David Blaikie4e4d0842012-03-11 07:00:24 +0000883 if (!SemaRef.getLangOpts().OpenCL &&
Tanya Lattner61b4bc82011-07-15 23:07:01 +0000884 (ElemType->isAggregateType() || ElemType->isVectorType())) {
John McCallfef8b342011-02-21 07:57:55 +0000885 CheckImplicitInitList(Entity, IList, ElemType, Index, StructuredList,
886 StructuredIndex);
887 ++StructuredIndex;
888 } else {
Sebastian Redl14b0c192011-09-24 17:48:00 +0000889 if (!VerifyOnly) {
890 // We cannot initialize this element, so let
891 // PerformCopyInitialization produce the appropriate diagnostic.
892 SemaRef.PerformCopyInitialization(Entity, SourceLocation(),
893 SemaRef.Owned(expr),
894 /*TopLevelOfInitList=*/true);
895 }
John McCallfef8b342011-02-21 07:57:55 +0000896 hadError = true;
897 ++Index;
898 ++StructuredIndex;
Douglas Gregor930d8b52009-01-30 22:09:00 +0000899 }
Eli Friedmanb85f7072008-05-19 19:16:24 +0000900}
901
Eli Friedman0c706c22011-09-19 23:17:44 +0000902void InitListChecker::CheckComplexType(const InitializedEntity &Entity,
903 InitListExpr *IList, QualType DeclType,
904 unsigned &Index,
905 InitListExpr *StructuredList,
906 unsigned &StructuredIndex) {
907 assert(Index == 0 && "Index in explicit init list must be zero");
908
909 // As an extension, clang supports complex initializers, which initialize
910 // a complex number component-wise. When an explicit initializer list for
911 // a complex number contains two two initializers, this extension kicks in:
912 // it exepcts the initializer list to contain two elements convertible to
913 // the element type of the complex type. The first element initializes
914 // the real part, and the second element intitializes the imaginary part.
915
916 if (IList->getNumInits() != 2)
917 return CheckScalarType(Entity, IList, DeclType, Index, StructuredList,
918 StructuredIndex);
919
920 // This is an extension in C. (The builtin _Complex type does not exist
921 // in the C++ standard.)
David Blaikie4e4d0842012-03-11 07:00:24 +0000922 if (!SemaRef.getLangOpts().CPlusPlus && !VerifyOnly)
Eli Friedman0c706c22011-09-19 23:17:44 +0000923 SemaRef.Diag(IList->getLocStart(), diag::ext_complex_component_init)
924 << IList->getSourceRange();
925
926 // Initialize the complex number.
927 QualType elementType = DeclType->getAs<ComplexType>()->getElementType();
928 InitializedEntity ElementEntity =
929 InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
930
931 for (unsigned i = 0; i < 2; ++i) {
932 ElementEntity.setElementIndex(Index);
933 CheckSubElementType(ElementEntity, IList, elementType, Index,
934 StructuredList, StructuredIndex);
935 }
936}
937
938
Anders Carlsson8ff9e862010-01-23 23:23:01 +0000939void InitListChecker::CheckScalarType(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +0000940 InitListExpr *IList, QualType DeclType,
Douglas Gregor6fbdc6b2009-01-29 00:39:20 +0000941 unsigned &Index,
Douglas Gregor4c678342009-01-28 21:54:33 +0000942 InitListExpr *StructuredList,
943 unsigned &StructuredIndex) {
John McCallb934c2d2010-11-11 00:46:36 +0000944 if (Index >= IList->getNumInits()) {
Richard Smith6b130222011-10-18 21:39:00 +0000945 if (!VerifyOnly)
946 SemaRef.Diag(IList->getLocStart(),
Richard Smith80ad52f2013-01-02 11:42:31 +0000947 SemaRef.getLangOpts().CPlusPlus11 ?
Richard Smith6b130222011-10-18 21:39:00 +0000948 diag::warn_cxx98_compat_empty_scalar_initializer :
949 diag::err_empty_scalar_initializer)
950 << IList->getSourceRange();
Richard Smith80ad52f2013-01-02 11:42:31 +0000951 hadError = !SemaRef.getLangOpts().CPlusPlus11;
Douglas Gregor4c678342009-01-28 21:54:33 +0000952 ++Index;
953 ++StructuredIndex;
Eli Friedmanbb504d32008-05-19 20:12:18 +0000954 return;
Steve Naroff0cca7492008-05-01 22:18:59 +0000955 }
John McCallb934c2d2010-11-11 00:46:36 +0000956
957 Expr *expr = IList->getInit(Index);
958 if (InitListExpr *SubIList = dyn_cast<InitListExpr>(expr)) {
Sebastian Redl14b0c192011-09-24 17:48:00 +0000959 if (!VerifyOnly)
960 SemaRef.Diag(SubIList->getLocStart(),
961 diag::warn_many_braces_around_scalar_init)
962 << SubIList->getSourceRange();
John McCallb934c2d2010-11-11 00:46:36 +0000963
964 CheckScalarType(Entity, SubIList, DeclType, Index, StructuredList,
965 StructuredIndex);
966 return;
967 } else if (isa<DesignatedInitExpr>(expr)) {
Sebastian Redl14b0c192011-09-24 17:48:00 +0000968 if (!VerifyOnly)
Daniel Dunbar96a00142012-03-09 18:35:03 +0000969 SemaRef.Diag(expr->getLocStart(),
Sebastian Redl14b0c192011-09-24 17:48:00 +0000970 diag::err_designator_for_scalar_init)
971 << DeclType << expr->getSourceRange();
John McCallb934c2d2010-11-11 00:46:36 +0000972 hadError = true;
973 ++Index;
974 ++StructuredIndex;
975 return;
976 }
977
Sebastian Redl14b0c192011-09-24 17:48:00 +0000978 if (VerifyOnly) {
979 if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(expr)))
980 hadError = true;
981 ++Index;
982 return;
983 }
984
John McCallb934c2d2010-11-11 00:46:36 +0000985 ExprResult Result =
986 SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(),
Jeffrey Yasskin19159132011-07-26 23:20:30 +0000987 SemaRef.Owned(expr),
988 /*TopLevelOfInitList=*/true);
John McCallb934c2d2010-11-11 00:46:36 +0000989
990 Expr *ResultExpr = 0;
991
992 if (Result.isInvalid())
993 hadError = true; // types weren't compatible.
994 else {
995 ResultExpr = Result.takeAs<Expr>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000996
John McCallb934c2d2010-11-11 00:46:36 +0000997 if (ResultExpr != expr) {
998 // The type was promoted, update initializer list.
999 IList->setInit(Index, ResultExpr);
1000 }
1001 }
1002 if (hadError)
1003 ++StructuredIndex;
1004 else
1005 UpdateStructuredListElement(StructuredList, StructuredIndex, ResultExpr);
1006 ++Index;
Steve Naroff0cca7492008-05-01 22:18:59 +00001007}
1008
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001009void InitListChecker::CheckReferenceType(const InitializedEntity &Entity,
1010 InitListExpr *IList, QualType DeclType,
Douglas Gregor930d8b52009-01-30 22:09:00 +00001011 unsigned &Index,
1012 InitListExpr *StructuredList,
1013 unsigned &StructuredIndex) {
Sebastian Redl14b0c192011-09-24 17:48:00 +00001014 if (Index >= IList->getNumInits()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001015 // FIXME: It would be wonderful if we could point at the actual member. In
1016 // general, it would be useful to pass location information down the stack,
1017 // so that we know the location (or decl) of the "current object" being
1018 // initialized.
Sebastian Redl14b0c192011-09-24 17:48:00 +00001019 if (!VerifyOnly)
1020 SemaRef.Diag(IList->getLocStart(),
1021 diag::err_init_reference_member_uninitialized)
1022 << DeclType
1023 << IList->getSourceRange();
Douglas Gregor930d8b52009-01-30 22:09:00 +00001024 hadError = true;
1025 ++Index;
1026 ++StructuredIndex;
1027 return;
1028 }
Sebastian Redl14b0c192011-09-24 17:48:00 +00001029
1030 Expr *expr = IList->getInit(Index);
Richard Smith80ad52f2013-01-02 11:42:31 +00001031 if (isa<InitListExpr>(expr) && !SemaRef.getLangOpts().CPlusPlus11) {
Sebastian Redl14b0c192011-09-24 17:48:00 +00001032 if (!VerifyOnly)
1033 SemaRef.Diag(IList->getLocStart(), diag::err_init_non_aggr_init_list)
1034 << DeclType << IList->getSourceRange();
1035 hadError = true;
1036 ++Index;
1037 ++StructuredIndex;
1038 return;
1039 }
1040
1041 if (VerifyOnly) {
1042 if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(expr)))
1043 hadError = true;
1044 ++Index;
1045 return;
1046 }
1047
1048 ExprResult Result =
1049 SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(),
1050 SemaRef.Owned(expr),
1051 /*TopLevelOfInitList=*/true);
1052
1053 if (Result.isInvalid())
1054 hadError = true;
1055
1056 expr = Result.takeAs<Expr>();
1057 IList->setInit(Index, expr);
1058
1059 if (hadError)
1060 ++StructuredIndex;
1061 else
1062 UpdateStructuredListElement(StructuredList, StructuredIndex, expr);
1063 ++Index;
Douglas Gregor930d8b52009-01-30 22:09:00 +00001064}
1065
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001066void InitListChecker::CheckVectorType(const InitializedEntity &Entity,
Anders Carlsson46f46592010-01-23 19:55:29 +00001067 InitListExpr *IList, QualType DeclType,
Douglas Gregor4c678342009-01-28 21:54:33 +00001068 unsigned &Index,
1069 InitListExpr *StructuredList,
1070 unsigned &StructuredIndex) {
John McCall20e047a2010-10-30 00:11:39 +00001071 const VectorType *VT = DeclType->getAs<VectorType>();
1072 unsigned maxElements = VT->getNumElements();
1073 unsigned numEltsInit = 0;
1074 QualType elementType = VT->getElementType();
Anders Carlsson46f46592010-01-23 19:55:29 +00001075
Sebastian Redl3ff5c862011-10-16 18:19:20 +00001076 if (Index >= IList->getNumInits()) {
1077 // Make sure the element type can be value-initialized.
1078 if (VerifyOnly)
1079 CheckValueInitializable(
1080 InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity));
1081 return;
1082 }
1083
David Blaikie4e4d0842012-03-11 07:00:24 +00001084 if (!SemaRef.getLangOpts().OpenCL) {
John McCall20e047a2010-10-30 00:11:39 +00001085 // If the initializing element is a vector, try to copy-initialize
1086 // instead of breaking it apart (which is doomed to failure anyway).
1087 Expr *Init = IList->getInit(Index);
1088 if (!isa<InitListExpr>(Init) && Init->getType()->isVectorType()) {
Sebastian Redl14b0c192011-09-24 17:48:00 +00001089 if (VerifyOnly) {
1090 if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(Init)))
1091 hadError = true;
1092 ++Index;
1093 return;
1094 }
1095
John McCall20e047a2010-10-30 00:11:39 +00001096 ExprResult Result =
1097 SemaRef.PerformCopyInitialization(Entity, Init->getLocStart(),
Jeffrey Yasskin19159132011-07-26 23:20:30 +00001098 SemaRef.Owned(Init),
1099 /*TopLevelOfInitList=*/true);
John McCall20e047a2010-10-30 00:11:39 +00001100
1101 Expr *ResultExpr = 0;
1102 if (Result.isInvalid())
1103 hadError = true; // types weren't compatible.
1104 else {
1105 ResultExpr = Result.takeAs<Expr>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001106
John McCall20e047a2010-10-30 00:11:39 +00001107 if (ResultExpr != Init) {
1108 // The type was promoted, update initializer list.
1109 IList->setInit(Index, ResultExpr);
Nate Begeman2ef13e52009-08-10 23:49:36 +00001110 }
1111 }
John McCall20e047a2010-10-30 00:11:39 +00001112 if (hadError)
1113 ++StructuredIndex;
1114 else
Sebastian Redl14b0c192011-09-24 17:48:00 +00001115 UpdateStructuredListElement(StructuredList, StructuredIndex,
1116 ResultExpr);
John McCall20e047a2010-10-30 00:11:39 +00001117 ++Index;
1118 return;
Steve Naroff0cca7492008-05-01 22:18:59 +00001119 }
Mike Stump1eb44332009-09-09 15:08:12 +00001120
John McCall20e047a2010-10-30 00:11:39 +00001121 InitializedEntity ElementEntity =
1122 InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001123
John McCall20e047a2010-10-30 00:11:39 +00001124 for (unsigned i = 0; i < maxElements; ++i, ++numEltsInit) {
1125 // Don't attempt to go past the end of the init list
Sebastian Redl3ff5c862011-10-16 18:19:20 +00001126 if (Index >= IList->getNumInits()) {
1127 if (VerifyOnly)
1128 CheckValueInitializable(ElementEntity);
John McCall20e047a2010-10-30 00:11:39 +00001129 break;
Sebastian Redl3ff5c862011-10-16 18:19:20 +00001130 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001131
John McCall20e047a2010-10-30 00:11:39 +00001132 ElementEntity.setElementIndex(Index);
1133 CheckSubElementType(ElementEntity, IList, elementType, Index,
1134 StructuredList, StructuredIndex);
1135 }
1136 return;
Steve Naroff0cca7492008-05-01 22:18:59 +00001137 }
John McCall20e047a2010-10-30 00:11:39 +00001138
1139 InitializedEntity ElementEntity =
1140 InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001141
John McCall20e047a2010-10-30 00:11:39 +00001142 // OpenCL initializers allows vectors to be constructed from vectors.
1143 for (unsigned i = 0; i < maxElements; ++i) {
1144 // Don't attempt to go past the end of the init list
1145 if (Index >= IList->getNumInits())
1146 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001147
John McCall20e047a2010-10-30 00:11:39 +00001148 ElementEntity.setElementIndex(Index);
1149
1150 QualType IType = IList->getInit(Index)->getType();
1151 if (!IType->isVectorType()) {
1152 CheckSubElementType(ElementEntity, IList, elementType, Index,
1153 StructuredList, StructuredIndex);
1154 ++numEltsInit;
1155 } else {
1156 QualType VecType;
1157 const VectorType *IVT = IType->getAs<VectorType>();
1158 unsigned numIElts = IVT->getNumElements();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001159
John McCall20e047a2010-10-30 00:11:39 +00001160 if (IType->isExtVectorType())
1161 VecType = SemaRef.Context.getExtVectorType(elementType, numIElts);
1162 else
1163 VecType = SemaRef.Context.getVectorType(elementType, numIElts,
Bob Wilsone86d78c2010-11-10 21:56:12 +00001164 IVT->getVectorKind());
John McCall20e047a2010-10-30 00:11:39 +00001165 CheckSubElementType(ElementEntity, IList, VecType, Index,
1166 StructuredList, StructuredIndex);
1167 numEltsInit += numIElts;
1168 }
1169 }
1170
1171 // OpenCL requires all elements to be initialized.
Sebastian Redl3ff5c862011-10-16 18:19:20 +00001172 if (numEltsInit != maxElements) {
1173 if (!VerifyOnly)
Daniel Dunbar96a00142012-03-09 18:35:03 +00001174 SemaRef.Diag(IList->getLocStart(),
Sebastian Redl3ff5c862011-10-16 18:19:20 +00001175 diag::err_vector_incorrect_num_initializers)
1176 << (numEltsInit < maxElements) << maxElements << numEltsInit;
1177 hadError = true;
1178 }
Steve Naroff0cca7492008-05-01 22:18:59 +00001179}
1180
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001181void InitListChecker::CheckArrayType(const InitializedEntity &Entity,
Anders Carlsson784f6992010-01-23 20:13:41 +00001182 InitListExpr *IList, QualType &DeclType,
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001183 llvm::APSInt elementIndex,
Mike Stump1eb44332009-09-09 15:08:12 +00001184 bool SubobjectIsDesignatorContext,
Douglas Gregor4c678342009-01-28 21:54:33 +00001185 unsigned &Index,
1186 InitListExpr *StructuredList,
1187 unsigned &StructuredIndex) {
John McCallce6c9b72011-02-21 07:22:22 +00001188 const ArrayType *arrayType = SemaRef.Context.getAsArrayType(DeclType);
1189
Steve Naroff0cca7492008-05-01 22:18:59 +00001190 // Check for the special-case of initializing an array with a string.
1191 if (Index < IList->getNumInits()) {
John McCallce6c9b72011-02-21 07:22:22 +00001192 if (Expr *Str = IsStringInit(IList->getInit(Index), arrayType,
Chris Lattner79e079d2009-02-24 23:10:27 +00001193 SemaRef.Context)) {
Douglas Gregor4c678342009-01-28 21:54:33 +00001194 // We place the string literal directly into the resulting
1195 // initializer list. This is the only place where the structure
1196 // of the structured initializer list doesn't match exactly,
1197 // because doing so would involve allocating one character
1198 // constant for each string.
Sebastian Redl14b0c192011-09-24 17:48:00 +00001199 if (!VerifyOnly) {
Eli Friedman8a5d9292011-09-26 19:09:09 +00001200 CheckStringInit(Str, DeclType, arrayType, SemaRef);
Sebastian Redl14b0c192011-09-24 17:48:00 +00001201 UpdateStructuredListElement(StructuredList, StructuredIndex, Str);
1202 StructuredList->resizeInits(SemaRef.Context, StructuredIndex);
1203 }
Steve Naroff0cca7492008-05-01 22:18:59 +00001204 ++Index;
Steve Naroff0cca7492008-05-01 22:18:59 +00001205 return;
1206 }
1207 }
John McCallce6c9b72011-02-21 07:22:22 +00001208 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(arrayType)) {
Eli Friedman638e1442008-05-25 13:22:35 +00001209 // Check for VLAs; in standard C it would be possible to check this
1210 // earlier, but I don't know where clang accepts VLAs (gcc accepts
1211 // them in all sorts of strange places).
Sebastian Redl14b0c192011-09-24 17:48:00 +00001212 if (!VerifyOnly)
1213 SemaRef.Diag(VAT->getSizeExpr()->getLocStart(),
1214 diag::err_variable_object_no_init)
1215 << VAT->getSizeExpr()->getSourceRange();
Eli Friedman638e1442008-05-25 13:22:35 +00001216 hadError = true;
Douglas Gregor4c678342009-01-28 21:54:33 +00001217 ++Index;
1218 ++StructuredIndex;
Eli Friedman638e1442008-05-25 13:22:35 +00001219 return;
1220 }
1221
Douglas Gregor05c13a32009-01-22 00:58:24 +00001222 // We might know the maximum number of elements in advance.
Douglas Gregor4c678342009-01-28 21:54:33 +00001223 llvm::APSInt maxElements(elementIndex.getBitWidth(),
1224 elementIndex.isUnsigned());
Douglas Gregor05c13a32009-01-22 00:58:24 +00001225 bool maxElementsKnown = false;
John McCallce6c9b72011-02-21 07:22:22 +00001226 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(arrayType)) {
Douglas Gregor05c13a32009-01-22 00:58:24 +00001227 maxElements = CAT->getSize();
Jay Foad9f71a8f2010-12-07 08:25:34 +00001228 elementIndex = elementIndex.extOrTrunc(maxElements.getBitWidth());
Douglas Gregore3fa2de2009-01-23 18:58:42 +00001229 elementIndex.setIsUnsigned(maxElements.isUnsigned());
Douglas Gregor05c13a32009-01-22 00:58:24 +00001230 maxElementsKnown = true;
1231 }
1232
John McCallce6c9b72011-02-21 07:22:22 +00001233 QualType elementType = arrayType->getElementType();
Douglas Gregor05c13a32009-01-22 00:58:24 +00001234 while (Index < IList->getNumInits()) {
1235 Expr *Init = IList->getInit(Index);
1236 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) {
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001237 // If we're not the subobject that matches up with the '{' for
1238 // the designator, we shouldn't be handling the
1239 // designator. Return immediately.
1240 if (!SubobjectIsDesignatorContext)
1241 return;
Douglas Gregor05c13a32009-01-22 00:58:24 +00001242
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001243 // Handle this designated initializer. elementIndex will be
1244 // updated to be the next array element we'll initialize.
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001245 if (CheckDesignatedInitializer(Entity, IList, DIE, 0,
Douglas Gregor4c678342009-01-28 21:54:33 +00001246 DeclType, 0, &elementIndex, Index,
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001247 StructuredList, StructuredIndex, true,
1248 false)) {
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001249 hadError = true;
1250 continue;
1251 }
1252
Douglas Gregorf6c717c2009-01-23 16:54:12 +00001253 if (elementIndex.getBitWidth() > maxElements.getBitWidth())
Jay Foad9f71a8f2010-12-07 08:25:34 +00001254 maxElements = maxElements.extend(elementIndex.getBitWidth());
Douglas Gregorf6c717c2009-01-23 16:54:12 +00001255 else if (elementIndex.getBitWidth() < maxElements.getBitWidth())
Jay Foad9f71a8f2010-12-07 08:25:34 +00001256 elementIndex = elementIndex.extend(maxElements.getBitWidth());
Douglas Gregore3fa2de2009-01-23 18:58:42 +00001257 elementIndex.setIsUnsigned(maxElements.isUnsigned());
Douglas Gregorf6c717c2009-01-23 16:54:12 +00001258
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001259 // If the array is of incomplete type, keep track of the number of
1260 // elements in the initializer.
1261 if (!maxElementsKnown && elementIndex > maxElements)
1262 maxElements = elementIndex;
1263
Douglas Gregor05c13a32009-01-22 00:58:24 +00001264 continue;
1265 }
1266
1267 // If we know the maximum number of elements, and we've already
1268 // hit it, stop consuming elements in the initializer list.
1269 if (maxElementsKnown && elementIndex == maxElements)
Steve Naroff0cca7492008-05-01 22:18:59 +00001270 break;
Douglas Gregor05c13a32009-01-22 00:58:24 +00001271
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001272 InitializedEntity ElementEntity =
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001273 InitializedEntity::InitializeElement(SemaRef.Context, StructuredIndex,
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001274 Entity);
1275 // Check this element.
1276 CheckSubElementType(ElementEntity, IList, elementType, Index,
1277 StructuredList, StructuredIndex);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001278 ++elementIndex;
1279
1280 // If the array is of incomplete type, keep track of the number of
1281 // elements in the initializer.
1282 if (!maxElementsKnown && elementIndex > maxElements)
1283 maxElements = elementIndex;
Steve Naroff0cca7492008-05-01 22:18:59 +00001284 }
Sebastian Redl14b0c192011-09-24 17:48:00 +00001285 if (!hadError && DeclType->isIncompleteArrayType() && !VerifyOnly) {
Steve Naroff0cca7492008-05-01 22:18:59 +00001286 // If this is an incomplete array type, the actual type needs to
Daniel Dunbar396f0bf2008-08-18 20:28:46 +00001287 // be calculated here.
Douglas Gregore3fa2de2009-01-23 18:58:42 +00001288 llvm::APSInt Zero(maxElements.getBitWidth(), maxElements.isUnsigned());
Douglas Gregor05c13a32009-01-22 00:58:24 +00001289 if (maxElements == Zero) {
Daniel Dunbar396f0bf2008-08-18 20:28:46 +00001290 // Sizing an array implicitly to zero is not allowed by ISO C,
1291 // but is supported by GNU.
Chris Lattner08202542009-02-24 22:50:46 +00001292 SemaRef.Diag(IList->getLocStart(),
Daniel Dunbar396f0bf2008-08-18 20:28:46 +00001293 diag::ext_typecheck_zero_array_size);
Steve Naroff0cca7492008-05-01 22:18:59 +00001294 }
Daniel Dunbar396f0bf2008-08-18 20:28:46 +00001295
Mike Stump1eb44332009-09-09 15:08:12 +00001296 DeclType = SemaRef.Context.getConstantArrayType(elementType, maxElements,
Daniel Dunbar396f0bf2008-08-18 20:28:46 +00001297 ArrayType::Normal, 0);
Steve Naroff0cca7492008-05-01 22:18:59 +00001298 }
Sebastian Redl3ff5c862011-10-16 18:19:20 +00001299 if (!hadError && VerifyOnly) {
1300 // Check if there are any members of the array that get value-initialized.
1301 // If so, check if doing that is possible.
1302 // FIXME: This needs to detect holes left by designated initializers too.
1303 if (maxElementsKnown && elementIndex < maxElements)
1304 CheckValueInitializable(InitializedEntity::InitializeElement(
1305 SemaRef.Context, 0, Entity));
1306 }
Steve Naroff0cca7492008-05-01 22:18:59 +00001307}
1308
Eli Friedmanf40fd6b2011-08-23 22:24:57 +00001309bool InitListChecker::CheckFlexibleArrayInit(const InitializedEntity &Entity,
1310 Expr *InitExpr,
1311 FieldDecl *Field,
1312 bool TopLevelObject) {
1313 // Handle GNU flexible array initializers.
1314 unsigned FlexArrayDiag;
1315 if (isa<InitListExpr>(InitExpr) &&
1316 cast<InitListExpr>(InitExpr)->getNumInits() == 0) {
1317 // Empty flexible array init always allowed as an extension
1318 FlexArrayDiag = diag::ext_flexible_array_init;
David Blaikie4e4d0842012-03-11 07:00:24 +00001319 } else if (SemaRef.getLangOpts().CPlusPlus) {
Eli Friedmanf40fd6b2011-08-23 22:24:57 +00001320 // Disallow flexible array init in C++; it is not required for gcc
1321 // compatibility, and it needs work to IRGen correctly in general.
1322 FlexArrayDiag = diag::err_flexible_array_init;
1323 } else if (!TopLevelObject) {
1324 // Disallow flexible array init on non-top-level object
1325 FlexArrayDiag = diag::err_flexible_array_init;
1326 } else if (Entity.getKind() != InitializedEntity::EK_Variable) {
1327 // Disallow flexible array init on anything which is not a variable.
1328 FlexArrayDiag = diag::err_flexible_array_init;
1329 } else if (cast<VarDecl>(Entity.getDecl())->hasLocalStorage()) {
1330 // Disallow flexible array init on local variables.
1331 FlexArrayDiag = diag::err_flexible_array_init;
1332 } else {
1333 // Allow other cases.
1334 FlexArrayDiag = diag::ext_flexible_array_init;
1335 }
Sebastian Redl14b0c192011-09-24 17:48:00 +00001336
1337 if (!VerifyOnly) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00001338 SemaRef.Diag(InitExpr->getLocStart(),
Sebastian Redl14b0c192011-09-24 17:48:00 +00001339 FlexArrayDiag)
Daniel Dunbar96a00142012-03-09 18:35:03 +00001340 << InitExpr->getLocStart();
Sebastian Redl14b0c192011-09-24 17:48:00 +00001341 SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
1342 << Field;
1343 }
Eli Friedmanf40fd6b2011-08-23 22:24:57 +00001344
1345 return FlexArrayDiag != diag::ext_flexible_array_init;
1346}
1347
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001348void InitListChecker::CheckStructUnionTypes(const InitializedEntity &Entity,
Anders Carlsson2bbae5d2010-01-23 20:20:40 +00001349 InitListExpr *IList,
Mike Stump1eb44332009-09-09 15:08:12 +00001350 QualType DeclType,
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001351 RecordDecl::field_iterator Field,
Mike Stump1eb44332009-09-09 15:08:12 +00001352 bool SubobjectIsDesignatorContext,
Douglas Gregor4c678342009-01-28 21:54:33 +00001353 unsigned &Index,
1354 InitListExpr *StructuredList,
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001355 unsigned &StructuredIndex,
1356 bool TopLevelObject) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001357 RecordDecl* structDecl = DeclType->getAs<RecordType>()->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001358
Eli Friedmanb85f7072008-05-19 19:16:24 +00001359 // If the record is invalid, some of it's members are invalid. To avoid
1360 // confusion, we forgo checking the intializer for the entire record.
1361 if (structDecl->isInvalidDecl()) {
Richard Smith72ab2772012-09-28 21:23:50 +00001362 // Assume it was supposed to consume a single initializer.
1363 ++Index;
Eli Friedmanb85f7072008-05-19 19:16:24 +00001364 hadError = true;
1365 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001366 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001367
1368 if (DeclType->isUnionType() && IList->getNumInits() == 0) {
Sebastian Redl3ff5c862011-10-16 18:19:20 +00001369 RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
Richard Smithc3bf52c2013-04-20 22:23:05 +00001370
1371 // If there's a default initializer, use it.
1372 if (isa<CXXRecordDecl>(RD) && cast<CXXRecordDecl>(RD)->hasInClassInitializer()) {
1373 if (VerifyOnly)
1374 return;
1375 for (RecordDecl::field_iterator FieldEnd = RD->field_end();
1376 Field != FieldEnd; ++Field) {
1377 if (Field->hasInClassInitializer()) {
1378 StructuredList->setInitializedFieldInUnion(*Field);
1379 // FIXME: Actually build a CXXDefaultInitExpr?
1380 return;
1381 }
1382 }
1383 }
1384
1385 // Value-initialize the first named member of the union.
Sebastian Redl3ff5c862011-10-16 18:19:20 +00001386 for (RecordDecl::field_iterator FieldEnd = RD->field_end();
1387 Field != FieldEnd; ++Field) {
1388 if (Field->getDeclName()) {
1389 if (VerifyOnly)
1390 CheckValueInitializable(
David Blaikie581deb32012-06-06 20:45:41 +00001391 InitializedEntity::InitializeMember(*Field, &Entity));
Sebastian Redl3ff5c862011-10-16 18:19:20 +00001392 else
David Blaikie581deb32012-06-06 20:45:41 +00001393 StructuredList->setInitializedFieldInUnion(*Field);
Sebastian Redl3ff5c862011-10-16 18:19:20 +00001394 break;
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001395 }
1396 }
1397 return;
1398 }
1399
Douglas Gregor05c13a32009-01-22 00:58:24 +00001400 // If structDecl is a forward declaration, this loop won't do
1401 // anything except look at designated initializers; That's okay,
1402 // because an error should get printed out elsewhere. It might be
1403 // worthwhile to skip over the rest of the initializer, though.
Ted Kremenek6217b802009-07-29 21:53:49 +00001404 RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001405 RecordDecl::field_iterator FieldEnd = RD->field_end();
Douglas Gregordfb5e592009-02-12 19:00:39 +00001406 bool InitializedSomething = false;
John McCall80639de2010-03-11 19:32:38 +00001407 bool CheckForMissingFields = true;
Douglas Gregor05c13a32009-01-22 00:58:24 +00001408 while (Index < IList->getNumInits()) {
1409 Expr *Init = IList->getInit(Index);
1410
1411 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) {
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001412 // If we're not the subobject that matches up with the '{' for
1413 // the designator, we shouldn't be handling the
1414 // designator. Return immediately.
1415 if (!SubobjectIsDesignatorContext)
1416 return;
Douglas Gregor05c13a32009-01-22 00:58:24 +00001417
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001418 // Handle this designated initializer. Field will be updated to
1419 // the next field that we'll be initializing.
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001420 if (CheckDesignatedInitializer(Entity, IList, DIE, 0,
Douglas Gregor4c678342009-01-28 21:54:33 +00001421 DeclType, &Field, 0, Index,
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001422 StructuredList, StructuredIndex,
1423 true, TopLevelObject))
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001424 hadError = true;
1425
Douglas Gregordfb5e592009-02-12 19:00:39 +00001426 InitializedSomething = true;
John McCall80639de2010-03-11 19:32:38 +00001427
1428 // Disable check for missing fields when designators are used.
1429 // This matches gcc behaviour.
1430 CheckForMissingFields = false;
Douglas Gregor05c13a32009-01-22 00:58:24 +00001431 continue;
1432 }
1433
1434 if (Field == FieldEnd) {
1435 // We've run out of fields. We're done.
1436 break;
1437 }
1438
Douglas Gregordfb5e592009-02-12 19:00:39 +00001439 // We've already initialized a member of a union. We're done.
1440 if (InitializedSomething && DeclType->isUnionType())
1441 break;
1442
Douglas Gregor44b43212008-12-11 16:49:14 +00001443 // If we've hit the flexible array member at the end, we're done.
1444 if (Field->getType()->isIncompleteArrayType())
1445 break;
1446
Douglas Gregor0bb76892009-01-29 16:53:55 +00001447 if (Field->isUnnamedBitfield()) {
Douglas Gregor4c678342009-01-28 21:54:33 +00001448 // Don't initialize unnamed bitfields, e.g. "int : 20;"
Douglas Gregor05c13a32009-01-22 00:58:24 +00001449 ++Field;
Eli Friedmanb85f7072008-05-19 19:16:24 +00001450 continue;
Steve Naroff0cca7492008-05-01 22:18:59 +00001451 }
Douglas Gregor44b43212008-12-11 16:49:14 +00001452
Douglas Gregor54001c12011-06-29 21:51:31 +00001453 // Make sure we can use this declaration.
Sebastian Redl14b0c192011-09-24 17:48:00 +00001454 bool InvalidUse;
1455 if (VerifyOnly)
David Blaikie581deb32012-06-06 20:45:41 +00001456 InvalidUse = !SemaRef.CanUseDecl(*Field);
Sebastian Redl14b0c192011-09-24 17:48:00 +00001457 else
David Blaikie581deb32012-06-06 20:45:41 +00001458 InvalidUse = SemaRef.DiagnoseUseOfDecl(*Field,
Sebastian Redl14b0c192011-09-24 17:48:00 +00001459 IList->getInit(Index)->getLocStart());
1460 if (InvalidUse) {
Douglas Gregor54001c12011-06-29 21:51:31 +00001461 ++Index;
1462 ++Field;
1463 hadError = true;
1464 continue;
Sebastian Redl14b0c192011-09-24 17:48:00 +00001465 }
Douglas Gregor54001c12011-06-29 21:51:31 +00001466
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001467 InitializedEntity MemberEntity =
David Blaikie581deb32012-06-06 20:45:41 +00001468 InitializedEntity::InitializeMember(*Field, &Entity);
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001469 CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
1470 StructuredList, StructuredIndex);
Douglas Gregordfb5e592009-02-12 19:00:39 +00001471 InitializedSomething = true;
Douglas Gregor0bb76892009-01-29 16:53:55 +00001472
Sebastian Redl14b0c192011-09-24 17:48:00 +00001473 if (DeclType->isUnionType() && !VerifyOnly) {
Douglas Gregor0bb76892009-01-29 16:53:55 +00001474 // Initialize the first field within the union.
David Blaikie581deb32012-06-06 20:45:41 +00001475 StructuredList->setInitializedFieldInUnion(*Field);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001476 }
Douglas Gregor05c13a32009-01-22 00:58:24 +00001477
1478 ++Field;
Steve Naroff0cca7492008-05-01 22:18:59 +00001479 }
Douglas Gregor44b43212008-12-11 16:49:14 +00001480
John McCall80639de2010-03-11 19:32:38 +00001481 // Emit warnings for missing struct field initializers.
Sebastian Redl14b0c192011-09-24 17:48:00 +00001482 if (!VerifyOnly && InitializedSomething && CheckForMissingFields &&
1483 Field != FieldEnd && !Field->getType()->isIncompleteArrayType() &&
1484 !DeclType->isUnionType()) {
John McCall80639de2010-03-11 19:32:38 +00001485 // It is possible we have one or more unnamed bitfields remaining.
1486 // Find first (if any) named field and emit warning.
1487 for (RecordDecl::field_iterator it = Field, end = RD->field_end();
1488 it != end; ++it) {
Richard Smithc3bf52c2013-04-20 22:23:05 +00001489 if (!it->isUnnamedBitfield() && !it->hasInClassInitializer()) {
John McCall80639de2010-03-11 19:32:38 +00001490 SemaRef.Diag(IList->getSourceRange().getEnd(),
1491 diag::warn_missing_field_initializers) << it->getName();
1492 break;
1493 }
1494 }
1495 }
1496
Sebastian Redl3ff5c862011-10-16 18:19:20 +00001497 // Check that any remaining fields can be value-initialized.
1498 if (VerifyOnly && Field != FieldEnd && !DeclType->isUnionType() &&
1499 !Field->getType()->isIncompleteArrayType()) {
1500 // FIXME: Should check for holes left by designated initializers too.
1501 for (; Field != FieldEnd && !hadError; ++Field) {
Richard Smithc3bf52c2013-04-20 22:23:05 +00001502 if (!Field->isUnnamedBitfield() && !Field->hasInClassInitializer())
Sebastian Redl3ff5c862011-10-16 18:19:20 +00001503 CheckValueInitializable(
David Blaikie581deb32012-06-06 20:45:41 +00001504 InitializedEntity::InitializeMember(*Field, &Entity));
Sebastian Redl3ff5c862011-10-16 18:19:20 +00001505 }
1506 }
1507
Mike Stump1eb44332009-09-09 15:08:12 +00001508 if (Field == FieldEnd || !Field->getType()->isIncompleteArrayType() ||
Douglas Gregora6457962009-03-20 00:32:56 +00001509 Index >= IList->getNumInits())
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001510 return;
1511
David Blaikie581deb32012-06-06 20:45:41 +00001512 if (CheckFlexibleArrayInit(Entity, IList->getInit(Index), *Field,
Eli Friedmanf40fd6b2011-08-23 22:24:57 +00001513 TopLevelObject)) {
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001514 hadError = true;
Douglas Gregora6457962009-03-20 00:32:56 +00001515 ++Index;
1516 return;
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001517 }
1518
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001519 InitializedEntity MemberEntity =
David Blaikie581deb32012-06-06 20:45:41 +00001520 InitializedEntity::InitializeMember(*Field, &Entity);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001521
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001522 if (isa<InitListExpr>(IList->getInit(Index)))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001523 CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001524 StructuredList, StructuredIndex);
1525 else
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001526 CheckImplicitInitList(MemberEntity, IList, Field->getType(), Index,
Anders Carlsson987dc6a2010-01-23 20:47:59 +00001527 StructuredList, StructuredIndex);
Steve Naroff0cca7492008-05-01 22:18:59 +00001528}
Steve Naroff0cca7492008-05-01 22:18:59 +00001529
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001530/// \brief Expand a field designator that refers to a member of an
1531/// anonymous struct or union into a series of field designators that
1532/// refers to the field within the appropriate subobject.
1533///
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001534static void ExpandAnonymousFieldDesignator(Sema &SemaRef,
Mike Stump1eb44332009-09-09 15:08:12 +00001535 DesignatedInitExpr *DIE,
1536 unsigned DesigIdx,
Francois Picheta0e27f02010-12-22 03:46:10 +00001537 IndirectFieldDecl *IndirectField) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001538 typedef DesignatedInitExpr::Designator Designator;
1539
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001540 // Build the replacement designators.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001541 SmallVector<Designator, 4> Replacements;
Francois Picheta0e27f02010-12-22 03:46:10 +00001542 for (IndirectFieldDecl::chain_iterator PI = IndirectField->chain_begin(),
1543 PE = IndirectField->chain_end(); PI != PE; ++PI) {
1544 if (PI + 1 == PE)
Mike Stump1eb44332009-09-09 15:08:12 +00001545 Replacements.push_back(Designator((IdentifierInfo *)0,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001546 DIE->getDesignator(DesigIdx)->getDotLoc(),
1547 DIE->getDesignator(DesigIdx)->getFieldLoc()));
1548 else
1549 Replacements.push_back(Designator((IdentifierInfo *)0, SourceLocation(),
1550 SourceLocation()));
Francois Picheta0e27f02010-12-22 03:46:10 +00001551 assert(isa<FieldDecl>(*PI));
1552 Replacements.back().setField(cast<FieldDecl>(*PI));
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001553 }
1554
1555 // Expand the current designator into the set of replacement
1556 // designators, so we have a full subobject path down to where the
1557 // member of the anonymous struct/union is actually stored.
Douglas Gregor319d57f2010-01-06 23:17:19 +00001558 DIE->ExpandDesignator(SemaRef.Context, DesigIdx, &Replacements[0],
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001559 &Replacements[0] + Replacements.size());
Francois Picheta0e27f02010-12-22 03:46:10 +00001560}
Mike Stump1eb44332009-09-09 15:08:12 +00001561
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001562/// \brief Given an implicit anonymous field, search the IndirectField that
Francois Picheta0e27f02010-12-22 03:46:10 +00001563/// corresponds to FieldName.
1564static IndirectFieldDecl *FindIndirectFieldDesignator(FieldDecl *AnonField,
1565 IdentifierInfo *FieldName) {
Argyrios Kyrtzidisb22b0a52012-09-10 22:04:26 +00001566 if (!FieldName)
1567 return 0;
1568
Francois Picheta0e27f02010-12-22 03:46:10 +00001569 assert(AnonField->isAnonymousStructOrUnion());
1570 Decl *NextDecl = AnonField->getNextDeclInContext();
Aaron Ballman3e78b192012-02-09 22:16:56 +00001571 while (IndirectFieldDecl *IF =
1572 dyn_cast_or_null<IndirectFieldDecl>(NextDecl)) {
Argyrios Kyrtzidisb22b0a52012-09-10 22:04:26 +00001573 if (FieldName == IF->getAnonField()->getIdentifier())
Francois Picheta0e27f02010-12-22 03:46:10 +00001574 return IF;
1575 NextDecl = NextDecl->getNextDeclInContext();
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001576 }
Francois Picheta0e27f02010-12-22 03:46:10 +00001577 return 0;
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001578}
1579
Sebastian Redl14b0c192011-09-24 17:48:00 +00001580static DesignatedInitExpr *CloneDesignatedInitExpr(Sema &SemaRef,
1581 DesignatedInitExpr *DIE) {
1582 unsigned NumIndexExprs = DIE->getNumSubExprs() - 1;
1583 SmallVector<Expr*, 4> IndexExprs(NumIndexExprs);
1584 for (unsigned I = 0; I < NumIndexExprs; ++I)
1585 IndexExprs[I] = DIE->getSubExpr(I + 1);
1586 return DesignatedInitExpr::Create(SemaRef.Context, DIE->designators_begin(),
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001587 DIE->size(), IndexExprs,
1588 DIE->getEqualOrColonLoc(),
Sebastian Redl14b0c192011-09-24 17:48:00 +00001589 DIE->usesGNUSyntax(), DIE->getInit());
1590}
1591
Kaelyn Uhrain425d6312012-01-12 19:27:05 +00001592namespace {
1593
1594// Callback to only accept typo corrections that are for field members of
1595// the given struct or union.
1596class FieldInitializerValidatorCCC : public CorrectionCandidateCallback {
1597 public:
1598 explicit FieldInitializerValidatorCCC(RecordDecl *RD)
1599 : Record(RD) {}
1600
1601 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
1602 FieldDecl *FD = candidate.getCorrectionDeclAs<FieldDecl>();
1603 return FD && FD->getDeclContext()->getRedeclContext()->Equals(Record);
1604 }
1605
1606 private:
1607 RecordDecl *Record;
1608};
1609
1610}
1611
Douglas Gregor05c13a32009-01-22 00:58:24 +00001612/// @brief Check the well-formedness of a C99 designated initializer.
1613///
1614/// Determines whether the designated initializer @p DIE, which
1615/// resides at the given @p Index within the initializer list @p
1616/// IList, is well-formed for a current object of type @p DeclType
1617/// (C99 6.7.8). The actual subobject that this designator refers to
Mike Stump1eb44332009-09-09 15:08:12 +00001618/// within the current subobject is returned in either
Douglas Gregor4c678342009-01-28 21:54:33 +00001619/// @p NextField or @p NextElementIndex (whichever is appropriate).
Douglas Gregor05c13a32009-01-22 00:58:24 +00001620///
1621/// @param IList The initializer list in which this designated
1622/// initializer occurs.
1623///
Douglas Gregor71199712009-04-15 04:56:10 +00001624/// @param DIE The designated initializer expression.
1625///
1626/// @param DesigIdx The index of the current designator.
Douglas Gregor05c13a32009-01-22 00:58:24 +00001627///
Dmitri Gribenko70517ca2012-08-23 17:58:28 +00001628/// @param CurrentObjectType The type of the "current object" (C99 6.7.8p17),
Douglas Gregor05c13a32009-01-22 00:58:24 +00001629/// into which the designation in @p DIE should refer.
1630///
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001631/// @param NextField If non-NULL and the first designator in @p DIE is
1632/// a field, this will be set to the field declaration corresponding
1633/// to the field named by the designator.
Douglas Gregor05c13a32009-01-22 00:58:24 +00001634///
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001635/// @param NextElementIndex If non-NULL and the first designator in @p
1636/// DIE is an array designator or GNU array-range designator, this
1637/// will be set to the last index initialized by this designator.
Douglas Gregor05c13a32009-01-22 00:58:24 +00001638///
1639/// @param Index Index into @p IList where the designated initializer
1640/// @p DIE occurs.
1641///
Douglas Gregor4c678342009-01-28 21:54:33 +00001642/// @param StructuredList The initializer list expression that
1643/// describes all of the subobject initializers in the order they'll
1644/// actually be initialized.
1645///
Douglas Gregor05c13a32009-01-22 00:58:24 +00001646/// @returns true if there was an error, false otherwise.
Mike Stump1eb44332009-09-09 15:08:12 +00001647bool
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001648InitListChecker::CheckDesignatedInitializer(const InitializedEntity &Entity,
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001649 InitListExpr *IList,
Sebastian Redl14b0c192011-09-24 17:48:00 +00001650 DesignatedInitExpr *DIE,
1651 unsigned DesigIdx,
1652 QualType &CurrentObjectType,
1653 RecordDecl::field_iterator *NextField,
1654 llvm::APSInt *NextElementIndex,
1655 unsigned &Index,
1656 InitListExpr *StructuredList,
1657 unsigned &StructuredIndex,
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001658 bool FinishSubobjectInit,
1659 bool TopLevelObject) {
Douglas Gregor71199712009-04-15 04:56:10 +00001660 if (DesigIdx == DIE->size()) {
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001661 // Check the actual initialization for the designated object type.
1662 bool prevHadError = hadError;
Douglas Gregor6fbdc6b2009-01-29 00:39:20 +00001663
1664 // Temporarily remove the designator expression from the
1665 // initializer list that the child calls see, so that we don't try
1666 // to re-process the designator.
1667 unsigned OldIndex = Index;
1668 IList->setInit(OldIndex, DIE->getInit());
1669
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001670 CheckSubElementType(Entity, IList, CurrentObjectType, Index,
Douglas Gregor4c678342009-01-28 21:54:33 +00001671 StructuredList, StructuredIndex);
Douglas Gregor6fbdc6b2009-01-29 00:39:20 +00001672
1673 // Restore the designated initializer expression in the syntactic
1674 // form of the initializer list.
1675 if (IList->getInit(OldIndex) != DIE->getInit())
1676 DIE->setInit(IList->getInit(OldIndex));
1677 IList->setInit(OldIndex, DIE);
1678
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001679 return hadError && !prevHadError;
Douglas Gregor05c13a32009-01-22 00:58:24 +00001680 }
1681
Douglas Gregor71199712009-04-15 04:56:10 +00001682 DesignatedInitExpr::Designator *D = DIE->getDesignator(DesigIdx);
Sebastian Redl14b0c192011-09-24 17:48:00 +00001683 bool IsFirstDesignator = (DesigIdx == 0);
1684 if (!VerifyOnly) {
1685 assert((IsFirstDesignator || StructuredList) &&
1686 "Need a non-designated initializer list to start from");
1687
1688 // Determine the structural initializer list that corresponds to the
1689 // current subobject.
Benjamin Kramera7894162012-02-23 14:48:40 +00001690 StructuredList = IsFirstDesignator? SyntacticToSemantic.lookup(IList)
Sebastian Redl14b0c192011-09-24 17:48:00 +00001691 : getStructuredSubobjectInit(IList, Index, CurrentObjectType,
1692 StructuredList, StructuredIndex,
Erik Verbruggen65d78312012-12-25 14:51:39 +00001693 SourceRange(D->getLocStart(),
1694 DIE->getLocEnd()));
Sebastian Redl14b0c192011-09-24 17:48:00 +00001695 assert(StructuredList && "Expected a structured initializer list");
1696 }
Douglas Gregor4c678342009-01-28 21:54:33 +00001697
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001698 if (D->isFieldDesignator()) {
1699 // C99 6.7.8p7:
1700 //
1701 // If a designator has the form
1702 //
1703 // . identifier
1704 //
1705 // then the current object (defined below) shall have
1706 // structure or union type and the identifier shall be the
Mike Stump1eb44332009-09-09 15:08:12 +00001707 // name of a member of that type.
Ted Kremenek6217b802009-07-29 21:53:49 +00001708 const RecordType *RT = CurrentObjectType->getAs<RecordType>();
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001709 if (!RT) {
1710 SourceLocation Loc = D->getDotLoc();
1711 if (Loc.isInvalid())
1712 Loc = D->getFieldLoc();
Sebastian Redl14b0c192011-09-24 17:48:00 +00001713 if (!VerifyOnly)
1714 SemaRef.Diag(Loc, diag::err_field_designator_non_aggr)
David Blaikie4e4d0842012-03-11 07:00:24 +00001715 << SemaRef.getLangOpts().CPlusPlus << CurrentObjectType;
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001716 ++Index;
1717 return true;
1718 }
1719
Douglas Gregor4c678342009-01-28 21:54:33 +00001720 // Note: we perform a linear search of the fields here, despite
1721 // the fact that we have a faster lookup method, because we always
1722 // need to compute the field's index.
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001723 FieldDecl *KnownField = D->getField();
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001724 IdentifierInfo *FieldName = D->getFieldName();
Douglas Gregor4c678342009-01-28 21:54:33 +00001725 unsigned FieldIndex = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001726 RecordDecl::field_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001727 Field = RT->getDecl()->field_begin(),
1728 FieldEnd = RT->getDecl()->field_end();
Douglas Gregor4c678342009-01-28 21:54:33 +00001729 for (; Field != FieldEnd; ++Field) {
1730 if (Field->isUnnamedBitfield())
1731 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001732
Francois Picheta0e27f02010-12-22 03:46:10 +00001733 // If we find a field representing an anonymous field, look in the
1734 // IndirectFieldDecl that follow for the designated initializer.
1735 if (!KnownField && Field->isAnonymousStructOrUnion()) {
1736 if (IndirectFieldDecl *IF =
David Blaikie581deb32012-06-06 20:45:41 +00001737 FindIndirectFieldDesignator(*Field, FieldName)) {
Sebastian Redl14b0c192011-09-24 17:48:00 +00001738 // In verify mode, don't modify the original.
1739 if (VerifyOnly)
1740 DIE = CloneDesignatedInitExpr(SemaRef, DIE);
Francois Picheta0e27f02010-12-22 03:46:10 +00001741 ExpandAnonymousFieldDesignator(SemaRef, DIE, DesigIdx, IF);
1742 D = DIE->getDesignator(DesigIdx);
1743 break;
1744 }
1745 }
David Blaikie581deb32012-06-06 20:45:41 +00001746 if (KnownField && KnownField == *Field)
Douglas Gregor022d13d2010-10-08 20:44:28 +00001747 break;
1748 if (FieldName && FieldName == Field->getIdentifier())
Douglas Gregor4c678342009-01-28 21:54:33 +00001749 break;
1750
1751 ++FieldIndex;
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001752 }
1753
Douglas Gregor4c678342009-01-28 21:54:33 +00001754 if (Field == FieldEnd) {
Benjamin Kramera41ee492011-09-25 02:41:26 +00001755 if (VerifyOnly) {
1756 ++Index;
Sebastian Redl14b0c192011-09-24 17:48:00 +00001757 return true; // No typo correction when just trying this out.
Benjamin Kramera41ee492011-09-25 02:41:26 +00001758 }
Sebastian Redl14b0c192011-09-24 17:48:00 +00001759
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001760 // There was no normal field in the struct with the designated
1761 // name. Perform another lookup for this name, which may find
1762 // something that we can't designate (e.g., a member function),
1763 // may find nothing, or may find a member of an anonymous
Mike Stump1eb44332009-09-09 15:08:12 +00001764 // struct/union.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001765 DeclContext::lookup_result Lookup = RT->getDecl()->lookup(FieldName);
Douglas Gregorc171e3b2010-01-01 00:03:05 +00001766 FieldDecl *ReplacementField = 0;
David Blaikie3bc93e32012-12-19 00:45:41 +00001767 if (Lookup.empty()) {
Douglas Gregorc171e3b2010-01-01 00:03:05 +00001768 // Name lookup didn't find anything. Determine whether this
1769 // was a typo for another field name.
Kaelyn Uhrain425d6312012-01-12 19:27:05 +00001770 FieldInitializerValidatorCCC Validator(RT->getDecl());
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001771 TypoCorrection Corrected = SemaRef.CorrectTypo(
1772 DeclarationNameInfo(FieldName, D->getFieldLoc()),
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00001773 Sema::LookupMemberName, /*Scope=*/0, /*SS=*/0, Validator,
Kaelyn Uhrain425d6312012-01-12 19:27:05 +00001774 RT->getDecl());
1775 if (Corrected) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001776 std::string CorrectedStr(
David Blaikie4e4d0842012-03-11 07:00:24 +00001777 Corrected.getAsString(SemaRef.getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001778 std::string CorrectedQuotedStr(
David Blaikie4e4d0842012-03-11 07:00:24 +00001779 Corrected.getQuoted(SemaRef.getLangOpts()));
Kaelyn Uhrain425d6312012-01-12 19:27:05 +00001780 ReplacementField = Corrected.getCorrectionDeclAs<FieldDecl>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001781 SemaRef.Diag(D->getFieldLoc(),
Douglas Gregorc171e3b2010-01-01 00:03:05 +00001782 diag::err_field_designator_unknown_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001783 << FieldName << CurrentObjectType << CorrectedQuotedStr
1784 << FixItHint::CreateReplacement(D->getFieldLoc(), CorrectedStr);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001785 SemaRef.Diag(ReplacementField->getLocation(),
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001786 diag::note_previous_decl) << CorrectedQuotedStr;
Benjamin Kramera41ee492011-09-25 02:41:26 +00001787 hadError = true;
Douglas Gregorc171e3b2010-01-01 00:03:05 +00001788 } else {
1789 SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_unknown)
1790 << FieldName << CurrentObjectType;
1791 ++Index;
1792 return true;
1793 }
Douglas Gregorc171e3b2010-01-01 00:03:05 +00001794 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001795
Douglas Gregorc171e3b2010-01-01 00:03:05 +00001796 if (!ReplacementField) {
Douglas Gregor4c678342009-01-28 21:54:33 +00001797 // Name lookup found something, but it wasn't a field.
Chris Lattner08202542009-02-24 22:50:46 +00001798 SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_nonfield)
Douglas Gregor4c678342009-01-28 21:54:33 +00001799 << FieldName;
David Blaikie3bc93e32012-12-19 00:45:41 +00001800 SemaRef.Diag(Lookup.front()->getLocation(),
Douglas Gregor4c678342009-01-28 21:54:33 +00001801 diag::note_field_designator_found);
Eli Friedmanba79fc22009-04-16 17:49:48 +00001802 ++Index;
1803 return true;
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001804 }
Douglas Gregorc171e3b2010-01-01 00:03:05 +00001805
Francois Picheta0e27f02010-12-22 03:46:10 +00001806 if (!KnownField) {
Douglas Gregorc171e3b2010-01-01 00:03:05 +00001807 // The replacement field comes from typo correction; find it
1808 // in the list of fields.
1809 FieldIndex = 0;
1810 Field = RT->getDecl()->field_begin();
1811 for (; Field != FieldEnd; ++Field) {
1812 if (Field->isUnnamedBitfield())
1813 continue;
1814
David Blaikie581deb32012-06-06 20:45:41 +00001815 if (ReplacementField == *Field ||
Douglas Gregorc171e3b2010-01-01 00:03:05 +00001816 Field->getIdentifier() == ReplacementField->getIdentifier())
1817 break;
1818
1819 ++FieldIndex;
1820 }
1821 }
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001822 }
Douglas Gregor4c678342009-01-28 21:54:33 +00001823
1824 // All of the fields of a union are located at the same place in
1825 // the initializer list.
Douglas Gregor0bb76892009-01-29 16:53:55 +00001826 if (RT->getDecl()->isUnion()) {
Douglas Gregor4c678342009-01-28 21:54:33 +00001827 FieldIndex = 0;
Sebastian Redl14b0c192011-09-24 17:48:00 +00001828 if (!VerifyOnly)
David Blaikie581deb32012-06-06 20:45:41 +00001829 StructuredList->setInitializedFieldInUnion(*Field);
Douglas Gregor0bb76892009-01-29 16:53:55 +00001830 }
Douglas Gregor4c678342009-01-28 21:54:33 +00001831
Douglas Gregor54001c12011-06-29 21:51:31 +00001832 // Make sure we can use this declaration.
Sebastian Redl14b0c192011-09-24 17:48:00 +00001833 bool InvalidUse;
1834 if (VerifyOnly)
David Blaikie581deb32012-06-06 20:45:41 +00001835 InvalidUse = !SemaRef.CanUseDecl(*Field);
Sebastian Redl14b0c192011-09-24 17:48:00 +00001836 else
David Blaikie581deb32012-06-06 20:45:41 +00001837 InvalidUse = SemaRef.DiagnoseUseOfDecl(*Field, D->getFieldLoc());
Sebastian Redl14b0c192011-09-24 17:48:00 +00001838 if (InvalidUse) {
Douglas Gregor54001c12011-06-29 21:51:31 +00001839 ++Index;
1840 return true;
Sebastian Redl14b0c192011-09-24 17:48:00 +00001841 }
Douglas Gregor54001c12011-06-29 21:51:31 +00001842
Sebastian Redl14b0c192011-09-24 17:48:00 +00001843 if (!VerifyOnly) {
1844 // Update the designator with the field declaration.
David Blaikie581deb32012-06-06 20:45:41 +00001845 D->setField(*Field);
Mike Stump1eb44332009-09-09 15:08:12 +00001846
Sebastian Redl14b0c192011-09-24 17:48:00 +00001847 // Make sure that our non-designated initializer list has space
1848 // for a subobject corresponding to this field.
1849 if (FieldIndex >= StructuredList->getNumInits())
1850 StructuredList->resizeInits(SemaRef.Context, FieldIndex + 1);
1851 }
Douglas Gregor4c678342009-01-28 21:54:33 +00001852
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001853 // This designator names a flexible array member.
1854 if (Field->getType()->isIncompleteArrayType()) {
1855 bool Invalid = false;
Douglas Gregor71199712009-04-15 04:56:10 +00001856 if ((DesigIdx + 1) != DIE->size()) {
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001857 // We can't designate an object within the flexible array
1858 // member (because GCC doesn't allow it).
Sebastian Redl14b0c192011-09-24 17:48:00 +00001859 if (!VerifyOnly) {
1860 DesignatedInitExpr::Designator *NextD
1861 = DIE->getDesignator(DesigIdx + 1);
Erik Verbruggen65d78312012-12-25 14:51:39 +00001862 SemaRef.Diag(NextD->getLocStart(),
Sebastian Redl14b0c192011-09-24 17:48:00 +00001863 diag::err_designator_into_flexible_array_member)
Erik Verbruggen65d78312012-12-25 14:51:39 +00001864 << SourceRange(NextD->getLocStart(),
1865 DIE->getLocEnd());
Sebastian Redl14b0c192011-09-24 17:48:00 +00001866 SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
David Blaikie581deb32012-06-06 20:45:41 +00001867 << *Field;
Sebastian Redl14b0c192011-09-24 17:48:00 +00001868 }
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001869 Invalid = true;
1870 }
1871
Chris Lattner9046c222010-10-10 17:49:49 +00001872 if (!hadError && !isa<InitListExpr>(DIE->getInit()) &&
1873 !isa<StringLiteral>(DIE->getInit())) {
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001874 // The initializer is not an initializer list.
Sebastian Redl14b0c192011-09-24 17:48:00 +00001875 if (!VerifyOnly) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00001876 SemaRef.Diag(DIE->getInit()->getLocStart(),
Sebastian Redl14b0c192011-09-24 17:48:00 +00001877 diag::err_flexible_array_init_needs_braces)
1878 << DIE->getInit()->getSourceRange();
1879 SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
David Blaikie581deb32012-06-06 20:45:41 +00001880 << *Field;
Sebastian Redl14b0c192011-09-24 17:48:00 +00001881 }
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001882 Invalid = true;
1883 }
1884
Eli Friedmanf40fd6b2011-08-23 22:24:57 +00001885 // Check GNU flexible array initializer.
David Blaikie581deb32012-06-06 20:45:41 +00001886 if (!Invalid && CheckFlexibleArrayInit(Entity, DIE->getInit(), *Field,
Eli Friedmanf40fd6b2011-08-23 22:24:57 +00001887 TopLevelObject))
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001888 Invalid = true;
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001889
1890 if (Invalid) {
1891 ++Index;
1892 return true;
1893 }
1894
1895 // Initialize the array.
1896 bool prevHadError = hadError;
1897 unsigned newStructuredIndex = FieldIndex;
1898 unsigned OldIndex = Index;
1899 IList->setInit(Index, DIE->getInit());
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001900
1901 InitializedEntity MemberEntity =
David Blaikie581deb32012-06-06 20:45:41 +00001902 InitializedEntity::InitializeMember(*Field, &Entity);
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001903 CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001904 StructuredList, newStructuredIndex);
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001905
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001906 IList->setInit(OldIndex, DIE);
1907 if (hadError && !prevHadError) {
1908 ++Field;
1909 ++FieldIndex;
1910 if (NextField)
1911 *NextField = Field;
1912 StructuredIndex = FieldIndex;
1913 return true;
1914 }
1915 } else {
1916 // Recurse to check later designated subobjects.
David Blaikie262bc182012-04-30 02:36:29 +00001917 QualType FieldType = Field->getType();
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001918 unsigned newStructuredIndex = FieldIndex;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001919
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001920 InitializedEntity MemberEntity =
David Blaikie581deb32012-06-06 20:45:41 +00001921 InitializedEntity::InitializeMember(*Field, &Entity);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001922 if (CheckDesignatedInitializer(MemberEntity, IList, DIE, DesigIdx + 1,
1923 FieldType, 0, 0, Index,
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00001924 StructuredList, newStructuredIndex,
Douglas Gregoreeb15d42009-02-04 22:46:25 +00001925 true, false))
1926 return true;
1927 }
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001928
1929 // Find the position of the next field to be initialized in this
1930 // subobject.
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001931 ++Field;
Douglas Gregor4c678342009-01-28 21:54:33 +00001932 ++FieldIndex;
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001933
1934 // If this the first designator, our caller will continue checking
1935 // the rest of this struct/class/union subobject.
1936 if (IsFirstDesignator) {
1937 if (NextField)
1938 *NextField = Field;
Douglas Gregor4c678342009-01-28 21:54:33 +00001939 StructuredIndex = FieldIndex;
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001940 return false;
1941 }
1942
Douglas Gregor34e79462009-01-28 23:36:17 +00001943 if (!FinishSubobjectInit)
1944 return false;
1945
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001946 // We've already initialized something in the union; we're done.
1947 if (RT->getDecl()->isUnion())
1948 return hadError;
1949
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001950 // Check the remaining fields within this class/struct/union subobject.
1951 bool prevHadError = hadError;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001952
Anders Carlsson8ff9e862010-01-23 23:23:01 +00001953 CheckStructUnionTypes(Entity, IList, CurrentObjectType, Field, false, Index,
Douglas Gregor4c678342009-01-28 21:54:33 +00001954 StructuredList, FieldIndex);
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001955 return hadError && !prevHadError;
1956 }
1957
1958 // C99 6.7.8p6:
1959 //
1960 // If a designator has the form
1961 //
1962 // [ constant-expression ]
1963 //
1964 // then the current object (defined below) shall have array
1965 // type and the expression shall be an integer constant
1966 // expression. If the array is of unknown size, any
1967 // nonnegative value is valid.
1968 //
1969 // Additionally, cope with the GNU extension that permits
1970 // designators of the form
1971 //
1972 // [ constant-expression ... constant-expression ]
Chris Lattner08202542009-02-24 22:50:46 +00001973 const ArrayType *AT = SemaRef.Context.getAsArrayType(CurrentObjectType);
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001974 if (!AT) {
Sebastian Redl14b0c192011-09-24 17:48:00 +00001975 if (!VerifyOnly)
1976 SemaRef.Diag(D->getLBracketLoc(), diag::err_array_designator_non_array)
1977 << CurrentObjectType;
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001978 ++Index;
1979 return true;
1980 }
1981
1982 Expr *IndexExpr = 0;
Douglas Gregor34e79462009-01-28 23:36:17 +00001983 llvm::APSInt DesignatedStartIndex, DesignatedEndIndex;
1984 if (D->isArrayDesignator()) {
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001985 IndexExpr = DIE->getArrayIndex(*D);
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001986 DesignatedStartIndex = IndexExpr->EvaluateKnownConstInt(SemaRef.Context);
Douglas Gregor34e79462009-01-28 23:36:17 +00001987 DesignatedEndIndex = DesignatedStartIndex;
1988 } else {
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001989 assert(D->isArrayRangeDesignator() && "Need array-range designator");
Douglas Gregor34e79462009-01-28 23:36:17 +00001990
Mike Stump1eb44332009-09-09 15:08:12 +00001991 DesignatedStartIndex =
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001992 DIE->getArrayRangeStart(*D)->EvaluateKnownConstInt(SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +00001993 DesignatedEndIndex =
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001994 DIE->getArrayRangeEnd(*D)->EvaluateKnownConstInt(SemaRef.Context);
Douglas Gregor87f55cf2009-01-22 23:26:18 +00001995 IndexExpr = DIE->getArrayRangeEnd(*D);
Douglas Gregor34e79462009-01-28 23:36:17 +00001996
Chris Lattnere0fd8322011-02-19 22:28:58 +00001997 // Codegen can't handle evaluating array range designators that have side
1998 // effects, because we replicate the AST value for each initialized element.
1999 // As such, set the sawArrayRangeDesignator() bit if we initialize multiple
2000 // elements with something that has a side effect, so codegen can emit an
2001 // "error unsupported" error instead of miscompiling the app.
2002 if (DesignatedStartIndex.getZExtValue()!=DesignatedEndIndex.getZExtValue()&&
Sebastian Redl14b0c192011-09-24 17:48:00 +00002003 DIE->getInit()->HasSideEffects(SemaRef.Context) && !VerifyOnly)
Douglas Gregora9c87802009-01-29 19:42:23 +00002004 FullyStructuredList->sawArrayRangeDesignator();
Douglas Gregor87f55cf2009-01-22 23:26:18 +00002005 }
2006
Douglas Gregor87f55cf2009-01-22 23:26:18 +00002007 if (isa<ConstantArrayType>(AT)) {
2008 llvm::APSInt MaxElements(cast<ConstantArrayType>(AT)->getSize(), false);
Jay Foad9f71a8f2010-12-07 08:25:34 +00002009 DesignatedStartIndex
2010 = DesignatedStartIndex.extOrTrunc(MaxElements.getBitWidth());
Douglas Gregor34e79462009-01-28 23:36:17 +00002011 DesignatedStartIndex.setIsUnsigned(MaxElements.isUnsigned());
Jay Foad9f71a8f2010-12-07 08:25:34 +00002012 DesignatedEndIndex
2013 = DesignatedEndIndex.extOrTrunc(MaxElements.getBitWidth());
Douglas Gregor34e79462009-01-28 23:36:17 +00002014 DesignatedEndIndex.setIsUnsigned(MaxElements.isUnsigned());
2015 if (DesignatedEndIndex >= MaxElements) {
Eli Friedmana4e20e12011-09-26 18:53:43 +00002016 if (!VerifyOnly)
Daniel Dunbar96a00142012-03-09 18:35:03 +00002017 SemaRef.Diag(IndexExpr->getLocStart(),
Sebastian Redl14b0c192011-09-24 17:48:00 +00002018 diag::err_array_designator_too_large)
2019 << DesignatedEndIndex.toString(10) << MaxElements.toString(10)
2020 << IndexExpr->getSourceRange();
Douglas Gregor87f55cf2009-01-22 23:26:18 +00002021 ++Index;
2022 return true;
2023 }
Douglas Gregor34e79462009-01-28 23:36:17 +00002024 } else {
2025 // Make sure the bit-widths and signedness match.
2026 if (DesignatedStartIndex.getBitWidth() > DesignatedEndIndex.getBitWidth())
Jay Foad9f71a8f2010-12-07 08:25:34 +00002027 DesignatedEndIndex
2028 = DesignatedEndIndex.extend(DesignatedStartIndex.getBitWidth());
Chris Lattner3bf68932009-04-25 21:59:05 +00002029 else if (DesignatedStartIndex.getBitWidth() <
2030 DesignatedEndIndex.getBitWidth())
Jay Foad9f71a8f2010-12-07 08:25:34 +00002031 DesignatedStartIndex
2032 = DesignatedStartIndex.extend(DesignatedEndIndex.getBitWidth());
Douglas Gregor34e79462009-01-28 23:36:17 +00002033 DesignatedStartIndex.setIsUnsigned(true);
2034 DesignatedEndIndex.setIsUnsigned(true);
Douglas Gregor87f55cf2009-01-22 23:26:18 +00002035 }
Mike Stump1eb44332009-09-09 15:08:12 +00002036
Douglas Gregor4c678342009-01-28 21:54:33 +00002037 // Make sure that our non-designated initializer list has space
2038 // for a subobject corresponding to this array element.
Sebastian Redl14b0c192011-09-24 17:48:00 +00002039 if (!VerifyOnly &&
2040 DesignatedEndIndex.getZExtValue() >= StructuredList->getNumInits())
Mike Stump1eb44332009-09-09 15:08:12 +00002041 StructuredList->resizeInits(SemaRef.Context,
Douglas Gregor34e79462009-01-28 23:36:17 +00002042 DesignatedEndIndex.getZExtValue() + 1);
Douglas Gregor4c678342009-01-28 21:54:33 +00002043
Douglas Gregor34e79462009-01-28 23:36:17 +00002044 // Repeatedly perform subobject initializations in the range
2045 // [DesignatedStartIndex, DesignatedEndIndex].
Douglas Gregor87f55cf2009-01-22 23:26:18 +00002046
Douglas Gregor34e79462009-01-28 23:36:17 +00002047 // Move to the next designator
2048 unsigned ElementIndex = DesignatedStartIndex.getZExtValue();
2049 unsigned OldIndex = Index;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002050
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00002051 InitializedEntity ElementEntity =
Anders Carlsson8ff9e862010-01-23 23:23:01 +00002052 InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00002053
Douglas Gregor34e79462009-01-28 23:36:17 +00002054 while (DesignatedStartIndex <= DesignatedEndIndex) {
2055 // Recurse to check later designated subobjects.
2056 QualType ElementType = AT->getElementType();
2057 Index = OldIndex;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002058
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00002059 ElementEntity.setElementIndex(ElementIndex);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002060 if (CheckDesignatedInitializer(ElementEntity, IList, DIE, DesigIdx + 1,
2061 ElementType, 0, 0, Index,
Anders Carlsson9a8a70e2010-01-23 22:49:02 +00002062 StructuredList, ElementIndex,
Douglas Gregoreeb15d42009-02-04 22:46:25 +00002063 (DesignatedStartIndex == DesignatedEndIndex),
2064 false))
Douglas Gregor34e79462009-01-28 23:36:17 +00002065 return true;
2066
2067 // Move to the next index in the array that we'll be initializing.
2068 ++DesignatedStartIndex;
2069 ElementIndex = DesignatedStartIndex.getZExtValue();
2070 }
Douglas Gregor87f55cf2009-01-22 23:26:18 +00002071
2072 // If this the first designator, our caller will continue checking
2073 // the rest of this array subobject.
2074 if (IsFirstDesignator) {
2075 if (NextElementIndex)
Douglas Gregor34e79462009-01-28 23:36:17 +00002076 *NextElementIndex = DesignatedStartIndex;
Douglas Gregor4c678342009-01-28 21:54:33 +00002077 StructuredIndex = ElementIndex;
Douglas Gregor87f55cf2009-01-22 23:26:18 +00002078 return false;
2079 }
Mike Stump1eb44332009-09-09 15:08:12 +00002080
Douglas Gregor34e79462009-01-28 23:36:17 +00002081 if (!FinishSubobjectInit)
2082 return false;
2083
Douglas Gregor87f55cf2009-01-22 23:26:18 +00002084 // Check the remaining elements within this array subobject.
Douglas Gregor05c13a32009-01-22 00:58:24 +00002085 bool prevHadError = hadError;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002086 CheckArrayType(Entity, IList, CurrentObjectType, DesignatedStartIndex,
Anders Carlsson784f6992010-01-23 20:13:41 +00002087 /*SubobjectIsDesignatorContext=*/false, Index,
Douglas Gregor4c678342009-01-28 21:54:33 +00002088 StructuredList, ElementIndex);
Mike Stump1eb44332009-09-09 15:08:12 +00002089 return hadError && !prevHadError;
Douglas Gregor05c13a32009-01-22 00:58:24 +00002090}
2091
Douglas Gregor4c678342009-01-28 21:54:33 +00002092// Get the structured initializer list for a subobject of type
2093// @p CurrentObjectType.
2094InitListExpr *
2095InitListChecker::getStructuredSubobjectInit(InitListExpr *IList, unsigned Index,
2096 QualType CurrentObjectType,
2097 InitListExpr *StructuredList,
2098 unsigned StructuredIndex,
2099 SourceRange InitRange) {
Sebastian Redl14b0c192011-09-24 17:48:00 +00002100 if (VerifyOnly)
2101 return 0; // No structured list in verification-only mode.
Douglas Gregor4c678342009-01-28 21:54:33 +00002102 Expr *ExistingInit = 0;
2103 if (!StructuredList)
Benjamin Kramera7894162012-02-23 14:48:40 +00002104 ExistingInit = SyntacticToSemantic.lookup(IList);
Douglas Gregor4c678342009-01-28 21:54:33 +00002105 else if (StructuredIndex < StructuredList->getNumInits())
2106 ExistingInit = StructuredList->getInit(StructuredIndex);
Mike Stump1eb44332009-09-09 15:08:12 +00002107
Douglas Gregor4c678342009-01-28 21:54:33 +00002108 if (InitListExpr *Result = dyn_cast_or_null<InitListExpr>(ExistingInit))
2109 return Result;
2110
2111 if (ExistingInit) {
2112 // We are creating an initializer list that initializes the
2113 // subobjects of the current object, but there was already an
2114 // initialization that completely initialized the current
2115 // subobject, e.g., by a compound literal:
Mike Stump1eb44332009-09-09 15:08:12 +00002116 //
Douglas Gregor4c678342009-01-28 21:54:33 +00002117 // struct X { int a, b; };
2118 // struct X xs[] = { [0] = (struct X) { 1, 2 }, [0].b = 3 };
Mike Stump1eb44332009-09-09 15:08:12 +00002119 //
Douglas Gregor4c678342009-01-28 21:54:33 +00002120 // Here, xs[0].a == 0 and xs[0].b == 3, since the second,
2121 // designated initializer re-initializes the whole
2122 // subobject [0], overwriting previous initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00002123 SemaRef.Diag(InitRange.getBegin(),
Douglas Gregored8a93d2009-03-01 17:12:46 +00002124 diag::warn_subobject_initializer_overrides)
Douglas Gregor4c678342009-01-28 21:54:33 +00002125 << InitRange;
Daniel Dunbar96a00142012-03-09 18:35:03 +00002126 SemaRef.Diag(ExistingInit->getLocStart(),
Douglas Gregor4c678342009-01-28 21:54:33 +00002127 diag::note_previous_initializer)
Douglas Gregor54f07282009-01-28 23:43:32 +00002128 << /*FIXME:has side effects=*/0
Douglas Gregor4c678342009-01-28 21:54:33 +00002129 << ExistingInit->getSourceRange();
2130 }
2131
Mike Stump1eb44332009-09-09 15:08:12 +00002132 InitListExpr *Result
Ted Kremenek709210f2010-04-13 23:39:13 +00002133 = new (SemaRef.Context) InitListExpr(SemaRef.Context,
Dmitri Gribenko62ed8892013-05-05 20:40:26 +00002134 InitRange.getBegin(), None,
Ted Kremenekba7bc552010-02-19 01:50:18 +00002135 InitRange.getEnd());
Douglas Gregored8a93d2009-03-01 17:12:46 +00002136
Eli Friedman5c89c392012-02-23 02:25:10 +00002137 QualType ResultType = CurrentObjectType;
2138 if (!ResultType->isArrayType())
2139 ResultType = ResultType.getNonLValueExprType(SemaRef.Context);
2140 Result->setType(ResultType);
Douglas Gregor4c678342009-01-28 21:54:33 +00002141
Douglas Gregorfa219202009-03-20 23:58:33 +00002142 // Pre-allocate storage for the structured initializer list.
2143 unsigned NumElements = 0;
Douglas Gregor08457732009-03-21 18:13:52 +00002144 unsigned NumInits = 0;
Argyrios Kyrtzidisf8b17712011-04-28 18:53:55 +00002145 bool GotNumInits = false;
2146 if (!StructuredList) {
Douglas Gregor08457732009-03-21 18:13:52 +00002147 NumInits = IList->getNumInits();
Argyrios Kyrtzidisf8b17712011-04-28 18:53:55 +00002148 GotNumInits = true;
2149 } else if (Index < IList->getNumInits()) {
2150 if (InitListExpr *SubList = dyn_cast<InitListExpr>(IList->getInit(Index))) {
Douglas Gregor08457732009-03-21 18:13:52 +00002151 NumInits = SubList->getNumInits();
Argyrios Kyrtzidisf8b17712011-04-28 18:53:55 +00002152 GotNumInits = true;
2153 }
Douglas Gregor08457732009-03-21 18:13:52 +00002154 }
2155
Mike Stump1eb44332009-09-09 15:08:12 +00002156 if (const ArrayType *AType
Douglas Gregorfa219202009-03-20 23:58:33 +00002157 = SemaRef.Context.getAsArrayType(CurrentObjectType)) {
2158 if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType)) {
2159 NumElements = CAType->getSize().getZExtValue();
2160 // Simple heuristic so that we don't allocate a very large
2161 // initializer with many empty entries at the end.
Argyrios Kyrtzidisf8b17712011-04-28 18:53:55 +00002162 if (GotNumInits && NumElements > NumInits)
Douglas Gregorfa219202009-03-20 23:58:33 +00002163 NumElements = 0;
2164 }
John McCall183700f2009-09-21 23:43:11 +00002165 } else if (const VectorType *VType = CurrentObjectType->getAs<VectorType>())
Douglas Gregorfa219202009-03-20 23:58:33 +00002166 NumElements = VType->getNumElements();
Ted Kremenek6217b802009-07-29 21:53:49 +00002167 else if (const RecordType *RType = CurrentObjectType->getAs<RecordType>()) {
Douglas Gregorfa219202009-03-20 23:58:33 +00002168 RecordDecl *RDecl = RType->getDecl();
2169 if (RDecl->isUnion())
2170 NumElements = 1;
2171 else
Mike Stump1eb44332009-09-09 15:08:12 +00002172 NumElements = std::distance(RDecl->field_begin(),
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002173 RDecl->field_end());
Douglas Gregorfa219202009-03-20 23:58:33 +00002174 }
2175
Ted Kremenek709210f2010-04-13 23:39:13 +00002176 Result->reserveInits(SemaRef.Context, NumElements);
Douglas Gregorfa219202009-03-20 23:58:33 +00002177
Douglas Gregor4c678342009-01-28 21:54:33 +00002178 // Link this new initializer list into the structured initializer
2179 // lists.
2180 if (StructuredList)
Ted Kremenek709210f2010-04-13 23:39:13 +00002181 StructuredList->updateInit(SemaRef.Context, StructuredIndex, Result);
Douglas Gregor4c678342009-01-28 21:54:33 +00002182 else {
2183 Result->setSyntacticForm(IList);
2184 SyntacticToSemantic[IList] = Result;
2185 }
2186
2187 return Result;
2188}
2189
2190/// Update the initializer at index @p StructuredIndex within the
2191/// structured initializer list to the value @p expr.
2192void InitListChecker::UpdateStructuredListElement(InitListExpr *StructuredList,
2193 unsigned &StructuredIndex,
2194 Expr *expr) {
2195 // No structured initializer list to update
2196 if (!StructuredList)
2197 return;
2198
Ted Kremenek709210f2010-04-13 23:39:13 +00002199 if (Expr *PrevInit = StructuredList->updateInit(SemaRef.Context,
2200 StructuredIndex, expr)) {
Douglas Gregor4c678342009-01-28 21:54:33 +00002201 // This initializer overwrites a previous initializer. Warn.
Daniel Dunbar96a00142012-03-09 18:35:03 +00002202 SemaRef.Diag(expr->getLocStart(),
Douglas Gregor4c678342009-01-28 21:54:33 +00002203 diag::warn_initializer_overrides)
2204 << expr->getSourceRange();
Daniel Dunbar96a00142012-03-09 18:35:03 +00002205 SemaRef.Diag(PrevInit->getLocStart(),
Douglas Gregor4c678342009-01-28 21:54:33 +00002206 diag::note_previous_initializer)
Douglas Gregor54f07282009-01-28 23:43:32 +00002207 << /*FIXME:has side effects=*/0
Douglas Gregor4c678342009-01-28 21:54:33 +00002208 << PrevInit->getSourceRange();
2209 }
Mike Stump1eb44332009-09-09 15:08:12 +00002210
Douglas Gregor4c678342009-01-28 21:54:33 +00002211 ++StructuredIndex;
2212}
2213
Douglas Gregor05c13a32009-01-22 00:58:24 +00002214/// Check that the given Index expression is a valid array designator
Richard Smith282e7e62012-02-04 09:53:13 +00002215/// value. This is essentially just a wrapper around
Chris Lattner3bf68932009-04-25 21:59:05 +00002216/// VerifyIntegerConstantExpression that also checks for negative values
Douglas Gregor05c13a32009-01-22 00:58:24 +00002217/// and produces a reasonable diagnostic if there is a
Richard Smith282e7e62012-02-04 09:53:13 +00002218/// failure. Returns the index expression, possibly with an implicit cast
2219/// added, on success. If everything went okay, Value will receive the
2220/// value of the constant expression.
2221static ExprResult
Chris Lattner3bf68932009-04-25 21:59:05 +00002222CheckArrayDesignatorExpr(Sema &S, Expr *Index, llvm::APSInt &Value) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00002223 SourceLocation Loc = Index->getLocStart();
Douglas Gregor05c13a32009-01-22 00:58:24 +00002224
2225 // Make sure this is an integer constant expression.
Richard Smith282e7e62012-02-04 09:53:13 +00002226 ExprResult Result = S.VerifyIntegerConstantExpression(Index, &Value);
2227 if (Result.isInvalid())
2228 return Result;
Douglas Gregor05c13a32009-01-22 00:58:24 +00002229
Chris Lattner3bf68932009-04-25 21:59:05 +00002230 if (Value.isSigned() && Value.isNegative())
2231 return S.Diag(Loc, diag::err_array_designator_negative)
Douglas Gregor05c13a32009-01-22 00:58:24 +00002232 << Value.toString(10) << Index->getSourceRange();
2233
Douglas Gregor53d3d8e2009-01-23 21:04:18 +00002234 Value.setIsUnsigned(true);
Richard Smith282e7e62012-02-04 09:53:13 +00002235 return Result;
Douglas Gregor05c13a32009-01-22 00:58:24 +00002236}
2237
John McCall60d7b3a2010-08-24 06:29:42 +00002238ExprResult Sema::ActOnDesignatedInitializer(Designation &Desig,
Nick Lewycky7663f392010-11-20 01:29:55 +00002239 SourceLocation Loc,
2240 bool GNUSyntax,
2241 ExprResult Init) {
Douglas Gregor05c13a32009-01-22 00:58:24 +00002242 typedef DesignatedInitExpr::Designator ASTDesignator;
2243
2244 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002245 SmallVector<ASTDesignator, 32> Designators;
2246 SmallVector<Expr *, 32> InitExpressions;
Douglas Gregor05c13a32009-01-22 00:58:24 +00002247
2248 // Build designators and check array designator expressions.
2249 for (unsigned Idx = 0; Idx < Desig.getNumDesignators(); ++Idx) {
2250 const Designator &D = Desig.getDesignator(Idx);
2251 switch (D.getKind()) {
2252 case Designator::FieldDesignator:
Mike Stump1eb44332009-09-09 15:08:12 +00002253 Designators.push_back(ASTDesignator(D.getField(), D.getDotLoc(),
Douglas Gregor05c13a32009-01-22 00:58:24 +00002254 D.getFieldLoc()));
2255 break;
2256
2257 case Designator::ArrayDesignator: {
2258 Expr *Index = static_cast<Expr *>(D.getArrayIndex());
2259 llvm::APSInt IndexValue;
Richard Smith282e7e62012-02-04 09:53:13 +00002260 if (!Index->isTypeDependent() && !Index->isValueDependent())
2261 Index = CheckArrayDesignatorExpr(*this, Index, IndexValue).take();
2262 if (!Index)
Douglas Gregor05c13a32009-01-22 00:58:24 +00002263 Invalid = true;
2264 else {
2265 Designators.push_back(ASTDesignator(InitExpressions.size(),
Mike Stump1eb44332009-09-09 15:08:12 +00002266 D.getLBracketLoc(),
Douglas Gregor05c13a32009-01-22 00:58:24 +00002267 D.getRBracketLoc()));
2268 InitExpressions.push_back(Index);
2269 }
2270 break;
2271 }
2272
2273 case Designator::ArrayRangeDesignator: {
2274 Expr *StartIndex = static_cast<Expr *>(D.getArrayRangeStart());
2275 Expr *EndIndex = static_cast<Expr *>(D.getArrayRangeEnd());
2276 llvm::APSInt StartValue;
2277 llvm::APSInt EndValue;
Douglas Gregor9ea62762009-05-21 23:17:49 +00002278 bool StartDependent = StartIndex->isTypeDependent() ||
2279 StartIndex->isValueDependent();
2280 bool EndDependent = EndIndex->isTypeDependent() ||
2281 EndIndex->isValueDependent();
Richard Smith282e7e62012-02-04 09:53:13 +00002282 if (!StartDependent)
2283 StartIndex =
2284 CheckArrayDesignatorExpr(*this, StartIndex, StartValue).take();
2285 if (!EndDependent)
2286 EndIndex = CheckArrayDesignatorExpr(*this, EndIndex, EndValue).take();
2287
2288 if (!StartIndex || !EndIndex)
Douglas Gregor05c13a32009-01-22 00:58:24 +00002289 Invalid = true;
Douglas Gregord6f584f2009-01-23 22:22:29 +00002290 else {
2291 // Make sure we're comparing values with the same bit width.
Douglas Gregor9ea62762009-05-21 23:17:49 +00002292 if (StartDependent || EndDependent) {
2293 // Nothing to compute.
2294 } else if (StartValue.getBitWidth() > EndValue.getBitWidth())
Jay Foad9f71a8f2010-12-07 08:25:34 +00002295 EndValue = EndValue.extend(StartValue.getBitWidth());
Douglas Gregord6f584f2009-01-23 22:22:29 +00002296 else if (StartValue.getBitWidth() < EndValue.getBitWidth())
Jay Foad9f71a8f2010-12-07 08:25:34 +00002297 StartValue = StartValue.extend(EndValue.getBitWidth());
Douglas Gregord6f584f2009-01-23 22:22:29 +00002298
Douglas Gregorc4bb7bf2009-05-21 23:30:39 +00002299 if (!StartDependent && !EndDependent && EndValue < StartValue) {
Douglas Gregord6f584f2009-01-23 22:22:29 +00002300 Diag(D.getEllipsisLoc(), diag::err_array_designator_empty_range)
Mike Stump1eb44332009-09-09 15:08:12 +00002301 << StartValue.toString(10) << EndValue.toString(10)
Douglas Gregord6f584f2009-01-23 22:22:29 +00002302 << StartIndex->getSourceRange() << EndIndex->getSourceRange();
2303 Invalid = true;
2304 } else {
2305 Designators.push_back(ASTDesignator(InitExpressions.size(),
Mike Stump1eb44332009-09-09 15:08:12 +00002306 D.getLBracketLoc(),
Douglas Gregord6f584f2009-01-23 22:22:29 +00002307 D.getEllipsisLoc(),
2308 D.getRBracketLoc()));
2309 InitExpressions.push_back(StartIndex);
2310 InitExpressions.push_back(EndIndex);
2311 }
Douglas Gregor05c13a32009-01-22 00:58:24 +00002312 }
2313 break;
2314 }
2315 }
2316 }
2317
2318 if (Invalid || Init.isInvalid())
2319 return ExprError();
2320
2321 // Clear out the expressions within the designation.
2322 Desig.ClearExprs(*this);
2323
2324 DesignatedInitExpr *DIE
Jay Foadbeaaccd2009-05-21 09:52:38 +00002325 = DesignatedInitExpr::Create(Context,
2326 Designators.data(), Designators.size(),
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00002327 InitExpressions, Loc, GNUSyntax,
2328 Init.takeAs<Expr>());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002329
David Blaikie4e4d0842012-03-11 07:00:24 +00002330 if (!getLangOpts().C99)
Douglas Gregor2d75bbd2011-01-16 16:13:16 +00002331 Diag(DIE->getLocStart(), diag::ext_designated_init)
2332 << DIE->getSourceRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002333
Douglas Gregor05c13a32009-01-22 00:58:24 +00002334 return Owned(DIE);
2335}
Douglas Gregorc34ee5e2009-01-29 00:45:39 +00002336
Douglas Gregor20093b42009-12-09 23:02:17 +00002337//===----------------------------------------------------------------------===//
2338// Initialization entity
2339//===----------------------------------------------------------------------===//
2340
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002341InitializedEntity::InitializedEntity(ASTContext &Context, unsigned Index,
Douglas Gregorcb57fb92009-12-16 06:35:08 +00002342 const InitializedEntity &Parent)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002343 : Parent(&Parent), Index(Index)
Douglas Gregorcb57fb92009-12-16 06:35:08 +00002344{
Anders Carlssond3d824d2010-01-23 04:34:47 +00002345 if (const ArrayType *AT = Context.getAsArrayType(Parent.getType())) {
2346 Kind = EK_ArrayElement;
Douglas Gregord6542d82009-12-22 15:35:07 +00002347 Type = AT->getElementType();
Eli Friedman0c706c22011-09-19 23:17:44 +00002348 } else if (const VectorType *VT = Parent.getType()->getAs<VectorType>()) {
Anders Carlssond3d824d2010-01-23 04:34:47 +00002349 Kind = EK_VectorElement;
Eli Friedman0c706c22011-09-19 23:17:44 +00002350 Type = VT->getElementType();
2351 } else {
2352 const ComplexType *CT = Parent.getType()->getAs<ComplexType>();
2353 assert(CT && "Unexpected type");
2354 Kind = EK_ComplexElement;
2355 Type = CT->getElementType();
Anders Carlssond3d824d2010-01-23 04:34:47 +00002356 }
Douglas Gregor20093b42009-12-09 23:02:17 +00002357}
2358
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002359InitializedEntity InitializedEntity::InitializeBase(ASTContext &Context,
Anders Carlsson711f34a2010-04-21 19:52:01 +00002360 CXXBaseSpecifier *Base,
2361 bool IsInheritedVirtualBase)
Douglas Gregor20093b42009-12-09 23:02:17 +00002362{
2363 InitializedEntity Result;
2364 Result.Kind = EK_Base;
Anders Carlsson711f34a2010-04-21 19:52:01 +00002365 Result.Base = reinterpret_cast<uintptr_t>(Base);
2366 if (IsInheritedVirtualBase)
2367 Result.Base |= 0x01;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002368
Douglas Gregord6542d82009-12-22 15:35:07 +00002369 Result.Type = Base->getType();
Douglas Gregor20093b42009-12-09 23:02:17 +00002370 return Result;
2371}
2372
Douglas Gregor99a2e602009-12-16 01:38:02 +00002373DeclarationName InitializedEntity::getName() const {
2374 switch (getKind()) {
John McCallf85e1932011-06-15 23:02:42 +00002375 case EK_Parameter: {
2376 ParmVarDecl *D = reinterpret_cast<ParmVarDecl*>(Parameter & ~0x1);
2377 return (D ? D->getDeclName() : DeclarationName());
2378 }
Douglas Gregora188ff22009-12-22 16:09:06 +00002379
2380 case EK_Variable:
Douglas Gregor99a2e602009-12-16 01:38:02 +00002381 case EK_Member:
2382 return VariableOrMember->getDeclName();
2383
Douglas Gregor47736542012-02-15 16:57:26 +00002384 case EK_LambdaCapture:
2385 return Capture.Var->getDeclName();
2386
Douglas Gregor99a2e602009-12-16 01:38:02 +00002387 case EK_Result:
2388 case EK_Exception:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00002389 case EK_New:
Douglas Gregor99a2e602009-12-16 01:38:02 +00002390 case EK_Temporary:
2391 case EK_Base:
Sean Hunt059ce0d2011-05-01 07:04:31 +00002392 case EK_Delegating:
Anders Carlssond3d824d2010-01-23 04:34:47 +00002393 case EK_ArrayElement:
2394 case EK_VectorElement:
Eli Friedman0c706c22011-09-19 23:17:44 +00002395 case EK_ComplexElement:
Fariborz Jahanian310b1c42010-06-07 16:14:00 +00002396 case EK_BlockElement:
Douglas Gregor99a2e602009-12-16 01:38:02 +00002397 return DeclarationName();
2398 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002399
David Blaikie7530c032012-01-17 06:56:22 +00002400 llvm_unreachable("Invalid EntityKind!");
Douglas Gregor99a2e602009-12-16 01:38:02 +00002401}
2402
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00002403DeclaratorDecl *InitializedEntity::getDecl() const {
2404 switch (getKind()) {
2405 case EK_Variable:
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00002406 case EK_Member:
2407 return VariableOrMember;
2408
John McCallf85e1932011-06-15 23:02:42 +00002409 case EK_Parameter:
2410 return reinterpret_cast<ParmVarDecl*>(Parameter & ~0x1);
2411
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00002412 case EK_Result:
2413 case EK_Exception:
2414 case EK_New:
2415 case EK_Temporary:
2416 case EK_Base:
Sean Hunt059ce0d2011-05-01 07:04:31 +00002417 case EK_Delegating:
Anders Carlssond3d824d2010-01-23 04:34:47 +00002418 case EK_ArrayElement:
2419 case EK_VectorElement:
Eli Friedman0c706c22011-09-19 23:17:44 +00002420 case EK_ComplexElement:
Fariborz Jahanian310b1c42010-06-07 16:14:00 +00002421 case EK_BlockElement:
Douglas Gregor47736542012-02-15 16:57:26 +00002422 case EK_LambdaCapture:
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00002423 return 0;
2424 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002425
David Blaikie7530c032012-01-17 06:56:22 +00002426 llvm_unreachable("Invalid EntityKind!");
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00002427}
2428
Douglas Gregor3c9034c2010-05-15 00:13:29 +00002429bool InitializedEntity::allowsNRVO() const {
2430 switch (getKind()) {
2431 case EK_Result:
2432 case EK_Exception:
2433 return LocAndNRVO.NRVO;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002434
Douglas Gregor3c9034c2010-05-15 00:13:29 +00002435 case EK_Variable:
2436 case EK_Parameter:
2437 case EK_Member:
2438 case EK_New:
2439 case EK_Temporary:
2440 case EK_Base:
Sean Hunt059ce0d2011-05-01 07:04:31 +00002441 case EK_Delegating:
Douglas Gregor3c9034c2010-05-15 00:13:29 +00002442 case EK_ArrayElement:
2443 case EK_VectorElement:
Eli Friedman0c706c22011-09-19 23:17:44 +00002444 case EK_ComplexElement:
Fariborz Jahanian310b1c42010-06-07 16:14:00 +00002445 case EK_BlockElement:
Douglas Gregor47736542012-02-15 16:57:26 +00002446 case EK_LambdaCapture:
Douglas Gregor3c9034c2010-05-15 00:13:29 +00002447 break;
2448 }
2449
2450 return false;
2451}
2452
Douglas Gregor20093b42009-12-09 23:02:17 +00002453//===----------------------------------------------------------------------===//
2454// Initialization sequence
2455//===----------------------------------------------------------------------===//
2456
2457void InitializationSequence::Step::Destroy() {
2458 switch (Kind) {
2459 case SK_ResolveAddressOfOverloadedFunction:
2460 case SK_CastDerivedToBaseRValue:
Sebastian Redl906082e2010-07-20 04:20:21 +00002461 case SK_CastDerivedToBaseXValue:
Douglas Gregor20093b42009-12-09 23:02:17 +00002462 case SK_CastDerivedToBaseLValue:
2463 case SK_BindReference:
2464 case SK_BindReferenceToTemporary:
Douglas Gregor523d46a2010-04-18 07:40:54 +00002465 case SK_ExtraneousCopyToTemporary:
Douglas Gregor20093b42009-12-09 23:02:17 +00002466 case SK_UserConversion:
2467 case SK_QualificationConversionRValue:
Sebastian Redl906082e2010-07-20 04:20:21 +00002468 case SK_QualificationConversionXValue:
Douglas Gregor20093b42009-12-09 23:02:17 +00002469 case SK_QualificationConversionLValue:
Jordan Rose1fd1e282013-04-11 00:58:58 +00002470 case SK_LValueToRValue:
Douglas Gregord87b61f2009-12-10 17:56:55 +00002471 case SK_ListInitialization:
Sebastian Redl8713d4e2011-09-24 17:47:52 +00002472 case SK_ListConstructorCall:
Sebastian Redl13dc8f92011-11-27 16:50:07 +00002473 case SK_UnwrapInitList:
2474 case SK_RewrapInitList:
Douglas Gregor51c56d62009-12-14 20:49:26 +00002475 case SK_ConstructorInitialization:
Douglas Gregor71d17402009-12-15 00:01:57 +00002476 case SK_ZeroInitialization:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00002477 case SK_CAssignment:
Eli Friedmancfdc81a2009-12-19 08:11:05 +00002478 case SK_StringInit:
Douglas Gregor569c3162010-08-07 11:51:51 +00002479 case SK_ObjCObjectConversion:
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00002480 case SK_ArrayInit:
Richard Smith0f163e92012-02-15 22:38:09 +00002481 case SK_ParenthesizedArrayInit:
John McCallf85e1932011-06-15 23:02:42 +00002482 case SK_PassByIndirectCopyRestore:
2483 case SK_PassByIndirectRestore:
2484 case SK_ProduceObjCObject:
Sebastian Redl2b916b82012-01-17 22:49:42 +00002485 case SK_StdInitializerList:
Guy Benyei21f18c42013-02-07 10:55:47 +00002486 case SK_OCLSamplerInit:
Guy Benyeie6b9d802013-01-20 12:31:11 +00002487 case SK_OCLZeroEvent:
Douglas Gregor20093b42009-12-09 23:02:17 +00002488 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002489
Douglas Gregor20093b42009-12-09 23:02:17 +00002490 case SK_ConversionSequence:
2491 delete ICS;
2492 }
2493}
2494
Douglas Gregorb70cf442010-03-26 20:14:36 +00002495bool InitializationSequence::isDirectReferenceBinding() const {
Sebastian Redl3b802322011-07-14 19:07:55 +00002496 return !Steps.empty() && Steps.back().Kind == SK_BindReference;
Douglas Gregorb70cf442010-03-26 20:14:36 +00002497}
2498
2499bool InitializationSequence::isAmbiguous() const {
Sebastian Redld695d6b2011-06-05 13:59:05 +00002500 if (!Failed())
Douglas Gregorb70cf442010-03-26 20:14:36 +00002501 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002502
Douglas Gregorb70cf442010-03-26 20:14:36 +00002503 switch (getFailureKind()) {
2504 case FK_TooManyInitsForReference:
2505 case FK_ArrayNeedsInitList:
2506 case FK_ArrayNeedsInitListOrStringLiteral:
2507 case FK_AddressOfOverloadFailed: // FIXME: Could do better
2508 case FK_NonConstLValueReferenceBindingToTemporary:
2509 case FK_NonConstLValueReferenceBindingToUnrelated:
2510 case FK_RValueReferenceBindingToLValue:
2511 case FK_ReferenceInitDropsQualifiers:
2512 case FK_ReferenceInitFailed:
2513 case FK_ConversionFailed:
John Wiegley429bb272011-04-08 18:41:53 +00002514 case FK_ConversionFromPropertyFailed:
Douglas Gregorb70cf442010-03-26 20:14:36 +00002515 case FK_TooManyInitsForScalar:
2516 case FK_ReferenceBindingToInitList:
2517 case FK_InitListBadDestinationType:
2518 case FK_DefaultInitOfConst:
Douglas Gregor72a43bb2010-05-20 22:12:02 +00002519 case FK_Incomplete:
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00002520 case FK_ArrayTypeMismatch:
2521 case FK_NonConstantArrayInit:
Sebastian Redl8713d4e2011-09-24 17:47:52 +00002522 case FK_ListInitializationFailed:
John McCall73076432012-01-05 00:13:19 +00002523 case FK_VariableLengthArrayHasInitializer:
John McCall5acb0c92011-10-17 18:40:02 +00002524 case FK_PlaceholderType:
Sebastian Redl2b916b82012-01-17 22:49:42 +00002525 case FK_InitListElementCopyFailure:
Sebastian Redl70e24fc2012-04-01 19:54:59 +00002526 case FK_ExplicitConstructor:
Douglas Gregorb70cf442010-03-26 20:14:36 +00002527 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002528
Douglas Gregorb70cf442010-03-26 20:14:36 +00002529 case FK_ReferenceInitOverloadFailed:
2530 case FK_UserConversionOverloadFailed:
2531 case FK_ConstructorOverloadFailed:
Sebastian Redlcf15cef2011-12-22 18:58:38 +00002532 case FK_ListConstructorOverloadFailed:
Douglas Gregorb70cf442010-03-26 20:14:36 +00002533 return FailedOverloadResult == OR_Ambiguous;
2534 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002535
David Blaikie7530c032012-01-17 06:56:22 +00002536 llvm_unreachable("Invalid EntityKind!");
Douglas Gregorb70cf442010-03-26 20:14:36 +00002537}
2538
Douglas Gregord6e44a32010-04-16 22:09:46 +00002539bool InitializationSequence::isConstructorInitialization() const {
2540 return !Steps.empty() && Steps.back().Kind == SK_ConstructorInitialization;
2541}
2542
Abramo Bagnara22c107b2011-11-19 11:44:21 +00002543void
2544InitializationSequence
2545::AddAddressOverloadResolutionStep(FunctionDecl *Function,
2546 DeclAccessPair Found,
2547 bool HadMultipleCandidates) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002548 Step S;
2549 S.Kind = SK_ResolveAddressOfOverloadedFunction;
2550 S.Type = Function->getType();
Abramo Bagnara22c107b2011-11-19 11:44:21 +00002551 S.Function.HadMultipleCandidates = HadMultipleCandidates;
John McCall9aa472c2010-03-19 07:35:19 +00002552 S.Function.Function = Function;
John McCall6bb80172010-03-30 21:47:33 +00002553 S.Function.FoundDecl = Found;
Douglas Gregor20093b42009-12-09 23:02:17 +00002554 Steps.push_back(S);
2555}
2556
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002557void InitializationSequence::AddDerivedToBaseCastStep(QualType BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00002558 ExprValueKind VK) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002559 Step S;
John McCall5baba9d2010-08-25 10:28:54 +00002560 switch (VK) {
2561 case VK_RValue: S.Kind = SK_CastDerivedToBaseRValue; break;
2562 case VK_XValue: S.Kind = SK_CastDerivedToBaseXValue; break;
2563 case VK_LValue: S.Kind = SK_CastDerivedToBaseLValue; break;
Sebastian Redl906082e2010-07-20 04:20:21 +00002564 }
Douglas Gregor20093b42009-12-09 23:02:17 +00002565 S.Type = BaseType;
2566 Steps.push_back(S);
2567}
2568
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002569void InitializationSequence::AddReferenceBindingStep(QualType T,
Douglas Gregor20093b42009-12-09 23:02:17 +00002570 bool BindingTemporary) {
2571 Step S;
2572 S.Kind = BindingTemporary? SK_BindReferenceToTemporary : SK_BindReference;
2573 S.Type = T;
2574 Steps.push_back(S);
2575}
2576
Douglas Gregor523d46a2010-04-18 07:40:54 +00002577void InitializationSequence::AddExtraneousCopyToTemporary(QualType T) {
2578 Step S;
2579 S.Kind = SK_ExtraneousCopyToTemporary;
2580 S.Type = T;
2581 Steps.push_back(S);
2582}
2583
Abramo Bagnara22c107b2011-11-19 11:44:21 +00002584void
2585InitializationSequence::AddUserConversionStep(FunctionDecl *Function,
2586 DeclAccessPair FoundDecl,
2587 QualType T,
2588 bool HadMultipleCandidates) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002589 Step S;
2590 S.Kind = SK_UserConversion;
Eli Friedman03981012009-12-11 02:42:07 +00002591 S.Type = T;
Abramo Bagnara22c107b2011-11-19 11:44:21 +00002592 S.Function.HadMultipleCandidates = HadMultipleCandidates;
John McCall9aa472c2010-03-19 07:35:19 +00002593 S.Function.Function = Function;
2594 S.Function.FoundDecl = FoundDecl;
Douglas Gregor20093b42009-12-09 23:02:17 +00002595 Steps.push_back(S);
2596}
2597
2598void InitializationSequence::AddQualificationConversionStep(QualType Ty,
John McCall5baba9d2010-08-25 10:28:54 +00002599 ExprValueKind VK) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002600 Step S;
John McCall38a4ffe2010-08-26 16:36:35 +00002601 S.Kind = SK_QualificationConversionRValue; // work around a gcc warning
John McCall5baba9d2010-08-25 10:28:54 +00002602 switch (VK) {
2603 case VK_RValue:
Sebastian Redl906082e2010-07-20 04:20:21 +00002604 S.Kind = SK_QualificationConversionRValue;
2605 break;
John McCall5baba9d2010-08-25 10:28:54 +00002606 case VK_XValue:
Sebastian Redl906082e2010-07-20 04:20:21 +00002607 S.Kind = SK_QualificationConversionXValue;
2608 break;
John McCall5baba9d2010-08-25 10:28:54 +00002609 case VK_LValue:
Sebastian Redl906082e2010-07-20 04:20:21 +00002610 S.Kind = SK_QualificationConversionLValue;
2611 break;
Sebastian Redl906082e2010-07-20 04:20:21 +00002612 }
Douglas Gregor20093b42009-12-09 23:02:17 +00002613 S.Type = Ty;
2614 Steps.push_back(S);
2615}
2616
Jordan Rose1fd1e282013-04-11 00:58:58 +00002617void InitializationSequence::AddLValueToRValueStep(QualType Ty) {
2618 assert(!Ty.hasQualifiers() && "rvalues may not have qualifiers");
2619
2620 Step S;
2621 S.Kind = SK_LValueToRValue;
2622 S.Type = Ty;
2623 Steps.push_back(S);
2624}
2625
Douglas Gregor20093b42009-12-09 23:02:17 +00002626void InitializationSequence::AddConversionSequenceStep(
2627 const ImplicitConversionSequence &ICS,
2628 QualType T) {
2629 Step S;
2630 S.Kind = SK_ConversionSequence;
2631 S.Type = T;
2632 S.ICS = new ImplicitConversionSequence(ICS);
2633 Steps.push_back(S);
2634}
2635
Douglas Gregord87b61f2009-12-10 17:56:55 +00002636void InitializationSequence::AddListInitializationStep(QualType T) {
2637 Step S;
2638 S.Kind = SK_ListInitialization;
2639 S.Type = T;
2640 Steps.push_back(S);
2641}
2642
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002643void
Abramo Bagnara22c107b2011-11-19 11:44:21 +00002644InitializationSequence
2645::AddConstructorInitializationStep(CXXConstructorDecl *Constructor,
2646 AccessSpecifier Access,
2647 QualType T,
Sebastian Redl10f04a62011-12-22 14:44:04 +00002648 bool HadMultipleCandidates,
Sebastian Redl6cd03db2012-02-04 21:27:47 +00002649 bool FromInitList, bool AsInitList) {
Douglas Gregor51c56d62009-12-14 20:49:26 +00002650 Step S;
Sebastian Redl6cd03db2012-02-04 21:27:47 +00002651 S.Kind = FromInitList && !AsInitList ? SK_ListConstructorCall
2652 : SK_ConstructorInitialization;
Douglas Gregor51c56d62009-12-14 20:49:26 +00002653 S.Type = T;
Abramo Bagnara22c107b2011-11-19 11:44:21 +00002654 S.Function.HadMultipleCandidates = HadMultipleCandidates;
John McCall9aa472c2010-03-19 07:35:19 +00002655 S.Function.Function = Constructor;
2656 S.Function.FoundDecl = DeclAccessPair::make(Constructor, Access);
Douglas Gregor51c56d62009-12-14 20:49:26 +00002657 Steps.push_back(S);
2658}
2659
Douglas Gregor71d17402009-12-15 00:01:57 +00002660void InitializationSequence::AddZeroInitializationStep(QualType T) {
2661 Step S;
2662 S.Kind = SK_ZeroInitialization;
2663 S.Type = T;
2664 Steps.push_back(S);
2665}
2666
Douglas Gregor18ef5e22009-12-18 05:02:21 +00002667void InitializationSequence::AddCAssignmentStep(QualType T) {
2668 Step S;
2669 S.Kind = SK_CAssignment;
2670 S.Type = T;
2671 Steps.push_back(S);
2672}
2673
Eli Friedmancfdc81a2009-12-19 08:11:05 +00002674void InitializationSequence::AddStringInitStep(QualType T) {
2675 Step S;
2676 S.Kind = SK_StringInit;
2677 S.Type = T;
2678 Steps.push_back(S);
2679}
2680
Douglas Gregor569c3162010-08-07 11:51:51 +00002681void InitializationSequence::AddObjCObjectConversionStep(QualType T) {
2682 Step S;
2683 S.Kind = SK_ObjCObjectConversion;
2684 S.Type = T;
2685 Steps.push_back(S);
2686}
2687
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00002688void InitializationSequence::AddArrayInitStep(QualType T) {
2689 Step S;
2690 S.Kind = SK_ArrayInit;
2691 S.Type = T;
2692 Steps.push_back(S);
2693}
2694
Richard Smith0f163e92012-02-15 22:38:09 +00002695void InitializationSequence::AddParenthesizedArrayInitStep(QualType T) {
2696 Step S;
2697 S.Kind = SK_ParenthesizedArrayInit;
2698 S.Type = T;
2699 Steps.push_back(S);
2700}
2701
John McCallf85e1932011-06-15 23:02:42 +00002702void InitializationSequence::AddPassByIndirectCopyRestoreStep(QualType type,
2703 bool shouldCopy) {
2704 Step s;
2705 s.Kind = (shouldCopy ? SK_PassByIndirectCopyRestore
2706 : SK_PassByIndirectRestore);
2707 s.Type = type;
2708 Steps.push_back(s);
2709}
2710
2711void InitializationSequence::AddProduceObjCObjectStep(QualType T) {
2712 Step S;
2713 S.Kind = SK_ProduceObjCObject;
2714 S.Type = T;
2715 Steps.push_back(S);
2716}
2717
Sebastian Redl2b916b82012-01-17 22:49:42 +00002718void InitializationSequence::AddStdInitializerListConstructionStep(QualType T) {
2719 Step S;
2720 S.Kind = SK_StdInitializerList;
2721 S.Type = T;
2722 Steps.push_back(S);
2723}
2724
Guy Benyei21f18c42013-02-07 10:55:47 +00002725void InitializationSequence::AddOCLSamplerInitStep(QualType T) {
2726 Step S;
2727 S.Kind = SK_OCLSamplerInit;
2728 S.Type = T;
2729 Steps.push_back(S);
2730}
2731
Guy Benyeie6b9d802013-01-20 12:31:11 +00002732void InitializationSequence::AddOCLZeroEventStep(QualType T) {
2733 Step S;
2734 S.Kind = SK_OCLZeroEvent;
2735 S.Type = T;
2736 Steps.push_back(S);
2737}
2738
Sebastian Redl13dc8f92011-11-27 16:50:07 +00002739void InitializationSequence::RewrapReferenceInitList(QualType T,
2740 InitListExpr *Syntactic) {
2741 assert(Syntactic->getNumInits() == 1 &&
2742 "Can only rewrap trivial init lists.");
2743 Step S;
2744 S.Kind = SK_UnwrapInitList;
2745 S.Type = Syntactic->getInit(0)->getType();
2746 Steps.insert(Steps.begin(), S);
2747
2748 S.Kind = SK_RewrapInitList;
2749 S.Type = T;
2750 S.WrappingSyntacticList = Syntactic;
2751 Steps.push_back(S);
2752}
2753
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002754void InitializationSequence::SetOverloadFailure(FailureKind Failure,
Douglas Gregor20093b42009-12-09 23:02:17 +00002755 OverloadingResult Result) {
Sebastian Redl7491c492011-06-05 13:59:11 +00002756 setSequenceKind(FailedSequence);
Douglas Gregor20093b42009-12-09 23:02:17 +00002757 this->Failure = Failure;
2758 this->FailedOverloadResult = Result;
2759}
2760
2761//===----------------------------------------------------------------------===//
2762// Attempt initialization
2763//===----------------------------------------------------------------------===//
2764
John McCallf85e1932011-06-15 23:02:42 +00002765static void MaybeProduceObjCObject(Sema &S,
2766 InitializationSequence &Sequence,
2767 const InitializedEntity &Entity) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002768 if (!S.getLangOpts().ObjCAutoRefCount) return;
John McCallf85e1932011-06-15 23:02:42 +00002769
2770 /// When initializing a parameter, produce the value if it's marked
2771 /// __attribute__((ns_consumed)).
2772 if (Entity.getKind() == InitializedEntity::EK_Parameter) {
2773 if (!Entity.isParameterConsumed())
2774 return;
2775
2776 assert(Entity.getType()->isObjCRetainableType() &&
2777 "consuming an object of unretainable type?");
2778 Sequence.AddProduceObjCObjectStep(Entity.getType());
2779
2780 /// When initializing a return value, if the return type is a
2781 /// retainable type, then returns need to immediately retain the
2782 /// object. If an autorelease is required, it will be done at the
2783 /// last instant.
2784 } else if (Entity.getKind() == InitializedEntity::EK_Result) {
2785 if (!Entity.getType()->isObjCRetainableType())
2786 return;
2787
2788 Sequence.AddProduceObjCObjectStep(Entity.getType());
2789 }
2790}
2791
Richard Smithf4bb8d02012-07-05 08:39:21 +00002792/// \brief When initializing from init list via constructor, handle
2793/// initialization of an object of type std::initializer_list<T>.
Sebastian Redl10f04a62011-12-22 14:44:04 +00002794///
Richard Smithf4bb8d02012-07-05 08:39:21 +00002795/// \return true if we have handled initialization of an object of type
2796/// std::initializer_list<T>, false otherwise.
2797static bool TryInitializerListConstruction(Sema &S,
2798 InitListExpr *List,
2799 QualType DestType,
2800 InitializationSequence &Sequence) {
2801 QualType E;
2802 if (!S.isStdInitializerList(DestType, &E))
Richard Smith1d0c9a82012-02-14 21:14:13 +00002803 return false;
2804
Richard Smithf4bb8d02012-07-05 08:39:21 +00002805 // Check that each individual element can be copy-constructed. But since we
2806 // have no place to store further information, we'll recalculate everything
2807 // later.
2808 InitializedEntity HiddenArray = InitializedEntity::InitializeTemporary(
2809 S.Context.getConstantArrayType(E,
2810 llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()),
2811 List->getNumInits()),
2812 ArrayType::Normal, 0));
2813 InitializedEntity Element = InitializedEntity::InitializeElement(S.Context,
2814 0, HiddenArray);
2815 for (unsigned i = 0, n = List->getNumInits(); i < n; ++i) {
2816 Element.setElementIndex(i);
2817 if (!S.CanPerformCopyInitialization(Element, List->getInit(i))) {
2818 Sequence.SetFailed(
2819 InitializationSequence::FK_InitListElementCopyFailure);
Sebastian Redl10f04a62011-12-22 14:44:04 +00002820 return true;
2821 }
2822 }
Richard Smithf4bb8d02012-07-05 08:39:21 +00002823 Sequence.AddStdInitializerListConstructionStep(DestType);
2824 return true;
Sebastian Redl10f04a62011-12-22 14:44:04 +00002825}
2826
Sebastian Redl96715b22012-02-04 21:27:39 +00002827static OverloadingResult
2828ResolveConstructorOverload(Sema &S, SourceLocation DeclLoc,
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002829 MultiExprArg Args,
Sebastian Redl96715b22012-02-04 21:27:39 +00002830 OverloadCandidateSet &CandidateSet,
Argyrios Kyrtzidis8682b932012-11-13 05:07:23 +00002831 ArrayRef<NamedDecl *> Ctors,
Sebastian Redl96715b22012-02-04 21:27:39 +00002832 OverloadCandidateSet::iterator &Best,
2833 bool CopyInitializing, bool AllowExplicit,
Sebastian Redl51ad9cd2012-02-29 12:47:43 +00002834 bool OnlyListConstructors, bool InitListSyntax) {
Sebastian Redl96715b22012-02-04 21:27:39 +00002835 CandidateSet.clear();
2836
Argyrios Kyrtzidis8682b932012-11-13 05:07:23 +00002837 for (ArrayRef<NamedDecl *>::iterator
2838 Con = Ctors.begin(), ConEnd = Ctors.end(); Con != ConEnd; ++Con) {
Sebastian Redl96715b22012-02-04 21:27:39 +00002839 NamedDecl *D = *Con;
2840 DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
2841 bool SuppressUserConversions = false;
2842
2843 // Find the constructor (which may be a template).
2844 CXXConstructorDecl *Constructor = 0;
2845 FunctionTemplateDecl *ConstructorTmpl = dyn_cast<FunctionTemplateDecl>(D);
2846 if (ConstructorTmpl)
2847 Constructor = cast<CXXConstructorDecl>(
2848 ConstructorTmpl->getTemplatedDecl());
2849 else {
2850 Constructor = cast<CXXConstructorDecl>(D);
2851
2852 // If we're performing copy initialization using a copy constructor, we
Sebastian Redl51ad9cd2012-02-29 12:47:43 +00002853 // suppress user-defined conversions on the arguments. We do the same for
2854 // move constructors.
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002855 if ((CopyInitializing || (InitListSyntax && Args.size() == 1)) &&
Sebastian Redl51ad9cd2012-02-29 12:47:43 +00002856 Constructor->isCopyOrMoveConstructor())
Sebastian Redl96715b22012-02-04 21:27:39 +00002857 SuppressUserConversions = true;
2858 }
2859
2860 if (!Constructor->isInvalidDecl() &&
2861 (AllowExplicit || !Constructor->isExplicit()) &&
Sebastian Redl6cd03db2012-02-04 21:27:47 +00002862 (!OnlyListConstructors || S.isInitListConstructor(Constructor))) {
Sebastian Redl96715b22012-02-04 21:27:39 +00002863 if (ConstructorTmpl)
2864 S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002865 /*ExplicitArgs*/ 0, Args,
Sebastian Redl51ad9cd2012-02-29 12:47:43 +00002866 CandidateSet, SuppressUserConversions);
Douglas Gregored878af2012-02-24 23:56:31 +00002867 else {
2868 // C++ [over.match.copy]p1:
2869 // - When initializing a temporary to be bound to the first parameter
2870 // of a constructor that takes a reference to possibly cv-qualified
2871 // T as its first argument, called with a single argument in the
2872 // context of direct-initialization, explicit conversion functions
2873 // are also considered.
2874 bool AllowExplicitConv = AllowExplicit && !CopyInitializing &&
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002875 Args.size() == 1 &&
Douglas Gregored878af2012-02-24 23:56:31 +00002876 Constructor->isCopyOrMoveConstructor();
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002877 S.AddOverloadCandidate(Constructor, FoundDecl, Args, CandidateSet,
Douglas Gregored878af2012-02-24 23:56:31 +00002878 SuppressUserConversions,
2879 /*PartialOverloading=*/false,
2880 /*AllowExplicit=*/AllowExplicitConv);
2881 }
Sebastian Redl96715b22012-02-04 21:27:39 +00002882 }
2883 }
2884
2885 // Perform overload resolution and return the result.
2886 return CandidateSet.BestViableFunction(S, DeclLoc, Best);
2887}
2888
Sebastian Redl10f04a62011-12-22 14:44:04 +00002889/// \brief Attempt initialization by constructor (C++ [dcl.init]), which
2890/// enumerates the constructors of the initialized entity and performs overload
2891/// resolution to select the best.
Sebastian Redl08ae3692012-02-04 21:27:33 +00002892/// If InitListSyntax is true, this is list-initialization of a non-aggregate
Sebastian Redl10f04a62011-12-22 14:44:04 +00002893/// class type.
2894static void TryConstructorInitialization(Sema &S,
2895 const InitializedEntity &Entity,
2896 const InitializationKind &Kind,
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002897 MultiExprArg Args, QualType DestType,
Sebastian Redl10f04a62011-12-22 14:44:04 +00002898 InitializationSequence &Sequence,
Sebastian Redl08ae3692012-02-04 21:27:33 +00002899 bool InitListSyntax = false) {
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002900 assert((!InitListSyntax || (Args.size() == 1 && isa<InitListExpr>(Args[0]))) &&
Sebastian Redl08ae3692012-02-04 21:27:33 +00002901 "InitListSyntax must come with a single initializer list argument.");
2902
Sebastian Redl10f04a62011-12-22 14:44:04 +00002903 // The type we're constructing needs to be complete.
2904 if (S.RequireCompleteType(Kind.getLocation(), DestType, 0)) {
Douglas Gregor69a30b82012-04-10 20:43:46 +00002905 Sequence.setIncompleteTypeFailure(DestType);
Sebastian Redl96715b22012-02-04 21:27:39 +00002906 return;
Sebastian Redl10f04a62011-12-22 14:44:04 +00002907 }
2908
2909 const RecordType *DestRecordType = DestType->getAs<RecordType>();
2910 assert(DestRecordType && "Constructor initialization requires record type");
2911 CXXRecordDecl *DestRecordDecl
2912 = cast<CXXRecordDecl>(DestRecordType->getDecl());
2913
Sebastian Redl96715b22012-02-04 21:27:39 +00002914 // Build the candidate set directly in the initialization sequence
2915 // structure, so that it will persist if we fail.
2916 OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
2917
2918 // Determine whether we are allowed to call explicit constructors or
2919 // explicit conversion operators.
Sebastian Redl70e24fc2012-04-01 19:54:59 +00002920 bool AllowExplicit = Kind.AllowExplicit() || InitListSyntax;
Sebastian Redl6cd03db2012-02-04 21:27:47 +00002921 bool CopyInitialization = Kind.getKind() == InitializationKind::IK_Copy;
Sebastian Redl08ae3692012-02-04 21:27:33 +00002922
Sebastian Redl10f04a62011-12-22 14:44:04 +00002923 // - Otherwise, if T is a class type, constructors are considered. The
2924 // applicable constructors are enumerated, and the best one is chosen
2925 // through overload resolution.
David Blaikie3bc93e32012-12-19 00:45:41 +00002926 DeclContext::lookup_result R = S.LookupConstructors(DestRecordDecl);
Argyrios Kyrtzidis8682b932012-11-13 05:07:23 +00002927 // The container holding the constructors can under certain conditions
2928 // be changed while iterating (e.g. because of deserialization).
2929 // To be safe we copy the lookup results to a new container.
David Blaikie3bc93e32012-12-19 00:45:41 +00002930 SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end());
Sebastian Redl10f04a62011-12-22 14:44:04 +00002931
Sebastian Redl6cd03db2012-02-04 21:27:47 +00002932 OverloadingResult Result = OR_No_Viable_Function;
Sebastian Redl10f04a62011-12-22 14:44:04 +00002933 OverloadCandidateSet::iterator Best;
Sebastian Redl6cd03db2012-02-04 21:27:47 +00002934 bool AsInitializerList = false;
2935
2936 // C++11 [over.match.list]p1:
2937 // When objects of non-aggregate type T are list-initialized, overload
2938 // resolution selects the constructor in two phases:
2939 // - Initially, the candidate functions are the initializer-list
2940 // constructors of the class T and the argument list consists of the
2941 // initializer list as a single argument.
2942 if (InitListSyntax) {
Richard Smithf4bb8d02012-07-05 08:39:21 +00002943 InitListExpr *ILE = cast<InitListExpr>(Args[0]);
Sebastian Redl6cd03db2012-02-04 21:27:47 +00002944 AsInitializerList = true;
Richard Smithf4bb8d02012-07-05 08:39:21 +00002945
2946 // If the initializer list has no elements and T has a default constructor,
2947 // the first phase is omitted.
Richard Smithe5411b72012-12-01 02:35:44 +00002948 if (ILE->getNumInits() != 0 || !DestRecordDecl->hasDefaultConstructor())
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002949 Result = ResolveConstructorOverload(S, Kind.getLocation(), Args,
Argyrios Kyrtzidis8682b932012-11-13 05:07:23 +00002950 CandidateSet, Ctors, Best,
Richard Smithf4bb8d02012-07-05 08:39:21 +00002951 CopyInitialization, AllowExplicit,
2952 /*OnlyListConstructor=*/true,
2953 InitListSyntax);
Sebastian Redl6cd03db2012-02-04 21:27:47 +00002954
2955 // Time to unwrap the init list.
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002956 Args = MultiExprArg(ILE->getInits(), ILE->getNumInits());
Sebastian Redl6cd03db2012-02-04 21:27:47 +00002957 }
2958
2959 // C++11 [over.match.list]p1:
2960 // - If no viable initializer-list constructor is found, overload resolution
2961 // is performed again, where the candidate functions are all the
Richard Smithf4bb8d02012-07-05 08:39:21 +00002962 // constructors of the class T and the argument list consists of the
Sebastian Redl6cd03db2012-02-04 21:27:47 +00002963 // elements of the initializer list.
2964 if (Result == OR_No_Viable_Function) {
2965 AsInitializerList = false;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002966 Result = ResolveConstructorOverload(S, Kind.getLocation(), Args,
Argyrios Kyrtzidis8682b932012-11-13 05:07:23 +00002967 CandidateSet, Ctors, Best,
Sebastian Redl6cd03db2012-02-04 21:27:47 +00002968 CopyInitialization, AllowExplicit,
Sebastian Redl51ad9cd2012-02-29 12:47:43 +00002969 /*OnlyListConstructors=*/false,
2970 InitListSyntax);
Sebastian Redl6cd03db2012-02-04 21:27:47 +00002971 }
2972 if (Result) {
Sebastian Redl08ae3692012-02-04 21:27:33 +00002973 Sequence.SetOverloadFailure(InitListSyntax ?
Sebastian Redlcf15cef2011-12-22 18:58:38 +00002974 InitializationSequence::FK_ListConstructorOverloadFailed :
2975 InitializationSequence::FK_ConstructorOverloadFailed,
Sebastian Redl10f04a62011-12-22 14:44:04 +00002976 Result);
2977 return;
2978 }
2979
Richard Smithf4bb8d02012-07-05 08:39:21 +00002980 // C++11 [dcl.init]p6:
Sebastian Redl10f04a62011-12-22 14:44:04 +00002981 // If a program calls for the default initialization of an object
2982 // of a const-qualified type T, T shall be a class type with a
2983 // user-provided default constructor.
2984 if (Kind.getKind() == InitializationKind::IK_Default &&
2985 Entity.getType().isConstQualified() &&
Aaron Ballman51217812012-07-31 22:40:31 +00002986 !cast<CXXConstructorDecl>(Best->Function)->isUserProvided()) {
Sebastian Redl10f04a62011-12-22 14:44:04 +00002987 Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst);
2988 return;
2989 }
2990
Sebastian Redl70e24fc2012-04-01 19:54:59 +00002991 // C++11 [over.match.list]p1:
2992 // In copy-list-initialization, if an explicit constructor is chosen, the
2993 // initializer is ill-formed.
2994 CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
2995 if (InitListSyntax && !Kind.AllowExplicit() && CtorDecl->isExplicit()) {
2996 Sequence.SetFailed(InitializationSequence::FK_ExplicitConstructor);
2997 return;
2998 }
2999
Sebastian Redl10f04a62011-12-22 14:44:04 +00003000 // Add the constructor initialization step. Any cv-qualification conversion is
3001 // subsumed by the initialization.
3002 bool HadMultipleCandidates = (CandidateSet.size() > 1);
Sebastian Redl10f04a62011-12-22 14:44:04 +00003003 Sequence.AddConstructorInitializationStep(CtorDecl,
3004 Best->FoundDecl.getAccess(),
3005 DestType, HadMultipleCandidates,
Sebastian Redl6cd03db2012-02-04 21:27:47 +00003006 InitListSyntax, AsInitializerList);
Sebastian Redl10f04a62011-12-22 14:44:04 +00003007}
3008
Sebastian Redl13dc8f92011-11-27 16:50:07 +00003009static bool
3010ResolveOverloadedFunctionForReferenceBinding(Sema &S,
3011 Expr *Initializer,
3012 QualType &SourceType,
3013 QualType &UnqualifiedSourceType,
3014 QualType UnqualifiedTargetType,
3015 InitializationSequence &Sequence) {
3016 if (S.Context.getCanonicalType(UnqualifiedSourceType) ==
3017 S.Context.OverloadTy) {
3018 DeclAccessPair Found;
3019 bool HadMultipleCandidates = false;
3020 if (FunctionDecl *Fn
3021 = S.ResolveAddressOfOverloadedFunction(Initializer,
3022 UnqualifiedTargetType,
3023 false, Found,
3024 &HadMultipleCandidates)) {
3025 Sequence.AddAddressOverloadResolutionStep(Fn, Found,
3026 HadMultipleCandidates);
3027 SourceType = Fn->getType();
3028 UnqualifiedSourceType = SourceType.getUnqualifiedType();
3029 } else if (!UnqualifiedTargetType->isRecordType()) {
3030 Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
3031 return true;
3032 }
3033 }
3034 return false;
3035}
3036
3037static void TryReferenceInitializationCore(Sema &S,
3038 const InitializedEntity &Entity,
3039 const InitializationKind &Kind,
3040 Expr *Initializer,
3041 QualType cv1T1, QualType T1,
3042 Qualifiers T1Quals,
3043 QualType cv2T2, QualType T2,
3044 Qualifiers T2Quals,
3045 InitializationSequence &Sequence);
3046
Richard Smithf4bb8d02012-07-05 08:39:21 +00003047static void TryValueInitialization(Sema &S,
3048 const InitializedEntity &Entity,
3049 const InitializationKind &Kind,
3050 InitializationSequence &Sequence,
3051 InitListExpr *InitList = 0);
3052
Sebastian Redl13dc8f92011-11-27 16:50:07 +00003053static void TryListInitialization(Sema &S,
3054 const InitializedEntity &Entity,
3055 const InitializationKind &Kind,
3056 InitListExpr *InitList,
3057 InitializationSequence &Sequence);
3058
3059/// \brief Attempt list initialization of a reference.
3060static void TryReferenceListInitialization(Sema &S,
3061 const InitializedEntity &Entity,
3062 const InitializationKind &Kind,
3063 InitListExpr *InitList,
3064 InitializationSequence &Sequence)
3065{
3066 // First, catch C++03 where this isn't possible.
Richard Smith80ad52f2013-01-02 11:42:31 +00003067 if (!S.getLangOpts().CPlusPlus11) {
Sebastian Redl13dc8f92011-11-27 16:50:07 +00003068 Sequence.SetFailed(InitializationSequence::FK_ReferenceBindingToInitList);
3069 return;
3070 }
3071
3072 QualType DestType = Entity.getType();
3073 QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
3074 Qualifiers T1Quals;
3075 QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals);
3076
3077 // Reference initialization via an initializer list works thus:
3078 // If the initializer list consists of a single element that is
3079 // reference-related to the referenced type, bind directly to that element
3080 // (possibly creating temporaries).
3081 // Otherwise, initialize a temporary with the initializer list and
3082 // bind to that.
3083 if (InitList->getNumInits() == 1) {
3084 Expr *Initializer = InitList->getInit(0);
3085 QualType cv2T2 = Initializer->getType();
3086 Qualifiers T2Quals;
3087 QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals);
3088
3089 // If this fails, creating a temporary wouldn't work either.
3090 if (ResolveOverloadedFunctionForReferenceBinding(S, Initializer, cv2T2, T2,
3091 T1, Sequence))
3092 return;
3093
3094 SourceLocation DeclLoc = Initializer->getLocStart();
3095 bool dummy1, dummy2, dummy3;
3096 Sema::ReferenceCompareResult RefRelationship
3097 = S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, dummy1,
3098 dummy2, dummy3);
3099 if (RefRelationship >= Sema::Ref_Related) {
3100 // Try to bind the reference here.
3101 TryReferenceInitializationCore(S, Entity, Kind, Initializer, cv1T1, T1,
3102 T1Quals, cv2T2, T2, T2Quals, Sequence);
3103 if (Sequence)
3104 Sequence.RewrapReferenceInitList(cv1T1, InitList);
3105 return;
3106 }
Richard Smith02d65ee2013-01-15 07:58:29 +00003107
3108 // Update the initializer if we've resolved an overloaded function.
3109 if (Sequence.step_begin() != Sequence.step_end())
3110 Sequence.RewrapReferenceInitList(cv1T1, InitList);
Sebastian Redl13dc8f92011-11-27 16:50:07 +00003111 }
3112
3113 // Not reference-related. Create a temporary and bind to that.
3114 InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(cv1T1);
3115
3116 TryListInitialization(S, TempEntity, Kind, InitList, Sequence);
3117 if (Sequence) {
3118 if (DestType->isRValueReferenceType() ||
3119 (T1Quals.hasConst() && !T1Quals.hasVolatile()))
3120 Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true);
3121 else
3122 Sequence.SetFailed(
3123 InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary);
3124 }
3125}
3126
Rafael Espindola12ce0a02011-07-14 22:58:04 +00003127/// \brief Attempt list initialization (C++0x [dcl.init.list])
3128static void TryListInitialization(Sema &S,
3129 const InitializedEntity &Entity,
3130 const InitializationKind &Kind,
3131 InitListExpr *InitList,
3132 InitializationSequence &Sequence) {
Rafael Espindola12ce0a02011-07-14 22:58:04 +00003133 QualType DestType = Entity.getType();
3134
Sebastian Redl14b0c192011-09-24 17:48:00 +00003135 // C++ doesn't allow scalar initialization with more than one argument.
3136 // But C99 complex numbers are scalars and it makes sense there.
David Blaikie4e4d0842012-03-11 07:00:24 +00003137 if (S.getLangOpts().CPlusPlus && DestType->isScalarType() &&
Sebastian Redl14b0c192011-09-24 17:48:00 +00003138 !DestType->isAnyComplexType() && InitList->getNumInits() > 1) {
3139 Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForScalar);
3140 return;
3141 }
Sebastian Redl14b0c192011-09-24 17:48:00 +00003142 if (DestType->isReferenceType()) {
Sebastian Redl13dc8f92011-11-27 16:50:07 +00003143 TryReferenceListInitialization(S, Entity, Kind, InitList, Sequence);
Rafael Espindola12ce0a02011-07-14 22:58:04 +00003144 return;
Sebastian Redl14b0c192011-09-24 17:48:00 +00003145 }
Sebastian Redld2231c92012-02-19 12:27:43 +00003146 if (DestType->isRecordType()) {
Douglas Gregord10099e2012-05-04 16:32:21 +00003147 if (S.RequireCompleteType(InitList->getLocStart(), DestType, 0)) {
Douglas Gregor69a30b82012-04-10 20:43:46 +00003148 Sequence.setIncompleteTypeFailure(DestType);
Sebastian Redld2231c92012-02-19 12:27:43 +00003149 return;
3150 }
3151
Richard Smithf4bb8d02012-07-05 08:39:21 +00003152 // C++11 [dcl.init.list]p3:
3153 // - If T is an aggregate, aggregate initialization is performed.
Sebastian Redld2231c92012-02-19 12:27:43 +00003154 if (!DestType->isAggregateType()) {
Richard Smith80ad52f2013-01-02 11:42:31 +00003155 if (S.getLangOpts().CPlusPlus11) {
Richard Smithf4bb8d02012-07-05 08:39:21 +00003156 // - Otherwise, if the initializer list has no elements and T is a
3157 // class type with a default constructor, the object is
3158 // value-initialized.
3159 if (InitList->getNumInits() == 0) {
3160 CXXRecordDecl *RD = DestType->getAsCXXRecordDecl();
Richard Smithe5411b72012-12-01 02:35:44 +00003161 if (RD->hasDefaultConstructor()) {
Richard Smithf4bb8d02012-07-05 08:39:21 +00003162 TryValueInitialization(S, Entity, Kind, Sequence, InitList);
3163 return;
3164 }
3165 }
3166
3167 // - Otherwise, if T is a specialization of std::initializer_list<E>,
3168 // an initializer_list object constructed [...]
3169 if (TryInitializerListConstruction(S, InitList, DestType, Sequence))
3170 return;
3171
3172 // - Otherwise, if T is a class type, constructors are considered.
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003173 Expr *InitListAsExpr = InitList;
3174 TryConstructorInitialization(S, Entity, Kind, InitListAsExpr, DestType,
Richard Smithf4bb8d02012-07-05 08:39:21 +00003175 Sequence, /*InitListSyntax*/true);
Sebastian Redld2231c92012-02-19 12:27:43 +00003176 } else
3177 Sequence.SetFailed(
3178 InitializationSequence::FK_InitListBadDestinationType);
3179 return;
3180 }
Rafael Espindola12ce0a02011-07-14 22:58:04 +00003181 }
3182
Sebastian Redl14b0c192011-09-24 17:48:00 +00003183 InitListChecker CheckInitList(S, Entity, InitList,
Sebastian Redlc2235182011-10-16 18:19:28 +00003184 DestType, /*VerifyOnly=*/true,
Sebastian Redl168319c2012-02-12 16:37:24 +00003185 Kind.getKind() != InitializationKind::IK_DirectList ||
Richard Smith80ad52f2013-01-02 11:42:31 +00003186 !S.getLangOpts().CPlusPlus11);
Sebastian Redl14b0c192011-09-24 17:48:00 +00003187 if (CheckInitList.HadError()) {
3188 Sequence.SetFailed(InitializationSequence::FK_ListInitializationFailed);
3189 return;
3190 }
3191
3192 // Add the list initialization step with the built init list.
Rafael Espindola12ce0a02011-07-14 22:58:04 +00003193 Sequence.AddListInitializationStep(DestType);
3194}
Douglas Gregor20093b42009-12-09 23:02:17 +00003195
3196/// \brief Try a reference initialization that involves calling a conversion
3197/// function.
Douglas Gregor20093b42009-12-09 23:02:17 +00003198static OverloadingResult TryRefInitWithConversionFunction(Sema &S,
3199 const InitializedEntity &Entity,
3200 const InitializationKind &Kind,
Douglas Gregored878af2012-02-24 23:56:31 +00003201 Expr *Initializer,
3202 bool AllowRValues,
Douglas Gregor20093b42009-12-09 23:02:17 +00003203 InitializationSequence &Sequence) {
Douglas Gregord6542d82009-12-22 15:35:07 +00003204 QualType DestType = Entity.getType();
Douglas Gregor20093b42009-12-09 23:02:17 +00003205 QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
3206 QualType T1 = cv1T1.getUnqualifiedType();
3207 QualType cv2T2 = Initializer->getType();
3208 QualType T2 = cv2T2.getUnqualifiedType();
3209
3210 bool DerivedToBase;
Douglas Gregor569c3162010-08-07 11:51:51 +00003211 bool ObjCConversion;
John McCallf85e1932011-06-15 23:02:42 +00003212 bool ObjCLifetimeConversion;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003213 assert(!S.CompareReferenceRelationship(Initializer->getLocStart(),
Douglas Gregor569c3162010-08-07 11:51:51 +00003214 T1, T2, DerivedToBase,
John McCallf85e1932011-06-15 23:02:42 +00003215 ObjCConversion,
3216 ObjCLifetimeConversion) &&
Douglas Gregor20093b42009-12-09 23:02:17 +00003217 "Must have incompatible references when binding via conversion");
Chandler Carruth60cfcec2009-12-13 01:37:04 +00003218 (void)DerivedToBase;
Douglas Gregor569c3162010-08-07 11:51:51 +00003219 (void)ObjCConversion;
John McCallf85e1932011-06-15 23:02:42 +00003220 (void)ObjCLifetimeConversion;
3221
Douglas Gregor20093b42009-12-09 23:02:17 +00003222 // Build the candidate set directly in the initialization sequence
3223 // structure, so that it will persist if we fail.
3224 OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
3225 CandidateSet.clear();
3226
3227 // Determine whether we are allowed to call explicit constructors or
3228 // explicit conversion operators.
Sebastian Redl168319c2012-02-12 16:37:24 +00003229 bool AllowExplicit = Kind.AllowExplicit();
Douglas Gregored878af2012-02-24 23:56:31 +00003230 bool AllowExplicitConvs = Kind.allowExplicitConversionFunctions();
3231
Douglas Gregor20093b42009-12-09 23:02:17 +00003232 const RecordType *T1RecordType = 0;
Douglas Gregor6b6d01f2010-05-07 19:42:26 +00003233 if (AllowRValues && (T1RecordType = T1->getAs<RecordType>()) &&
3234 !S.RequireCompleteType(Kind.getLocation(), T1, 0)) {
Douglas Gregor20093b42009-12-09 23:02:17 +00003235 // The type we're converting to is a class type. Enumerate its constructors
3236 // to see if there is a suitable conversion.
3237 CXXRecordDecl *T1RecordDecl = cast<CXXRecordDecl>(T1RecordType->getDecl());
John McCall572fc622010-08-17 07:23:57 +00003238
David Blaikie3bc93e32012-12-19 00:45:41 +00003239 DeclContext::lookup_result R = S.LookupConstructors(T1RecordDecl);
Argyrios Kyrtzidis8682b932012-11-13 05:07:23 +00003240 // The container holding the constructors can under certain conditions
3241 // be changed while iterating (e.g. because of deserialization).
3242 // To be safe we copy the lookup results to a new container.
David Blaikie3bc93e32012-12-19 00:45:41 +00003243 SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end());
Argyrios Kyrtzidis8682b932012-11-13 05:07:23 +00003244 for (SmallVector<NamedDecl*, 16>::iterator
3245 CI = Ctors.begin(), CE = Ctors.end(); CI != CE; ++CI) {
3246 NamedDecl *D = *CI;
John McCall9aa472c2010-03-19 07:35:19 +00003247 DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
3248
Douglas Gregor20093b42009-12-09 23:02:17 +00003249 // Find the constructor (which may be a template).
3250 CXXConstructorDecl *Constructor = 0;
John McCall9aa472c2010-03-19 07:35:19 +00003251 FunctionTemplateDecl *ConstructorTmpl = dyn_cast<FunctionTemplateDecl>(D);
Douglas Gregor20093b42009-12-09 23:02:17 +00003252 if (ConstructorTmpl)
3253 Constructor = cast<CXXConstructorDecl>(
3254 ConstructorTmpl->getTemplatedDecl());
3255 else
John McCall9aa472c2010-03-19 07:35:19 +00003256 Constructor = cast<CXXConstructorDecl>(D);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003257
Douglas Gregor20093b42009-12-09 23:02:17 +00003258 if (!Constructor->isInvalidDecl() &&
3259 Constructor->isConvertingConstructor(AllowExplicit)) {
3260 if (ConstructorTmpl)
John McCall9aa472c2010-03-19 07:35:19 +00003261 S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
John McCall86820f52010-01-26 01:37:31 +00003262 /*ExplicitArgs*/ 0,
Ahmed Charles13a140c2012-02-25 11:00:22 +00003263 Initializer, CandidateSet,
Argyrios Kyrtzidisb72db892010-10-05 03:05:30 +00003264 /*SuppressUserConversions=*/true);
Douglas Gregor20093b42009-12-09 23:02:17 +00003265 else
John McCall9aa472c2010-03-19 07:35:19 +00003266 S.AddOverloadCandidate(Constructor, FoundDecl,
Ahmed Charles13a140c2012-02-25 11:00:22 +00003267 Initializer, CandidateSet,
Argyrios Kyrtzidisb72db892010-10-05 03:05:30 +00003268 /*SuppressUserConversions=*/true);
Douglas Gregor20093b42009-12-09 23:02:17 +00003269 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003270 }
Douglas Gregor20093b42009-12-09 23:02:17 +00003271 }
John McCall572fc622010-08-17 07:23:57 +00003272 if (T1RecordType && T1RecordType->getDecl()->isInvalidDecl())
3273 return OR_No_Viable_Function;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003274
Douglas Gregor6b6d01f2010-05-07 19:42:26 +00003275 const RecordType *T2RecordType = 0;
3276 if ((T2RecordType = T2->getAs<RecordType>()) &&
3277 !S.RequireCompleteType(Kind.getLocation(), T2, 0)) {
Douglas Gregor20093b42009-12-09 23:02:17 +00003278 // The type we're converting from is a class type, enumerate its conversion
3279 // functions.
3280 CXXRecordDecl *T2RecordDecl = cast<CXXRecordDecl>(T2RecordType->getDecl());
3281
Argyrios Kyrtzidis9d295432012-11-28 03:56:09 +00003282 std::pair<CXXRecordDecl::conversion_iterator,
3283 CXXRecordDecl::conversion_iterator>
3284 Conversions = T2RecordDecl->getVisibleConversionFunctions();
3285 for (CXXRecordDecl::conversion_iterator
3286 I = Conversions.first, E = Conversions.second; I != E; ++I) {
Douglas Gregor20093b42009-12-09 23:02:17 +00003287 NamedDecl *D = *I;
3288 CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
3289 if (isa<UsingShadowDecl>(D))
3290 D = cast<UsingShadowDecl>(D)->getTargetDecl();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003291
Douglas Gregor20093b42009-12-09 23:02:17 +00003292 FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D);
3293 CXXConversionDecl *Conv;
3294 if (ConvTemplate)
3295 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
3296 else
Sebastian Redl4680bf22010-06-30 18:13:39 +00003297 Conv = cast<CXXConversionDecl>(D);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003298
Douglas Gregor20093b42009-12-09 23:02:17 +00003299 // If the conversion function doesn't return a reference type,
3300 // it can't be considered for this conversion unless we're allowed to
3301 // consider rvalues.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003302 // FIXME: Do we need to make sure that we only consider conversion
3303 // candidates with reference-compatible results? That might be needed to
Douglas Gregor20093b42009-12-09 23:02:17 +00003304 // break recursion.
Douglas Gregored878af2012-02-24 23:56:31 +00003305 if ((AllowExplicitConvs || !Conv->isExplicit()) &&
Douglas Gregor20093b42009-12-09 23:02:17 +00003306 (AllowRValues || Conv->getConversionType()->isLValueReferenceType())){
3307 if (ConvTemplate)
John McCall9aa472c2010-03-19 07:35:19 +00003308 S.AddTemplateConversionCandidate(ConvTemplate, I.getPair(),
John McCall86820f52010-01-26 01:37:31 +00003309 ActingDC, Initializer,
Douglas Gregor564cb062011-01-21 00:27:08 +00003310 DestType, CandidateSet);
Douglas Gregor20093b42009-12-09 23:02:17 +00003311 else
John McCall9aa472c2010-03-19 07:35:19 +00003312 S.AddConversionCandidate(Conv, I.getPair(), ActingDC,
Douglas Gregor564cb062011-01-21 00:27:08 +00003313 Initializer, DestType, CandidateSet);
Douglas Gregor20093b42009-12-09 23:02:17 +00003314 }
3315 }
3316 }
John McCall572fc622010-08-17 07:23:57 +00003317 if (T2RecordType && T2RecordType->getDecl()->isInvalidDecl())
3318 return OR_No_Viable_Function;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003319
Douglas Gregor20093b42009-12-09 23:02:17 +00003320 SourceLocation DeclLoc = Initializer->getLocStart();
3321
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003322 // Perform overload resolution. If it fails, return the failed result.
Douglas Gregor20093b42009-12-09 23:02:17 +00003323 OverloadCandidateSet::iterator Best;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003324 if (OverloadingResult Result
Douglas Gregor8fcc5162010-09-12 08:07:23 +00003325 = CandidateSet.BestViableFunction(S, DeclLoc, Best, true))
Douglas Gregor20093b42009-12-09 23:02:17 +00003326 return Result;
Eli Friedman03981012009-12-11 02:42:07 +00003327
Douglas Gregor20093b42009-12-09 23:02:17 +00003328 FunctionDecl *Function = Best->Function;
Nick Lewycky3c86a5c2013-02-12 08:08:54 +00003329 // This is the overload that will be used for this initialization step if we
3330 // use this initialization. Mark it as referenced.
3331 Function->setReferenced();
Chandler Carruth25ca4212011-02-25 19:41:05 +00003332
Eli Friedman03981012009-12-11 02:42:07 +00003333 // Compute the returned type of the conversion.
Douglas Gregor20093b42009-12-09 23:02:17 +00003334 if (isa<CXXConversionDecl>(Function))
3335 T2 = Function->getResultType();
3336 else
3337 T2 = cv1T1;
Eli Friedman03981012009-12-11 02:42:07 +00003338
3339 // Add the user-defined conversion step.
Abramo Bagnara22c107b2011-11-19 11:44:21 +00003340 bool HadMultipleCandidates = (CandidateSet.size() > 1);
John McCall9aa472c2010-03-19 07:35:19 +00003341 Sequence.AddUserConversionStep(Function, Best->FoundDecl,
Abramo Bagnara22c107b2011-11-19 11:44:21 +00003342 T2.getNonLValueExprType(S.Context),
3343 HadMultipleCandidates);
Eli Friedman03981012009-12-11 02:42:07 +00003344
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003345 // Determine whether we need to perform derived-to-base or
Eli Friedman03981012009-12-11 02:42:07 +00003346 // cv-qualification adjustments.
John McCall5baba9d2010-08-25 10:28:54 +00003347 ExprValueKind VK = VK_RValue;
Sebastian Redl906082e2010-07-20 04:20:21 +00003348 if (T2->isLValueReferenceType())
John McCall5baba9d2010-08-25 10:28:54 +00003349 VK = VK_LValue;
Sebastian Redl906082e2010-07-20 04:20:21 +00003350 else if (const RValueReferenceType *RRef = T2->getAs<RValueReferenceType>())
John McCall5baba9d2010-08-25 10:28:54 +00003351 VK = RRef->getPointeeType()->isFunctionType() ? VK_LValue : VK_XValue;
Sebastian Redl906082e2010-07-20 04:20:21 +00003352
Douglas Gregor20093b42009-12-09 23:02:17 +00003353 bool NewDerivedToBase = false;
Douglas Gregor569c3162010-08-07 11:51:51 +00003354 bool NewObjCConversion = false;
John McCallf85e1932011-06-15 23:02:42 +00003355 bool NewObjCLifetimeConversion = false;
Douglas Gregor20093b42009-12-09 23:02:17 +00003356 Sema::ReferenceCompareResult NewRefRelationship
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003357 = S.CompareReferenceRelationship(DeclLoc, T1,
Douglas Gregor63982352010-07-13 18:40:04 +00003358 T2.getNonLValueExprType(S.Context),
John McCallf85e1932011-06-15 23:02:42 +00003359 NewDerivedToBase, NewObjCConversion,
3360 NewObjCLifetimeConversion);
Douglas Gregora1a9f032010-03-07 23:17:44 +00003361 if (NewRefRelationship == Sema::Ref_Incompatible) {
3362 // If the type we've converted to is not reference-related to the
3363 // type we're looking for, then there is another conversion step
3364 // we need to perform to produce a temporary of the right type
3365 // that we'll be binding to.
3366 ImplicitConversionSequence ICS;
3367 ICS.setStandard();
3368 ICS.Standard = Best->FinalConversion;
3369 T2 = ICS.Standard.getToType(2);
3370 Sequence.AddConversionSequenceStep(ICS, T2);
3371 } else if (NewDerivedToBase)
Douglas Gregor20093b42009-12-09 23:02:17 +00003372 Sequence.AddDerivedToBaseCastStep(
3373 S.Context.getQualifiedType(T1,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003374 T2.getNonReferenceType().getQualifiers()),
John McCall5baba9d2010-08-25 10:28:54 +00003375 VK);
Douglas Gregor569c3162010-08-07 11:51:51 +00003376 else if (NewObjCConversion)
3377 Sequence.AddObjCObjectConversionStep(
3378 S.Context.getQualifiedType(T1,
3379 T2.getNonReferenceType().getQualifiers()));
3380
Douglas Gregor20093b42009-12-09 23:02:17 +00003381 if (cv1T1.getQualifiers() != T2.getNonReferenceType().getQualifiers())
John McCall5baba9d2010-08-25 10:28:54 +00003382 Sequence.AddQualificationConversionStep(cv1T1, VK);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003383
Douglas Gregor20093b42009-12-09 23:02:17 +00003384 Sequence.AddReferenceBindingStep(cv1T1, !T2->isReferenceType());
3385 return OR_Success;
3386}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003387
Richard Smith83da2e72011-10-19 16:55:56 +00003388static void CheckCXX98CompatAccessibleCopy(Sema &S,
3389 const InitializedEntity &Entity,
3390 Expr *CurInitExpr);
3391
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003392/// \brief Attempt reference initialization (C++0x [dcl.init.ref])
3393static void TryReferenceInitialization(Sema &S,
Douglas Gregor20093b42009-12-09 23:02:17 +00003394 const InitializedEntity &Entity,
3395 const InitializationKind &Kind,
3396 Expr *Initializer,
3397 InitializationSequence &Sequence) {
Douglas Gregord6542d82009-12-22 15:35:07 +00003398 QualType DestType = Entity.getType();
Douglas Gregor20093b42009-12-09 23:02:17 +00003399 QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
Chandler Carruth5535c382010-01-12 20:32:25 +00003400 Qualifiers T1Quals;
3401 QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals);
Douglas Gregor20093b42009-12-09 23:02:17 +00003402 QualType cv2T2 = Initializer->getType();
Chandler Carruth5535c382010-01-12 20:32:25 +00003403 Qualifiers T2Quals;
3404 QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals);
Sebastian Redl4680bf22010-06-30 18:13:39 +00003405
Douglas Gregor20093b42009-12-09 23:02:17 +00003406 // If the initializer is the address of an overloaded function, try
3407 // to resolve the overloaded function. If all goes well, T2 is the
3408 // type of the resulting function.
Sebastian Redl13dc8f92011-11-27 16:50:07 +00003409 if (ResolveOverloadedFunctionForReferenceBinding(S, Initializer, cv2T2, T2,
3410 T1, Sequence))
3411 return;
Sebastian Redl4680bf22010-06-30 18:13:39 +00003412
Sebastian Redl13dc8f92011-11-27 16:50:07 +00003413 // Delegate everything else to a subfunction.
3414 TryReferenceInitializationCore(S, Entity, Kind, Initializer, cv1T1, T1,
3415 T1Quals, cv2T2, T2, T2Quals, Sequence);
3416}
3417
Jordan Rose1fd1e282013-04-11 00:58:58 +00003418/// Converts the target of reference initialization so that it has the
3419/// appropriate qualifiers and value kind.
3420///
3421/// In this case, 'x' is an 'int' lvalue, but it needs to be 'const int'.
3422/// \code
3423/// int x;
3424/// const int &r = x;
3425/// \endcode
3426///
3427/// In this case the reference is binding to a bitfield lvalue, which isn't
3428/// valid. Perform a load to create a lifetime-extended temporary instead.
3429/// \code
3430/// const int &r = someStruct.bitfield;
3431/// \endcode
3432static ExprValueKind
3433convertQualifiersAndValueKindIfNecessary(Sema &S,
3434 InitializationSequence &Sequence,
3435 Expr *Initializer,
3436 QualType cv1T1,
3437 Qualifiers T1Quals,
3438 Qualifiers T2Quals,
3439 bool IsLValueRef) {
3440 bool IsNonAddressableType = Initializer->getBitField() ||
3441 Initializer->refersToVectorElement();
3442
3443 if (IsNonAddressableType) {
3444 // C++11 [dcl.init.ref]p5: [...] Otherwise, the reference shall be an
3445 // lvalue reference to a non-volatile const type, or the reference shall be
3446 // an rvalue reference.
3447 //
3448 // If not, we can't make a temporary and bind to that. Give up and allow the
3449 // error to be diagnosed later.
3450 if (IsLValueRef && (!T1Quals.hasConst() || T1Quals.hasVolatile())) {
3451 assert(Initializer->isGLValue());
3452 return Initializer->getValueKind();
3453 }
3454
3455 // Force a load so we can materialize a temporary.
3456 Sequence.AddLValueToRValueStep(cv1T1.getUnqualifiedType());
3457 return VK_RValue;
3458 }
3459
3460 if (T1Quals != T2Quals) {
3461 Sequence.AddQualificationConversionStep(cv1T1,
3462 Initializer->getValueKind());
3463 }
3464
3465 return Initializer->getValueKind();
3466}
3467
3468
Sebastian Redl13dc8f92011-11-27 16:50:07 +00003469/// \brief Reference initialization without resolving overloaded functions.
3470static void TryReferenceInitializationCore(Sema &S,
3471 const InitializedEntity &Entity,
3472 const InitializationKind &Kind,
3473 Expr *Initializer,
3474 QualType cv1T1, QualType T1,
3475 Qualifiers T1Quals,
3476 QualType cv2T2, QualType T2,
3477 Qualifiers T2Quals,
3478 InitializationSequence &Sequence) {
3479 QualType DestType = Entity.getType();
3480 SourceLocation DeclLoc = Initializer->getLocStart();
Douglas Gregor20093b42009-12-09 23:02:17 +00003481 // Compute some basic properties of the types and the initializer.
3482 bool isLValueRef = DestType->isLValueReferenceType();
3483 bool isRValueRef = !isLValueRef;
3484 bool DerivedToBase = false;
Douglas Gregor569c3162010-08-07 11:51:51 +00003485 bool ObjCConversion = false;
John McCallf85e1932011-06-15 23:02:42 +00003486 bool ObjCLifetimeConversion = false;
Sebastian Redl4680bf22010-06-30 18:13:39 +00003487 Expr::Classification InitCategory = Initializer->Classify(S.Context);
Douglas Gregor20093b42009-12-09 23:02:17 +00003488 Sema::ReferenceCompareResult RefRelationship
Douglas Gregor569c3162010-08-07 11:51:51 +00003489 = S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, DerivedToBase,
John McCallf85e1932011-06-15 23:02:42 +00003490 ObjCConversion, ObjCLifetimeConversion);
Sebastian Redl4680bf22010-06-30 18:13:39 +00003491
Douglas Gregor20093b42009-12-09 23:02:17 +00003492 // C++0x [dcl.init.ref]p5:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003493 // A reference to type "cv1 T1" is initialized by an expression of type
Douglas Gregor20093b42009-12-09 23:02:17 +00003494 // "cv2 T2" as follows:
3495 //
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003496 // - If the reference is an lvalue reference and the initializer
Douglas Gregor20093b42009-12-09 23:02:17 +00003497 // expression
Sebastian Redl4680bf22010-06-30 18:13:39 +00003498 // Note the analogous bullet points for rvlaue refs to functions. Because
3499 // there are no function rvalues in C++, rvalue refs to functions are treated
3500 // like lvalue refs.
Douglas Gregor20093b42009-12-09 23:02:17 +00003501 OverloadingResult ConvOvlResult = OR_Success;
Sebastian Redl4680bf22010-06-30 18:13:39 +00003502 bool T1Function = T1->isFunctionType();
3503 if (isLValueRef || T1Function) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003504 if (InitCategory.isLValue() &&
Douglas Gregor14d0aee2011-01-27 00:58:17 +00003505 (RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification ||
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003506 (Kind.isCStyleOrFunctionalCast() &&
Douglas Gregor14d0aee2011-01-27 00:58:17 +00003507 RefRelationship == Sema::Ref_Related))) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003508 // - is an lvalue (but is not a bit-field), and "cv1 T1" is
Douglas Gregor20093b42009-12-09 23:02:17 +00003509 // reference-compatible with "cv2 T2," or
3510 //
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003511 // Per C++ [over.best.ics]p2, we don't diagnose whether the lvalue is a
Douglas Gregor20093b42009-12-09 23:02:17 +00003512 // bit-field when we're determining whether the reference initialization
Douglas Gregorde4b1d82010-01-29 19:14:02 +00003513 // can occur. However, we do pay attention to whether it is a bit-field
3514 // to decide whether we're actually binding to a temporary created from
3515 // the bit-field.
Douglas Gregor20093b42009-12-09 23:02:17 +00003516 if (DerivedToBase)
3517 Sequence.AddDerivedToBaseCastStep(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003518 S.Context.getQualifiedType(T1, T2Quals),
John McCall5baba9d2010-08-25 10:28:54 +00003519 VK_LValue);
Douglas Gregor569c3162010-08-07 11:51:51 +00003520 else if (ObjCConversion)
3521 Sequence.AddObjCObjectConversionStep(
3522 S.Context.getQualifiedType(T1, T2Quals));
3523
Jordan Rose1fd1e282013-04-11 00:58:58 +00003524 ExprValueKind ValueKind =
3525 convertQualifiersAndValueKindIfNecessary(S, Sequence, Initializer,
3526 cv1T1, T1Quals, T2Quals,
3527 isLValueRef);
3528 Sequence.AddReferenceBindingStep(cv1T1, ValueKind == VK_RValue);
Douglas Gregor20093b42009-12-09 23:02:17 +00003529 return;
3530 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003531
3532 // - has a class type (i.e., T2 is a class type), where T1 is not
3533 // reference-related to T2, and can be implicitly converted to an
3534 // lvalue of type "cv3 T3," where "cv1 T1" is reference-compatible
3535 // with "cv3 T3" (this conversion is selected by enumerating the
Douglas Gregor20093b42009-12-09 23:02:17 +00003536 // applicable conversion functions (13.3.1.6) and choosing the best
3537 // one through overload resolution (13.3)),
Sebastian Redl4680bf22010-06-30 18:13:39 +00003538 // If we have an rvalue ref to function type here, the rhs must be
3539 // an rvalue.
3540 if (RefRelationship == Sema::Ref_Incompatible && T2->isRecordType() &&
3541 (isLValueRef || InitCategory.isRValue())) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003542 ConvOvlResult = TryRefInitWithConversionFunction(S, Entity, Kind,
Douglas Gregor20093b42009-12-09 23:02:17 +00003543 Initializer,
Sebastian Redl4680bf22010-06-30 18:13:39 +00003544 /*AllowRValues=*/isRValueRef,
Douglas Gregor20093b42009-12-09 23:02:17 +00003545 Sequence);
3546 if (ConvOvlResult == OR_Success)
3547 return;
John McCall1d318332010-01-12 00:44:57 +00003548 if (ConvOvlResult != OR_No_Viable_Function) {
3549 Sequence.SetOverloadFailure(
3550 InitializationSequence::FK_ReferenceInitOverloadFailed,
3551 ConvOvlResult);
3552 }
Douglas Gregor20093b42009-12-09 23:02:17 +00003553 }
3554 }
Sebastian Redl4680bf22010-06-30 18:13:39 +00003555
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003556 // - Otherwise, the reference shall be an lvalue reference to a
Douglas Gregor20093b42009-12-09 23:02:17 +00003557 // non-volatile const type (i.e., cv1 shall be const), or the reference
Douglas Gregor69d83162011-01-20 16:08:06 +00003558 // shall be an rvalue reference.
Douglas Gregorb2855ad2011-01-21 00:52:42 +00003559 if (isLValueRef && !(T1Quals.hasConst() && !T1Quals.hasVolatile())) {
Douglas Gregor3afb9772010-11-08 15:20:28 +00003560 if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy)
3561 Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
3562 else if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty())
Douglas Gregor20093b42009-12-09 23:02:17 +00003563 Sequence.SetOverloadFailure(
3564 InitializationSequence::FK_ReferenceInitOverloadFailed,
3565 ConvOvlResult);
Douglas Gregorb2855ad2011-01-21 00:52:42 +00003566 else
Sebastian Redl4680bf22010-06-30 18:13:39 +00003567 Sequence.SetFailed(InitCategory.isLValue()
Douglas Gregor20093b42009-12-09 23:02:17 +00003568 ? (RefRelationship == Sema::Ref_Related
3569 ? InitializationSequence::FK_ReferenceInitDropsQualifiers
3570 : InitializationSequence::FK_NonConstLValueReferenceBindingToUnrelated)
3571 : InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary);
Sebastian Redl4680bf22010-06-30 18:13:39 +00003572
Douglas Gregor20093b42009-12-09 23:02:17 +00003573 return;
3574 }
Sebastian Redl4680bf22010-06-30 18:13:39 +00003575
Douglas Gregorc5db24d2011-01-20 16:44:54 +00003576 // - If the initializer expression
3577 // - is an xvalue, class prvalue, array prvalue, or function lvalue and
3578 // "cv1 T1" is reference-compatible with "cv2 T2"
3579 // Note: functions are handled below.
3580 if (!T1Function &&
Douglas Gregor14d0aee2011-01-27 00:58:17 +00003581 (RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification ||
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003582 (Kind.isCStyleOrFunctionalCast() &&
Douglas Gregor14d0aee2011-01-27 00:58:17 +00003583 RefRelationship == Sema::Ref_Related)) &&
Douglas Gregorc5db24d2011-01-20 16:44:54 +00003584 (InitCategory.isXValue() ||
3585 (InitCategory.isPRValue() && T2->isRecordType()) ||
3586 (InitCategory.isPRValue() && T2->isArrayType()))) {
3587 ExprValueKind ValueKind = InitCategory.isXValue()? VK_XValue : VK_RValue;
3588 if (InitCategory.isPRValue() && T2->isRecordType()) {
Douglas Gregor523d46a2010-04-18 07:40:54 +00003589 // The corresponding bullet in C++03 [dcl.init.ref]p5 gives the
3590 // compiler the freedom to perform a copy here or bind to the
3591 // object, while C++0x requires that we bind directly to the
3592 // object. Hence, we always bind to the object without making an
3593 // extra copy. However, in C++03 requires that we check for the
3594 // presence of a suitable copy constructor:
3595 //
3596 // The constructor that would be used to make the copy shall
3597 // be callable whether or not the copy is actually done.
Richard Smith80ad52f2013-01-02 11:42:31 +00003598 if (!S.getLangOpts().CPlusPlus11 && !S.getLangOpts().MicrosoftExt)
Douglas Gregor523d46a2010-04-18 07:40:54 +00003599 Sequence.AddExtraneousCopyToTemporary(cv2T2);
Richard Smith80ad52f2013-01-02 11:42:31 +00003600 else if (S.getLangOpts().CPlusPlus11)
Richard Smith83da2e72011-10-19 16:55:56 +00003601 CheckCXX98CompatAccessibleCopy(S, Entity, Initializer);
Douglas Gregor20093b42009-12-09 23:02:17 +00003602 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003603
Douglas Gregorc5db24d2011-01-20 16:44:54 +00003604 if (DerivedToBase)
3605 Sequence.AddDerivedToBaseCastStep(S.Context.getQualifiedType(T1, T2Quals),
3606 ValueKind);
3607 else if (ObjCConversion)
3608 Sequence.AddObjCObjectConversionStep(
3609 S.Context.getQualifiedType(T1, T2Quals));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003610
Jordan Rose1fd1e282013-04-11 00:58:58 +00003611 ValueKind = convertQualifiersAndValueKindIfNecessary(S, Sequence,
3612 Initializer, cv1T1,
3613 T1Quals, T2Quals,
3614 isLValueRef);
3615
3616 Sequence.AddReferenceBindingStep(cv1T1, ValueKind == VK_RValue);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003617 return;
Douglas Gregorc5db24d2011-01-20 16:44:54 +00003618 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003619
3620 // - has a class type (i.e., T2 is a class type), where T1 is not
3621 // reference-related to T2, and can be implicitly converted to an
Douglas Gregorc5db24d2011-01-20 16:44:54 +00003622 // xvalue, class prvalue, or function lvalue of type "cv3 T3",
3623 // where "cv1 T1" is reference-compatible with "cv3 T3",
Douglas Gregorc5db24d2011-01-20 16:44:54 +00003624 if (T2->isRecordType()) {
Douglas Gregor20093b42009-12-09 23:02:17 +00003625 if (RefRelationship == Sema::Ref_Incompatible) {
3626 ConvOvlResult = TryRefInitWithConversionFunction(S, Entity,
3627 Kind, Initializer,
3628 /*AllowRValues=*/true,
3629 Sequence);
3630 if (ConvOvlResult)
3631 Sequence.SetOverloadFailure(
3632 InitializationSequence::FK_ReferenceInitOverloadFailed,
3633 ConvOvlResult);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003634
Douglas Gregor20093b42009-12-09 23:02:17 +00003635 return;
3636 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003637
Douglas Gregordefa32e2013-03-26 23:59:23 +00003638 if ((RefRelationship == Sema::Ref_Compatible ||
3639 RefRelationship == Sema::Ref_Compatible_With_Added_Qualification) &&
3640 isRValueRef && InitCategory.isLValue()) {
3641 Sequence.SetFailed(
3642 InitializationSequence::FK_RValueReferenceBindingToLValue);
3643 return;
3644 }
3645
Douglas Gregor20093b42009-12-09 23:02:17 +00003646 Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers);
3647 return;
3648 }
NAKAMURA Takumi00995302011-01-27 07:09:49 +00003649
3650 // - Otherwise, a temporary of type "cv1 T1" is created and initialized
Douglas Gregor20093b42009-12-09 23:02:17 +00003651 // from the initializer expression using the rules for a non-reference
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003652 // copy initialization (8.5). The reference is then bound to the
Douglas Gregor20093b42009-12-09 23:02:17 +00003653 // temporary. [...]
John McCall369371c2010-06-04 02:29:22 +00003654
Douglas Gregor20093b42009-12-09 23:02:17 +00003655 // Determine whether we are allowed to call explicit constructors or
3656 // explicit conversion operators.
Sebastian Redl168319c2012-02-12 16:37:24 +00003657 bool AllowExplicit = Kind.AllowExplicit();
John McCall369371c2010-06-04 02:29:22 +00003658
3659 InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(cv1T1);
3660
John McCallf85e1932011-06-15 23:02:42 +00003661 ImplicitConversionSequence ICS
3662 = S.TryImplicitConversion(Initializer, TempEntity.getType(),
John McCall369371c2010-06-04 02:29:22 +00003663 /*SuppressUserConversions*/ false,
3664 AllowExplicit,
Douglas Gregor14d0aee2011-01-27 00:58:17 +00003665 /*FIXME:InOverloadResolution=*/false,
John McCallf85e1932011-06-15 23:02:42 +00003666 /*CStyle=*/Kind.isCStyleOrFunctionalCast(),
3667 /*AllowObjCWritebackConversion=*/false);
3668
3669 if (ICS.isBad()) {
Douglas Gregor20093b42009-12-09 23:02:17 +00003670 // FIXME: Use the conversion function set stored in ICS to turn
3671 // this into an overloading ambiguity diagnostic. However, we need
3672 // to keep that set as an OverloadCandidateSet rather than as some
3673 // other kind of set.
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003674 if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty())
3675 Sequence.SetOverloadFailure(
3676 InitializationSequence::FK_ReferenceInitOverloadFailed,
3677 ConvOvlResult);
Douglas Gregor3afb9772010-11-08 15:20:28 +00003678 else if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy)
3679 Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
Douglas Gregor18ef5e22009-12-18 05:02:21 +00003680 else
3681 Sequence.SetFailed(InitializationSequence::FK_ReferenceInitFailed);
Douglas Gregor20093b42009-12-09 23:02:17 +00003682 return;
John McCallf85e1932011-06-15 23:02:42 +00003683 } else {
3684 Sequence.AddConversionSequenceStep(ICS, TempEntity.getType());
Douglas Gregor20093b42009-12-09 23:02:17 +00003685 }
3686
3687 // [...] If T1 is reference-related to T2, cv1 must be the
3688 // same cv-qualification as, or greater cv-qualification
3689 // than, cv2; otherwise, the program is ill-formed.
Chandler Carruth5535c382010-01-12 20:32:25 +00003690 unsigned T1CVRQuals = T1Quals.getCVRQualifiers();
3691 unsigned T2CVRQuals = T2Quals.getCVRQualifiers();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003692 if (RefRelationship == Sema::Ref_Related &&
Chandler Carruth5535c382010-01-12 20:32:25 +00003693 (T1CVRQuals | T2CVRQuals) != T1CVRQuals) {
Douglas Gregor20093b42009-12-09 23:02:17 +00003694 Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers);
3695 return;
3696 }
3697
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003698 // [...] If T1 is reference-related to T2 and the reference is an rvalue
Douglas Gregorb2855ad2011-01-21 00:52:42 +00003699 // reference, the initializer expression shall not be an lvalue.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003700 if (RefRelationship >= Sema::Ref_Related && !isLValueRef &&
Douglas Gregorb2855ad2011-01-21 00:52:42 +00003701 InitCategory.isLValue()) {
3702 Sequence.SetFailed(
3703 InitializationSequence::FK_RValueReferenceBindingToLValue);
3704 return;
3705 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003706
Douglas Gregor20093b42009-12-09 23:02:17 +00003707 Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true);
3708 return;
3709}
3710
3711/// \brief Attempt character array initialization from a string literal
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003712/// (C++ [dcl.init.string], C99 6.7.8).
3713static void TryStringLiteralInitialization(Sema &S,
Douglas Gregor20093b42009-12-09 23:02:17 +00003714 const InitializedEntity &Entity,
3715 const InitializationKind &Kind,
3716 Expr *Initializer,
3717 InitializationSequence &Sequence) {
Douglas Gregord6542d82009-12-22 15:35:07 +00003718 Sequence.AddStringInitStep(Entity.getType());
Douglas Gregor20093b42009-12-09 23:02:17 +00003719}
3720
Douglas Gregor71d17402009-12-15 00:01:57 +00003721/// \brief Attempt value initialization (C++ [dcl.init]p7).
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003722static void TryValueInitialization(Sema &S,
Douglas Gregor71d17402009-12-15 00:01:57 +00003723 const InitializedEntity &Entity,
3724 const InitializationKind &Kind,
Richard Smithf4bb8d02012-07-05 08:39:21 +00003725 InitializationSequence &Sequence,
3726 InitListExpr *InitList) {
3727 assert((!InitList || InitList->getNumInits() == 0) &&
3728 "Shouldn't use value-init for non-empty init lists");
3729
Richard Smith1d0c9a82012-02-14 21:14:13 +00003730 // C++98 [dcl.init]p5, C++11 [dcl.init]p7:
Douglas Gregor71d17402009-12-15 00:01:57 +00003731 //
3732 // To value-initialize an object of type T means:
Douglas Gregord6542d82009-12-22 15:35:07 +00003733 QualType T = Entity.getType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003734
Douglas Gregor71d17402009-12-15 00:01:57 +00003735 // -- if T is an array type, then each element is value-initialized;
Richard Smith1d0c9a82012-02-14 21:14:13 +00003736 T = S.Context.getBaseElementType(T);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003737
Douglas Gregor71d17402009-12-15 00:01:57 +00003738 if (const RecordType *RT = T->getAs<RecordType>()) {
3739 if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
Richard Smithf4bb8d02012-07-05 08:39:21 +00003740 bool NeedZeroInitialization = true;
Richard Smith80ad52f2013-01-02 11:42:31 +00003741 if (!S.getLangOpts().CPlusPlus11) {
Richard Smithf4bb8d02012-07-05 08:39:21 +00003742 // C++98:
3743 // -- if T is a class type (clause 9) with a user-declared constructor
3744 // (12.1), then the default constructor for T is called (and the
3745 // initialization is ill-formed if T has no accessible default
3746 // constructor);
Richard Smith1d0c9a82012-02-14 21:14:13 +00003747 if (ClassDecl->hasUserDeclaredConstructor())
Richard Smithf4bb8d02012-07-05 08:39:21 +00003748 NeedZeroInitialization = false;
Richard Smith1d0c9a82012-02-14 21:14:13 +00003749 } else {
3750 // C++11:
3751 // -- if T is a class type (clause 9) with either no default constructor
3752 // (12.1 [class.ctor]) or a default constructor that is user-provided
3753 // or deleted, then the object is default-initialized;
3754 CXXConstructorDecl *CD = S.LookupDefaultConstructor(ClassDecl);
3755 if (!CD || !CD->getCanonicalDecl()->isDefaulted() || CD->isDeleted())
Richard Smithf4bb8d02012-07-05 08:39:21 +00003756 NeedZeroInitialization = false;
Richard Smith1d0c9a82012-02-14 21:14:13 +00003757 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003758
Richard Smith1d0c9a82012-02-14 21:14:13 +00003759 // -- if T is a (possibly cv-qualified) non-union class type without a
3760 // user-provided or deleted default constructor, then the object is
3761 // zero-initialized and, if T has a non-trivial default constructor,
3762 // default-initialized;
Richard Smith6678a052012-10-18 00:44:17 +00003763 // The 'non-union' here was removed by DR1502. The 'non-trivial default
3764 // constructor' part was removed by DR1507.
Richard Smithf4bb8d02012-07-05 08:39:21 +00003765 if (NeedZeroInitialization)
3766 Sequence.AddZeroInitializationStep(Entity.getType());
3767
Richard Smithd5bc8672012-12-08 02:01:17 +00003768 // C++03:
3769 // -- if T is a non-union class type without a user-declared constructor,
3770 // then every non-static data member and base class component of T is
3771 // value-initialized;
3772 // [...] A program that calls for [...] value-initialization of an
3773 // entity of reference type is ill-formed.
3774 //
3775 // C++11 doesn't need this handling, because value-initialization does not
3776 // occur recursively there, and the implicit default constructor is
3777 // defined as deleted in the problematic cases.
Richard Smith80ad52f2013-01-02 11:42:31 +00003778 if (!S.getLangOpts().CPlusPlus11 &&
Richard Smithd5bc8672012-12-08 02:01:17 +00003779 ClassDecl->hasUninitializedReferenceMember()) {
3780 Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForReference);
3781 return;
3782 }
3783
Richard Smithf4bb8d02012-07-05 08:39:21 +00003784 // If this is list-value-initialization, pass the empty init list on when
3785 // building the constructor call. This affects the semantics of a few
3786 // things (such as whether an explicit default constructor can be called).
3787 Expr *InitListAsExpr = InitList;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003788 MultiExprArg Args(&InitListAsExpr, InitList ? 1 : 0);
Richard Smithf4bb8d02012-07-05 08:39:21 +00003789 bool InitListSyntax = InitList;
3790
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003791 return TryConstructorInitialization(S, Entity, Kind, Args, T, Sequence,
3792 InitListSyntax);
Douglas Gregor71d17402009-12-15 00:01:57 +00003793 }
3794 }
3795
Douglas Gregord6542d82009-12-22 15:35:07 +00003796 Sequence.AddZeroInitializationStep(Entity.getType());
Douglas Gregor71d17402009-12-15 00:01:57 +00003797}
3798
Douglas Gregor99a2e602009-12-16 01:38:02 +00003799/// \brief Attempt default initialization (C++ [dcl.init]p6).
3800static void TryDefaultInitialization(Sema &S,
3801 const InitializedEntity &Entity,
3802 const InitializationKind &Kind,
3803 InitializationSequence &Sequence) {
3804 assert(Kind.getKind() == InitializationKind::IK_Default);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003805
Douglas Gregor99a2e602009-12-16 01:38:02 +00003806 // C++ [dcl.init]p6:
3807 // To default-initialize an object of type T means:
3808 // - if T is an array type, each element is default-initialized;
John McCallf85e1932011-06-15 23:02:42 +00003809 QualType DestType = S.Context.getBaseElementType(Entity.getType());
3810
Douglas Gregor99a2e602009-12-16 01:38:02 +00003811 // - if T is a (possibly cv-qualified) class type (Clause 9), the default
3812 // constructor for T is called (and the initialization is ill-formed if
3813 // T has no accessible default constructor);
David Blaikie4e4d0842012-03-11 07:00:24 +00003814 if (DestType->isRecordType() && S.getLangOpts().CPlusPlus) {
Dmitri Gribenko62ed8892013-05-05 20:40:26 +00003815 TryConstructorInitialization(S, Entity, Kind, None, DestType, Sequence);
Chandler Carruth4e6fbce2010-08-23 07:55:51 +00003816 return;
Douglas Gregor99a2e602009-12-16 01:38:02 +00003817 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003818
Douglas Gregor99a2e602009-12-16 01:38:02 +00003819 // - otherwise, no initialization is performed.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003820
Douglas Gregor99a2e602009-12-16 01:38:02 +00003821 // If a program calls for the default initialization of an object of
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003822 // a const-qualified type T, T shall be a class type with a user-provided
Douglas Gregor99a2e602009-12-16 01:38:02 +00003823 // default constructor.
David Blaikie4e4d0842012-03-11 07:00:24 +00003824 if (DestType.isConstQualified() && S.getLangOpts().CPlusPlus) {
Douglas Gregor99a2e602009-12-16 01:38:02 +00003825 Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst);
John McCallf85e1932011-06-15 23:02:42 +00003826 return;
3827 }
3828
3829 // If the destination type has a lifetime property, zero-initialize it.
3830 if (DestType.getQualifiers().hasObjCLifetime()) {
3831 Sequence.AddZeroInitializationStep(Entity.getType());
3832 return;
3833 }
Douglas Gregor99a2e602009-12-16 01:38:02 +00003834}
3835
Douglas Gregor20093b42009-12-09 23:02:17 +00003836/// \brief Attempt a user-defined conversion between two types (C++ [dcl.init]),
3837/// which enumerates all conversion functions and performs overload resolution
3838/// to select the best.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003839static void TryUserDefinedConversion(Sema &S,
Douglas Gregor20093b42009-12-09 23:02:17 +00003840 const InitializedEntity &Entity,
3841 const InitializationKind &Kind,
3842 Expr *Initializer,
3843 InitializationSequence &Sequence) {
Douglas Gregord6542d82009-12-22 15:35:07 +00003844 QualType DestType = Entity.getType();
Douglas Gregor4a520a22009-12-14 17:27:33 +00003845 assert(!DestType->isReferenceType() && "References are handled elsewhere");
3846 QualType SourceType = Initializer->getType();
3847 assert((DestType->isRecordType() || SourceType->isRecordType()) &&
3848 "Must have a class type to perform a user-defined conversion");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003849
Douglas Gregor4a520a22009-12-14 17:27:33 +00003850 // Build the candidate set directly in the initialization sequence
3851 // structure, so that it will persist if we fail.
3852 OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
3853 CandidateSet.clear();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003854
Douglas Gregor4a520a22009-12-14 17:27:33 +00003855 // Determine whether we are allowed to call explicit constructors or
3856 // explicit conversion operators.
Sebastian Redl168319c2012-02-12 16:37:24 +00003857 bool AllowExplicit = Kind.AllowExplicit();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003858
Douglas Gregor4a520a22009-12-14 17:27:33 +00003859 if (const RecordType *DestRecordType = DestType->getAs<RecordType>()) {
3860 // The type we're converting to is a class type. Enumerate its constructors
3861 // to see if there is a suitable conversion.
3862 CXXRecordDecl *DestRecordDecl
3863 = cast<CXXRecordDecl>(DestRecordType->getDecl());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003864
Douglas Gregor087fb7d2010-04-26 14:36:57 +00003865 // Try to complete the type we're converting to.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003866 if (!S.RequireCompleteType(Kind.getLocation(), DestType, 0)) {
David Blaikie3bc93e32012-12-19 00:45:41 +00003867 DeclContext::lookup_result R = S.LookupConstructors(DestRecordDecl);
David Blaikie3d5cf5e2012-10-18 16:57:32 +00003868 // The container holding the constructors can under certain conditions
3869 // be changed while iterating. To be safe we copy the lookup results
3870 // to a new container.
David Blaikie3bc93e32012-12-19 00:45:41 +00003871 SmallVector<NamedDecl*, 8> CopyOfCon(R.begin(), R.end());
David Blaikie3d5cf5e2012-10-18 16:57:32 +00003872 for (SmallVector<NamedDecl*, 8>::iterator
3873 Con = CopyOfCon.begin(), ConEnd = CopyOfCon.end();
Douglas Gregor087fb7d2010-04-26 14:36:57 +00003874 Con != ConEnd; ++Con) {
3875 NamedDecl *D = *Con;
3876 DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003877
Douglas Gregor087fb7d2010-04-26 14:36:57 +00003878 // Find the constructor (which may be a template).
3879 CXXConstructorDecl *Constructor = 0;
3880 FunctionTemplateDecl *ConstructorTmpl
3881 = dyn_cast<FunctionTemplateDecl>(D);
Douglas Gregor4a520a22009-12-14 17:27:33 +00003882 if (ConstructorTmpl)
Douglas Gregor087fb7d2010-04-26 14:36:57 +00003883 Constructor = cast<CXXConstructorDecl>(
3884 ConstructorTmpl->getTemplatedDecl());
Douglas Gregor4712c022010-07-01 03:43:00 +00003885 else
Douglas Gregor087fb7d2010-04-26 14:36:57 +00003886 Constructor = cast<CXXConstructorDecl>(D);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003887
Douglas Gregor087fb7d2010-04-26 14:36:57 +00003888 if (!Constructor->isInvalidDecl() &&
3889 Constructor->isConvertingConstructor(AllowExplicit)) {
3890 if (ConstructorTmpl)
3891 S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
3892 /*ExplicitArgs*/ 0,
Ahmed Charles13a140c2012-02-25 11:00:22 +00003893 Initializer, CandidateSet,
Douglas Gregor4712c022010-07-01 03:43:00 +00003894 /*SuppressUserConversions=*/true);
Douglas Gregor087fb7d2010-04-26 14:36:57 +00003895 else
3896 S.AddOverloadCandidate(Constructor, FoundDecl,
Ahmed Charles13a140c2012-02-25 11:00:22 +00003897 Initializer, CandidateSet,
Douglas Gregor4712c022010-07-01 03:43:00 +00003898 /*SuppressUserConversions=*/true);
Douglas Gregor087fb7d2010-04-26 14:36:57 +00003899 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003900 }
Douglas Gregor087fb7d2010-04-26 14:36:57 +00003901 }
Douglas Gregor4a520a22009-12-14 17:27:33 +00003902 }
Eli Friedmancfdc81a2009-12-19 08:11:05 +00003903
3904 SourceLocation DeclLoc = Initializer->getLocStart();
3905
Douglas Gregor4a520a22009-12-14 17:27:33 +00003906 if (const RecordType *SourceRecordType = SourceType->getAs<RecordType>()) {
3907 // The type we're converting from is a class type, enumerate its conversion
3908 // functions.
Eli Friedmancfdc81a2009-12-19 08:11:05 +00003909
Eli Friedman33c2da92009-12-20 22:12:03 +00003910 // We can only enumerate the conversion functions for a complete type; if
3911 // the type isn't complete, simply skip this step.
3912 if (!S.RequireCompleteType(DeclLoc, SourceType, 0)) {
3913 CXXRecordDecl *SourceRecordDecl
3914 = cast<CXXRecordDecl>(SourceRecordType->getDecl());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003915
Argyrios Kyrtzidis9d295432012-11-28 03:56:09 +00003916 std::pair<CXXRecordDecl::conversion_iterator,
3917 CXXRecordDecl::conversion_iterator>
3918 Conversions = SourceRecordDecl->getVisibleConversionFunctions();
3919 for (CXXRecordDecl::conversion_iterator
3920 I = Conversions.first, E = Conversions.second; I != E; ++I) {
Eli Friedman33c2da92009-12-20 22:12:03 +00003921 NamedDecl *D = *I;
3922 CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
3923 if (isa<UsingShadowDecl>(D))
3924 D = cast<UsingShadowDecl>(D)->getTargetDecl();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003925
Eli Friedman33c2da92009-12-20 22:12:03 +00003926 FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D);
3927 CXXConversionDecl *Conv;
Douglas Gregor4a520a22009-12-14 17:27:33 +00003928 if (ConvTemplate)
Eli Friedman33c2da92009-12-20 22:12:03 +00003929 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
Douglas Gregor4a520a22009-12-14 17:27:33 +00003930 else
John McCall32daa422010-03-31 01:36:47 +00003931 Conv = cast<CXXConversionDecl>(D);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003932
Eli Friedman33c2da92009-12-20 22:12:03 +00003933 if (AllowExplicit || !Conv->isExplicit()) {
3934 if (ConvTemplate)
John McCall9aa472c2010-03-19 07:35:19 +00003935 S.AddTemplateConversionCandidate(ConvTemplate, I.getPair(),
John McCall86820f52010-01-26 01:37:31 +00003936 ActingDC, Initializer, DestType,
Eli Friedman33c2da92009-12-20 22:12:03 +00003937 CandidateSet);
3938 else
John McCall9aa472c2010-03-19 07:35:19 +00003939 S.AddConversionCandidate(Conv, I.getPair(), ActingDC,
John McCall86820f52010-01-26 01:37:31 +00003940 Initializer, DestType, CandidateSet);
Eli Friedman33c2da92009-12-20 22:12:03 +00003941 }
Douglas Gregor4a520a22009-12-14 17:27:33 +00003942 }
3943 }
3944 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003945
3946 // Perform overload resolution. If it fails, return the failed result.
Douglas Gregor4a520a22009-12-14 17:27:33 +00003947 OverloadCandidateSet::iterator Best;
John McCall1d318332010-01-12 00:44:57 +00003948 if (OverloadingResult Result
Douglas Gregor8fcc5162010-09-12 08:07:23 +00003949 = CandidateSet.BestViableFunction(S, DeclLoc, Best, true)) {
Douglas Gregor4a520a22009-12-14 17:27:33 +00003950 Sequence.SetOverloadFailure(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003951 InitializationSequence::FK_UserConversionOverloadFailed,
Douglas Gregor4a520a22009-12-14 17:27:33 +00003952 Result);
3953 return;
3954 }
John McCall1d318332010-01-12 00:44:57 +00003955
Douglas Gregor4a520a22009-12-14 17:27:33 +00003956 FunctionDecl *Function = Best->Function;
Nick Lewycky3c86a5c2013-02-12 08:08:54 +00003957 Function->setReferenced();
Abramo Bagnara22c107b2011-11-19 11:44:21 +00003958 bool HadMultipleCandidates = (CandidateSet.size() > 1);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003959
Douglas Gregor4a520a22009-12-14 17:27:33 +00003960 if (isa<CXXConstructorDecl>(Function)) {
3961 // Add the user-defined conversion step. Any cv-qualification conversion is
Richard Smithf2e4dfc2012-02-11 19:22:50 +00003962 // subsumed by the initialization. Per DR5, the created temporary is of the
3963 // cv-unqualified type of the destination.
3964 Sequence.AddUserConversionStep(Function, Best->FoundDecl,
3965 DestType.getUnqualifiedType(),
Abramo Bagnara22c107b2011-11-19 11:44:21 +00003966 HadMultipleCandidates);
Douglas Gregor4a520a22009-12-14 17:27:33 +00003967 return;
3968 }
3969
3970 // Add the user-defined conversion step that calls the conversion function.
Douglas Gregor5291c3c2010-07-13 08:18:22 +00003971 QualType ConvType = Function->getCallResultType();
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00003972 if (ConvType->getAs<RecordType>()) {
Richard Smithf2e4dfc2012-02-11 19:22:50 +00003973 // If we're converting to a class type, there may be an copy of
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00003974 // the resulting temporary object (possible to create an object of
3975 // a base class type). That copy is not a separate conversion, so
3976 // we just make a note of the actual destination type (possibly a
3977 // base class of the type returned by the conversion function) and
3978 // let the user-defined conversion step handle the conversion.
Abramo Bagnara22c107b2011-11-19 11:44:21 +00003979 Sequence.AddUserConversionStep(Function, Best->FoundDecl, DestType,
3980 HadMultipleCandidates);
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00003981 return;
3982 }
Douglas Gregor4a520a22009-12-14 17:27:33 +00003983
Abramo Bagnara22c107b2011-11-19 11:44:21 +00003984 Sequence.AddUserConversionStep(Function, Best->FoundDecl, ConvType,
3985 HadMultipleCandidates);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003986
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00003987 // If the conversion following the call to the conversion function
3988 // is interesting, add it as a separate step.
Douglas Gregor4a520a22009-12-14 17:27:33 +00003989 if (Best->FinalConversion.First || Best->FinalConversion.Second ||
3990 Best->FinalConversion.Third) {
3991 ImplicitConversionSequence ICS;
John McCall1d318332010-01-12 00:44:57 +00003992 ICS.setStandard();
Douglas Gregor4a520a22009-12-14 17:27:33 +00003993 ICS.Standard = Best->FinalConversion;
3994 Sequence.AddConversionSequenceStep(ICS, DestType);
3995 }
Douglas Gregor20093b42009-12-09 23:02:17 +00003996}
3997
John McCallf85e1932011-06-15 23:02:42 +00003998/// The non-zero enum values here are indexes into diagnostic alternatives.
3999enum InvalidICRKind { IIK_okay, IIK_nonlocal, IIK_nonscalar };
4000
4001/// Determines whether this expression is an acceptable ICR source.
John McCallc03fa492011-06-27 23:59:58 +00004002static InvalidICRKind isInvalidICRSource(ASTContext &C, Expr *e,
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00004003 bool isAddressOf, bool &isWeakAccess) {
John McCallf85e1932011-06-15 23:02:42 +00004004 // Skip parens.
4005 e = e->IgnoreParens();
4006
4007 // Skip address-of nodes.
4008 if (UnaryOperator *op = dyn_cast<UnaryOperator>(e)) {
4009 if (op->getOpcode() == UO_AddrOf)
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00004010 return isInvalidICRSource(C, op->getSubExpr(), /*addressof*/ true,
4011 isWeakAccess);
John McCallf85e1932011-06-15 23:02:42 +00004012
4013 // Skip certain casts.
John McCallc03fa492011-06-27 23:59:58 +00004014 } else if (CastExpr *ce = dyn_cast<CastExpr>(e)) {
4015 switch (ce->getCastKind()) {
John McCallf85e1932011-06-15 23:02:42 +00004016 case CK_Dependent:
4017 case CK_BitCast:
4018 case CK_LValueBitCast:
John McCallf85e1932011-06-15 23:02:42 +00004019 case CK_NoOp:
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00004020 return isInvalidICRSource(C, ce->getSubExpr(), isAddressOf, isWeakAccess);
John McCallf85e1932011-06-15 23:02:42 +00004021
4022 case CK_ArrayToPointerDecay:
4023 return IIK_nonscalar;
4024
4025 case CK_NullToPointer:
4026 return IIK_okay;
4027
4028 default:
4029 break;
4030 }
4031
4032 // If we have a declaration reference, it had better be a local variable.
John McCallf4b88a42012-03-10 09:33:50 +00004033 } else if (isa<DeclRefExpr>(e)) {
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00004034 // set isWeakAccess to true, to mean that there will be an implicit
4035 // load which requires a cleanup.
4036 if (e->getType().getObjCLifetime() == Qualifiers::OCL_Weak)
4037 isWeakAccess = true;
4038
John McCallc03fa492011-06-27 23:59:58 +00004039 if (!isAddressOf) return IIK_nonlocal;
4040
John McCallf4b88a42012-03-10 09:33:50 +00004041 VarDecl *var = dyn_cast<VarDecl>(cast<DeclRefExpr>(e)->getDecl());
4042 if (!var) return IIK_nonlocal;
John McCallc03fa492011-06-27 23:59:58 +00004043
4044 return (var->hasLocalStorage() ? IIK_okay : IIK_nonlocal);
John McCallf85e1932011-06-15 23:02:42 +00004045
4046 // If we have a conditional operator, check both sides.
4047 } else if (ConditionalOperator *cond = dyn_cast<ConditionalOperator>(e)) {
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00004048 if (InvalidICRKind iik = isInvalidICRSource(C, cond->getLHS(), isAddressOf,
4049 isWeakAccess))
John McCallf85e1932011-06-15 23:02:42 +00004050 return iik;
4051
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00004052 return isInvalidICRSource(C, cond->getRHS(), isAddressOf, isWeakAccess);
John McCallf85e1932011-06-15 23:02:42 +00004053
4054 // These are never scalar.
4055 } else if (isa<ArraySubscriptExpr>(e)) {
4056 return IIK_nonscalar;
4057
4058 // Otherwise, it needs to be a null pointer constant.
4059 } else {
4060 return (e->isNullPointerConstant(C, Expr::NPC_ValueDependentIsNull)
4061 ? IIK_okay : IIK_nonlocal);
4062 }
4063
4064 return IIK_nonlocal;
4065}
4066
4067/// Check whether the given expression is a valid operand for an
4068/// indirect copy/restore.
4069static void checkIndirectCopyRestoreSource(Sema &S, Expr *src) {
4070 assert(src->isRValue());
Fariborz Jahanian82c458e2012-11-27 23:02:53 +00004071 bool isWeakAccess = false;
4072 InvalidICRKind iik = isInvalidICRSource(S.Context, src, false, isWeakAccess);
4073 // If isWeakAccess to true, there will be an implicit
4074 // load which requires a cleanup.
4075 if (S.getLangOpts().ObjCAutoRefCount && isWeakAccess)
4076 S.ExprNeedsCleanups = true;
4077
John McCallf85e1932011-06-15 23:02:42 +00004078 if (iik == IIK_okay) return;
4079
4080 S.Diag(src->getExprLoc(), diag::err_arc_nonlocal_writeback)
4081 << ((unsigned) iik - 1) // shift index into diagnostic explanations
4082 << src->getSourceRange();
4083}
4084
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00004085/// \brief Determine whether we have compatible array types for the
4086/// purposes of GNU by-copy array initialization.
4087static bool hasCompatibleArrayTypes(ASTContext &Context,
4088 const ArrayType *Dest,
4089 const ArrayType *Source) {
4090 // If the source and destination array types are equivalent, we're
4091 // done.
4092 if (Context.hasSameType(QualType(Dest, 0), QualType(Source, 0)))
4093 return true;
4094
4095 // Make sure that the element types are the same.
4096 if (!Context.hasSameType(Dest->getElementType(), Source->getElementType()))
4097 return false;
4098
4099 // The only mismatch we allow is when the destination is an
4100 // incomplete array type and the source is a constant array type.
4101 return Source->isConstantArrayType() && Dest->isIncompleteArrayType();
4102}
4103
John McCallf85e1932011-06-15 23:02:42 +00004104static bool tryObjCWritebackConversion(Sema &S,
4105 InitializationSequence &Sequence,
4106 const InitializedEntity &Entity,
4107 Expr *Initializer) {
4108 bool ArrayDecay = false;
4109 QualType ArgType = Initializer->getType();
4110 QualType ArgPointee;
4111 if (const ArrayType *ArgArrayType = S.Context.getAsArrayType(ArgType)) {
4112 ArrayDecay = true;
4113 ArgPointee = ArgArrayType->getElementType();
4114 ArgType = S.Context.getPointerType(ArgPointee);
4115 }
4116
4117 // Handle write-back conversion.
4118 QualType ConvertedArgType;
4119 if (!S.isObjCWritebackConversion(ArgType, Entity.getType(),
4120 ConvertedArgType))
4121 return false;
4122
4123 // We should copy unless we're passing to an argument explicitly
4124 // marked 'out'.
4125 bool ShouldCopy = true;
4126 if (ParmVarDecl *param = cast_or_null<ParmVarDecl>(Entity.getDecl()))
4127 ShouldCopy = (param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out);
4128
4129 // Do we need an lvalue conversion?
4130 if (ArrayDecay || Initializer->isGLValue()) {
4131 ImplicitConversionSequence ICS;
4132 ICS.setStandard();
4133 ICS.Standard.setAsIdentityConversion();
4134
4135 QualType ResultType;
4136 if (ArrayDecay) {
4137 ICS.Standard.First = ICK_Array_To_Pointer;
4138 ResultType = S.Context.getPointerType(ArgPointee);
4139 } else {
4140 ICS.Standard.First = ICK_Lvalue_To_Rvalue;
4141 ResultType = Initializer->getType().getNonLValueExprType(S.Context);
4142 }
4143
4144 Sequence.AddConversionSequenceStep(ICS, ResultType);
4145 }
4146
4147 Sequence.AddPassByIndirectCopyRestoreStep(Entity.getType(), ShouldCopy);
4148 return true;
4149}
4150
Guy Benyei21f18c42013-02-07 10:55:47 +00004151static bool TryOCLSamplerInitialization(Sema &S,
4152 InitializationSequence &Sequence,
4153 QualType DestType,
4154 Expr *Initializer) {
4155 if (!S.getLangOpts().OpenCL || !DestType->isSamplerT() ||
4156 !Initializer->isIntegerConstantExpr(S.getASTContext()))
4157 return false;
4158
4159 Sequence.AddOCLSamplerInitStep(DestType);
4160 return true;
4161}
4162
Guy Benyeie6b9d802013-01-20 12:31:11 +00004163//
4164// OpenCL 1.2 spec, s6.12.10
4165//
4166// The event argument can also be used to associate the
4167// async_work_group_copy with a previous async copy allowing
4168// an event to be shared by multiple async copies; otherwise
4169// event should be zero.
4170//
4171static bool TryOCLZeroEventInitialization(Sema &S,
4172 InitializationSequence &Sequence,
4173 QualType DestType,
4174 Expr *Initializer) {
4175 if (!S.getLangOpts().OpenCL || !DestType->isEventT() ||
4176 !Initializer->isIntegerConstantExpr(S.getASTContext()) ||
4177 (Initializer->EvaluateKnownConstInt(S.getASTContext()) != 0))
4178 return false;
4179
4180 Sequence.AddOCLZeroEventStep(DestType);
4181 return true;
4182}
4183
Douglas Gregor20093b42009-12-09 23:02:17 +00004184InitializationSequence::InitializationSequence(Sema &S,
4185 const InitializedEntity &Entity,
4186 const InitializationKind &Kind,
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00004187 MultiExprArg Args)
John McCall5769d612010-02-08 23:07:23 +00004188 : FailedCandidateSet(Kind.getLocation()) {
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004189 ASTContext &Context = S.Context;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004190
John McCall76da55d2013-04-16 07:28:30 +00004191 // Eliminate non-overload placeholder types in the arguments. We
4192 // need to do this before checking whether types are dependent
4193 // because lowering a pseudo-object expression might well give us
4194 // something of dependent type.
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00004195 for (unsigned I = 0, E = Args.size(); I != E; ++I)
John McCall76da55d2013-04-16 07:28:30 +00004196 if (Args[I]->getType()->isNonOverloadPlaceholderType()) {
4197 // FIXME: should we be doing this here?
4198 ExprResult result = S.CheckPlaceholderExpr(Args[I]);
4199 if (result.isInvalid()) {
4200 SetFailed(FK_PlaceholderType);
4201 return;
4202 }
4203 Args[I] = result.take();
4204 }
4205
Douglas Gregor20093b42009-12-09 23:02:17 +00004206 // C++0x [dcl.init]p16:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004207 // The semantics of initializers are as follows. The destination type is
4208 // the type of the object or reference being initialized and the source
Douglas Gregor20093b42009-12-09 23:02:17 +00004209 // type is the type of the initializer expression. The source type is not
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004210 // defined when the initializer is a braced-init-list or when it is a
Douglas Gregor20093b42009-12-09 23:02:17 +00004211 // parenthesized list of expressions.
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004212 QualType DestType = Entity.getType();
Douglas Gregor20093b42009-12-09 23:02:17 +00004213
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004214 if (DestType->isDependentType() ||
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00004215 Expr::hasAnyTypeDependentArguments(Args)) {
Douglas Gregor20093b42009-12-09 23:02:17 +00004216 SequenceKind = DependentSequence;
4217 return;
4218 }
4219
Sebastian Redl7491c492011-06-05 13:59:11 +00004220 // Almost everything is a normal sequence.
4221 setSequenceKind(NormalSequence);
4222
Douglas Gregor20093b42009-12-09 23:02:17 +00004223 QualType SourceType;
4224 Expr *Initializer = 0;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00004225 if (Args.size() == 1) {
Douglas Gregor20093b42009-12-09 23:02:17 +00004226 Initializer = Args[0];
4227 if (!isa<InitListExpr>(Initializer))
4228 SourceType = Initializer->getType();
4229 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004230
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00004231 // - If the initializer is a (non-parenthesized) braced-init-list, the
4232 // object is list-initialized (8.5.4).
4233 if (Kind.getKind() != InitializationKind::IK_Direct) {
4234 if (InitListExpr *InitList = dyn_cast_or_null<InitListExpr>(Initializer)) {
4235 TryListInitialization(S, Entity, Kind, InitList, *this);
4236 return;
4237 }
Douglas Gregor20093b42009-12-09 23:02:17 +00004238 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004239
Douglas Gregor20093b42009-12-09 23:02:17 +00004240 // - If the destination type is a reference type, see 8.5.3.
4241 if (DestType->isReferenceType()) {
4242 // C++0x [dcl.init.ref]p1:
4243 // A variable declared to be a T& or T&&, that is, "reference to type T"
4244 // (8.3.2), shall be initialized by an object, or function, of type T or
4245 // by an object that can be converted into a T.
4246 // (Therefore, multiple arguments are not permitted.)
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00004247 if (Args.size() != 1)
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004248 SetFailed(FK_TooManyInitsForReference);
Douglas Gregor20093b42009-12-09 23:02:17 +00004249 else
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004250 TryReferenceInitialization(S, Entity, Kind, Args[0], *this);
Douglas Gregor20093b42009-12-09 23:02:17 +00004251 return;
4252 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004253
Douglas Gregor20093b42009-12-09 23:02:17 +00004254 // - If the initializer is (), the object is value-initialized.
Douglas Gregor99a2e602009-12-16 01:38:02 +00004255 if (Kind.getKind() == InitializationKind::IK_Value ||
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00004256 (Kind.getKind() == InitializationKind::IK_Direct && Args.empty())) {
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004257 TryValueInitialization(S, Entity, Kind, *this);
Douglas Gregor20093b42009-12-09 23:02:17 +00004258 return;
4259 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004260
Douglas Gregor99a2e602009-12-16 01:38:02 +00004261 // Handle default initialization.
Nick Lewycky7663f392010-11-20 01:29:55 +00004262 if (Kind.getKind() == InitializationKind::IK_Default) {
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004263 TryDefaultInitialization(S, Entity, Kind, *this);
Douglas Gregor99a2e602009-12-16 01:38:02 +00004264 return;
4265 }
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004266
John McCallce6c9b72011-02-21 07:22:22 +00004267 // - If the destination type is an array of characters, an array of
4268 // char16_t, an array of char32_t, or an array of wchar_t, and the
4269 // initializer is a string literal, see 8.5.2.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004270 // - Otherwise, if the destination type is an array, the program is
Douglas Gregor20093b42009-12-09 23:02:17 +00004271 // ill-formed.
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00004272 if (const ArrayType *DestAT = Context.getAsArrayType(DestType)) {
John McCall73076432012-01-05 00:13:19 +00004273 if (Initializer && isa<VariableArrayType>(DestAT)) {
4274 SetFailed(FK_VariableLengthArrayHasInitializer);
4275 return;
4276 }
4277
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00004278 if (Initializer && IsStringInit(Initializer, DestAT, Context)) {
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004279 TryStringLiteralInitialization(S, Entity, Kind, Initializer, *this);
John McCallce6c9b72011-02-21 07:22:22 +00004280 return;
4281 }
4282
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00004283 // Note: as an GNU C extension, we allow initialization of an
4284 // array from a compound literal that creates an array of the same
4285 // type, so long as the initializer has no side effects.
David Blaikie4e4d0842012-03-11 07:00:24 +00004286 if (!S.getLangOpts().CPlusPlus && Initializer &&
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00004287 isa<CompoundLiteralExpr>(Initializer->IgnoreParens()) &&
4288 Initializer->getType()->isArrayType()) {
4289 const ArrayType *SourceAT
4290 = Context.getAsArrayType(Initializer->getType());
4291 if (!hasCompatibleArrayTypes(S.Context, DestAT, SourceAT))
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004292 SetFailed(FK_ArrayTypeMismatch);
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00004293 else if (Initializer->HasSideEffects(S.Context))
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004294 SetFailed(FK_NonConstantArrayInit);
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00004295 else {
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004296 AddArrayInitStep(DestType);
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00004297 }
Richard Smith0f163e92012-02-15 22:38:09 +00004298 }
Richard Smithf4bb8d02012-07-05 08:39:21 +00004299 // Note: as a GNU C++ extension, we allow list-initialization of a
4300 // class member of array type from a parenthesized initializer list.
David Blaikie4e4d0842012-03-11 07:00:24 +00004301 else if (S.getLangOpts().CPlusPlus &&
Richard Smith0f163e92012-02-15 22:38:09 +00004302 Entity.getKind() == InitializedEntity::EK_Member &&
4303 Initializer && isa<InitListExpr>(Initializer)) {
4304 TryListInitialization(S, Entity, Kind, cast<InitListExpr>(Initializer),
4305 *this);
4306 AddParenthesizedArrayInitStep(DestType);
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00004307 } else if (DestAT->getElementType()->isAnyCharacterType())
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004308 SetFailed(FK_ArrayNeedsInitListOrStringLiteral);
Douglas Gregor20093b42009-12-09 23:02:17 +00004309 else
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004310 SetFailed(FK_ArrayNeedsInitList);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004311
Douglas Gregor20093b42009-12-09 23:02:17 +00004312 return;
4313 }
Eli Friedmancfdc81a2009-12-19 08:11:05 +00004314
John McCallf85e1932011-06-15 23:02:42 +00004315 // Determine whether we should consider writeback conversions for
4316 // Objective-C ARC.
David Blaikie4e4d0842012-03-11 07:00:24 +00004317 bool allowObjCWritebackConversion = S.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00004318 Entity.getKind() == InitializedEntity::EK_Parameter;
4319
4320 // We're at the end of the line for C: it's either a write-back conversion
4321 // or it's a C assignment. There's no need to check anything else.
David Blaikie4e4d0842012-03-11 07:00:24 +00004322 if (!S.getLangOpts().CPlusPlus) {
John McCallf85e1932011-06-15 23:02:42 +00004323 // If allowed, check whether this is an Objective-C writeback conversion.
4324 if (allowObjCWritebackConversion &&
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004325 tryObjCWritebackConversion(S, *this, Entity, Initializer)) {
John McCallf85e1932011-06-15 23:02:42 +00004326 return;
4327 }
Guy Benyei21f18c42013-02-07 10:55:47 +00004328
4329 if (TryOCLSamplerInitialization(S, *this, DestType, Initializer))
4330 return;
Guy Benyeie6b9d802013-01-20 12:31:11 +00004331
4332 if (TryOCLZeroEventInitialization(S, *this, DestType, Initializer))
4333 return;
4334
John McCallf85e1932011-06-15 23:02:42 +00004335 // Handle initialization in C
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004336 AddCAssignmentStep(DestType);
4337 MaybeProduceObjCObject(S, *this, Entity);
Eli Friedmancfdc81a2009-12-19 08:11:05 +00004338 return;
4339 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004340
David Blaikie4e4d0842012-03-11 07:00:24 +00004341 assert(S.getLangOpts().CPlusPlus);
John McCallf85e1932011-06-15 23:02:42 +00004342
Douglas Gregor20093b42009-12-09 23:02:17 +00004343 // - If the destination type is a (possibly cv-qualified) class type:
4344 if (DestType->isRecordType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004345 // - If the initialization is direct-initialization, or if it is
4346 // copy-initialization where the cv-unqualified version of the
4347 // source type is the same class as, or a derived class of, the
Douglas Gregor20093b42009-12-09 23:02:17 +00004348 // class of the destination, constructors are considered. [...]
4349 if (Kind.getKind() == InitializationKind::IK_Direct ||
4350 (Kind.getKind() == InitializationKind::IK_Copy &&
4351 (Context.hasSameUnqualifiedType(SourceType, DestType) ||
4352 S.IsDerivedFrom(SourceType, DestType))))
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00004353 TryConstructorInitialization(S, Entity, Kind, Args,
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004354 Entity.getType(), *this);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004355 // - Otherwise (i.e., for the remaining copy-initialization cases),
Douglas Gregor20093b42009-12-09 23:02:17 +00004356 // user-defined conversion sequences that can convert from the source
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004357 // type to the destination type or (when a conversion function is
Douglas Gregor20093b42009-12-09 23:02:17 +00004358 // used) to a derived class thereof are enumerated as described in
4359 // 13.3.1.4, and the best one is chosen through overload resolution
4360 // (13.3).
4361 else
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004362 TryUserDefinedConversion(S, Entity, Kind, Initializer, *this);
Douglas Gregor20093b42009-12-09 23:02:17 +00004363 return;
4364 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004365
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00004366 if (Args.size() > 1) {
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004367 SetFailed(FK_TooManyInitsForScalar);
Douglas Gregor99a2e602009-12-16 01:38:02 +00004368 return;
4369 }
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00004370 assert(Args.size() == 1 && "Zero-argument case handled above");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004371
4372 // - Otherwise, if the source type is a (possibly cv-qualified) class
Douglas Gregor20093b42009-12-09 23:02:17 +00004373 // type, conversion functions are considered.
Douglas Gregor99a2e602009-12-16 01:38:02 +00004374 if (!SourceType.isNull() && SourceType->isRecordType()) {
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004375 TryUserDefinedConversion(S, Entity, Kind, Initializer, *this);
4376 MaybeProduceObjCObject(S, *this, Entity);
Douglas Gregor20093b42009-12-09 23:02:17 +00004377 return;
4378 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004379
Douglas Gregor20093b42009-12-09 23:02:17 +00004380 // - Otherwise, the initial value of the object being initialized is the
Douglas Gregor4a520a22009-12-14 17:27:33 +00004381 // (possibly converted) value of the initializer expression. Standard
Douglas Gregor20093b42009-12-09 23:02:17 +00004382 // conversions (Clause 4) will be used, if necessary, to convert the
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004383 // initializer expression to the cv-unqualified version of the
Douglas Gregor20093b42009-12-09 23:02:17 +00004384 // destination type; no user-defined conversions are considered.
John McCallf85e1932011-06-15 23:02:42 +00004385
4386 ImplicitConversionSequence ICS
4387 = S.TryImplicitConversion(Initializer, Entity.getType(),
4388 /*SuppressUserConversions*/true,
John McCall369371c2010-06-04 02:29:22 +00004389 /*AllowExplicitConversions*/ false,
Douglas Gregor14d0aee2011-01-27 00:58:17 +00004390 /*InOverloadResolution*/ false,
John McCallf85e1932011-06-15 23:02:42 +00004391 /*CStyle=*/Kind.isCStyleOrFunctionalCast(),
4392 allowObjCWritebackConversion);
4393
4394 if (ICS.isStandard() &&
4395 ICS.Standard.Second == ICK_Writeback_Conversion) {
4396 // Objective-C ARC writeback conversion.
4397
4398 // We should copy unless we're passing to an argument explicitly
4399 // marked 'out'.
4400 bool ShouldCopy = true;
4401 if (ParmVarDecl *Param = cast_or_null<ParmVarDecl>(Entity.getDecl()))
4402 ShouldCopy = (Param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out);
4403
4404 // If there was an lvalue adjustment, add it as a separate conversion.
4405 if (ICS.Standard.First == ICK_Array_To_Pointer ||
4406 ICS.Standard.First == ICK_Lvalue_To_Rvalue) {
4407 ImplicitConversionSequence LvalueICS;
4408 LvalueICS.setStandard();
4409 LvalueICS.Standard.setAsIdentityConversion();
4410 LvalueICS.Standard.setAllToTypes(ICS.Standard.getToType(0));
4411 LvalueICS.Standard.First = ICS.Standard.First;
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004412 AddConversionSequenceStep(LvalueICS, ICS.Standard.getToType(0));
John McCallf85e1932011-06-15 23:02:42 +00004413 }
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004414
4415 AddPassByIndirectCopyRestoreStep(Entity.getType(), ShouldCopy);
John McCallf85e1932011-06-15 23:02:42 +00004416 } else if (ICS.isBad()) {
Douglas Gregor1be8eec2011-02-19 21:32:49 +00004417 DeclAccessPair dap;
4418 if (Initializer->getType() == Context.OverloadTy &&
4419 !S.ResolveAddressOfOverloadedFunction(Initializer
4420 , DestType, false, dap))
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004421 SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
Douglas Gregor8e960432010-11-08 03:40:48 +00004422 else
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004423 SetFailed(InitializationSequence::FK_ConversionFailed);
John McCallf85e1932011-06-15 23:02:42 +00004424 } else {
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004425 AddConversionSequenceStep(ICS, Entity.getType());
John McCall856d3792011-06-16 23:24:51 +00004426
Rafael Espindola12ce0a02011-07-14 22:58:04 +00004427 MaybeProduceObjCObject(S, *this, Entity);
Douglas Gregor8e960432010-11-08 03:40:48 +00004428 }
Douglas Gregor20093b42009-12-09 23:02:17 +00004429}
4430
4431InitializationSequence::~InitializationSequence() {
Chris Lattner5f9e2722011-07-23 10:55:15 +00004432 for (SmallVectorImpl<Step>::iterator Step = Steps.begin(),
Douglas Gregor20093b42009-12-09 23:02:17 +00004433 StepEnd = Steps.end();
4434 Step != StepEnd; ++Step)
4435 Step->Destroy();
4436}
4437
4438//===----------------------------------------------------------------------===//
4439// Perform initialization
4440//===----------------------------------------------------------------------===//
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004441static Sema::AssignmentAction
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004442getAssignmentAction(const InitializedEntity &Entity) {
4443 switch(Entity.getKind()) {
4444 case InitializedEntity::EK_Variable:
4445 case InitializedEntity::EK_New:
Douglas Gregora3998bd2010-12-02 21:47:04 +00004446 case InitializedEntity::EK_Exception:
4447 case InitializedEntity::EK_Base:
Sean Hunt059ce0d2011-05-01 07:04:31 +00004448 case InitializedEntity::EK_Delegating:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004449 return Sema::AA_Initializing;
4450
4451 case InitializedEntity::EK_Parameter:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004452 if (Entity.getDecl() &&
Douglas Gregor688fc9b2010-04-21 23:24:10 +00004453 isa<ObjCMethodDecl>(Entity.getDecl()->getDeclContext()))
4454 return Sema::AA_Sending;
4455
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004456 return Sema::AA_Passing;
4457
4458 case InitializedEntity::EK_Result:
4459 return Sema::AA_Returning;
4460
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004461 case InitializedEntity::EK_Temporary:
4462 // FIXME: Can we tell apart casting vs. converting?
4463 return Sema::AA_Casting;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004464
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004465 case InitializedEntity::EK_Member:
Anders Carlssond3d824d2010-01-23 04:34:47 +00004466 case InitializedEntity::EK_ArrayElement:
4467 case InitializedEntity::EK_VectorElement:
Eli Friedman0c706c22011-09-19 23:17:44 +00004468 case InitializedEntity::EK_ComplexElement:
Fariborz Jahanian310b1c42010-06-07 16:14:00 +00004469 case InitializedEntity::EK_BlockElement:
Douglas Gregor47736542012-02-15 16:57:26 +00004470 case InitializedEntity::EK_LambdaCapture:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004471 return Sema::AA_Initializing;
4472 }
4473
David Blaikie7530c032012-01-17 06:56:22 +00004474 llvm_unreachable("Invalid EntityKind!");
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004475}
4476
Richard Smith774d8b42013-01-08 00:08:23 +00004477/// \brief Whether we should bind a created object as a temporary when
Douglas Gregor4154e0b2010-04-24 23:45:46 +00004478/// initializing the given entity.
Douglas Gregor2f599792010-04-02 18:24:57 +00004479static bool shouldBindAsTemporary(const InitializedEntity &Entity) {
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004480 switch (Entity.getKind()) {
Anders Carlsson1b36a2f2010-01-24 00:19:41 +00004481 case InitializedEntity::EK_ArrayElement:
4482 case InitializedEntity::EK_Member:
Douglas Gregor2f599792010-04-02 18:24:57 +00004483 case InitializedEntity::EK_Result:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004484 case InitializedEntity::EK_New:
4485 case InitializedEntity::EK_Variable:
4486 case InitializedEntity::EK_Base:
Sean Hunt059ce0d2011-05-01 07:04:31 +00004487 case InitializedEntity::EK_Delegating:
Anders Carlssond3d824d2010-01-23 04:34:47 +00004488 case InitializedEntity::EK_VectorElement:
Eli Friedman0c706c22011-09-19 23:17:44 +00004489 case InitializedEntity::EK_ComplexElement:
Anders Carlssona508b7d2010-02-06 23:23:06 +00004490 case InitializedEntity::EK_Exception:
Fariborz Jahanian310b1c42010-06-07 16:14:00 +00004491 case InitializedEntity::EK_BlockElement:
Douglas Gregor47736542012-02-15 16:57:26 +00004492 case InitializedEntity::EK_LambdaCapture:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004493 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004494
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004495 case InitializedEntity::EK_Parameter:
4496 case InitializedEntity::EK_Temporary:
4497 return true;
4498 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004499
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004500 llvm_unreachable("missed an InitializedEntity kind?");
4501}
4502
Douglas Gregor4154e0b2010-04-24 23:45:46 +00004503/// \brief Whether the given entity, when initialized with an object
4504/// created for that initialization, requires destruction.
4505static bool shouldDestroyTemporary(const InitializedEntity &Entity) {
4506 switch (Entity.getKind()) {
Douglas Gregor4154e0b2010-04-24 23:45:46 +00004507 case InitializedEntity::EK_Result:
4508 case InitializedEntity::EK_New:
4509 case InitializedEntity::EK_Base:
Sean Hunt059ce0d2011-05-01 07:04:31 +00004510 case InitializedEntity::EK_Delegating:
Douglas Gregor4154e0b2010-04-24 23:45:46 +00004511 case InitializedEntity::EK_VectorElement:
Eli Friedman0c706c22011-09-19 23:17:44 +00004512 case InitializedEntity::EK_ComplexElement:
Fariborz Jahanian310b1c42010-06-07 16:14:00 +00004513 case InitializedEntity::EK_BlockElement:
Douglas Gregor47736542012-02-15 16:57:26 +00004514 case InitializedEntity::EK_LambdaCapture:
Douglas Gregor4154e0b2010-04-24 23:45:46 +00004515 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004516
Richard Smith774d8b42013-01-08 00:08:23 +00004517 case InitializedEntity::EK_Member:
Douglas Gregor4154e0b2010-04-24 23:45:46 +00004518 case InitializedEntity::EK_Variable:
4519 case InitializedEntity::EK_Parameter:
4520 case InitializedEntity::EK_Temporary:
4521 case InitializedEntity::EK_ArrayElement:
4522 case InitializedEntity::EK_Exception:
4523 return true;
4524 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004525
4526 llvm_unreachable("missed an InitializedEntity kind?");
Douglas Gregor4154e0b2010-04-24 23:45:46 +00004527}
4528
Richard Smith83da2e72011-10-19 16:55:56 +00004529/// \brief Look for copy and move constructors and constructor templates, for
4530/// copying an object via direct-initialization (per C++11 [dcl.init]p16).
4531static void LookupCopyAndMoveConstructors(Sema &S,
4532 OverloadCandidateSet &CandidateSet,
4533 CXXRecordDecl *Class,
4534 Expr *CurInitExpr) {
David Blaikie3bc93e32012-12-19 00:45:41 +00004535 DeclContext::lookup_result R = S.LookupConstructors(Class);
Argyrios Kyrtzidis8682b932012-11-13 05:07:23 +00004536 // The container holding the constructors can under certain conditions
4537 // be changed while iterating (e.g. because of deserialization).
4538 // To be safe we copy the lookup results to a new container.
David Blaikie3bc93e32012-12-19 00:45:41 +00004539 SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end());
Argyrios Kyrtzidis8682b932012-11-13 05:07:23 +00004540 for (SmallVector<NamedDecl*, 16>::iterator
4541 CI = Ctors.begin(), CE = Ctors.end(); CI != CE; ++CI) {
4542 NamedDecl *D = *CI;
Richard Smith83da2e72011-10-19 16:55:56 +00004543 CXXConstructorDecl *Constructor = 0;
4544
Argyrios Kyrtzidis8682b932012-11-13 05:07:23 +00004545 if ((Constructor = dyn_cast<CXXConstructorDecl>(D))) {
Richard Smith83da2e72011-10-19 16:55:56 +00004546 // Handle copy/moveconstructors, only.
4547 if (!Constructor || Constructor->isInvalidDecl() ||
4548 !Constructor->isCopyOrMoveConstructor() ||
4549 !Constructor->isConvertingConstructor(/*AllowExplicit=*/true))
4550 continue;
4551
4552 DeclAccessPair FoundDecl
4553 = DeclAccessPair::make(Constructor, Constructor->getAccess());
4554 S.AddOverloadCandidate(Constructor, FoundDecl,
Ahmed Charles13a140c2012-02-25 11:00:22 +00004555 CurInitExpr, CandidateSet);
Richard Smith83da2e72011-10-19 16:55:56 +00004556 continue;
4557 }
4558
4559 // Handle constructor templates.
Argyrios Kyrtzidis8682b932012-11-13 05:07:23 +00004560 FunctionTemplateDecl *ConstructorTmpl = cast<FunctionTemplateDecl>(D);
Richard Smith83da2e72011-10-19 16:55:56 +00004561 if (ConstructorTmpl->isInvalidDecl())
4562 continue;
4563
4564 Constructor = cast<CXXConstructorDecl>(
4565 ConstructorTmpl->getTemplatedDecl());
4566 if (!Constructor->isConvertingConstructor(/*AllowExplicit=*/true))
4567 continue;
4568
4569 // FIXME: Do we need to limit this to copy-constructor-like
4570 // candidates?
4571 DeclAccessPair FoundDecl
4572 = DeclAccessPair::make(ConstructorTmpl, ConstructorTmpl->getAccess());
4573 S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl, 0,
Ahmed Charles13a140c2012-02-25 11:00:22 +00004574 CurInitExpr, CandidateSet, true);
Richard Smith83da2e72011-10-19 16:55:56 +00004575 }
4576}
4577
4578/// \brief Get the location at which initialization diagnostics should appear.
4579static SourceLocation getInitializationLoc(const InitializedEntity &Entity,
4580 Expr *Initializer) {
4581 switch (Entity.getKind()) {
4582 case InitializedEntity::EK_Result:
4583 return Entity.getReturnLoc();
4584
4585 case InitializedEntity::EK_Exception:
4586 return Entity.getThrowLoc();
4587
4588 case InitializedEntity::EK_Variable:
4589 return Entity.getDecl()->getLocation();
4590
Douglas Gregor47736542012-02-15 16:57:26 +00004591 case InitializedEntity::EK_LambdaCapture:
4592 return Entity.getCaptureLoc();
4593
Richard Smith83da2e72011-10-19 16:55:56 +00004594 case InitializedEntity::EK_ArrayElement:
4595 case InitializedEntity::EK_Member:
4596 case InitializedEntity::EK_Parameter:
4597 case InitializedEntity::EK_Temporary:
4598 case InitializedEntity::EK_New:
4599 case InitializedEntity::EK_Base:
4600 case InitializedEntity::EK_Delegating:
4601 case InitializedEntity::EK_VectorElement:
4602 case InitializedEntity::EK_ComplexElement:
4603 case InitializedEntity::EK_BlockElement:
4604 return Initializer->getLocStart();
4605 }
4606 llvm_unreachable("missed an InitializedEntity kind?");
4607}
4608
Douglas Gregor523d46a2010-04-18 07:40:54 +00004609/// \brief Make a (potentially elidable) temporary copy of the object
4610/// provided by the given initializer by calling the appropriate copy
4611/// constructor.
4612///
4613/// \param S The Sema object used for type-checking.
4614///
Abramo Bagnara63e7d252011-01-27 19:55:10 +00004615/// \param T The type of the temporary object, which must either be
Douglas Gregor523d46a2010-04-18 07:40:54 +00004616/// the type of the initializer expression or a superclass thereof.
4617///
James Dennett1dfbd922012-06-14 21:40:34 +00004618/// \param Entity The entity being initialized.
Douglas Gregor523d46a2010-04-18 07:40:54 +00004619///
4620/// \param CurInit The initializer expression.
4621///
4622/// \param IsExtraneousCopy Whether this is an "extraneous" copy that
4623/// is permitted in C++03 (but not C++0x) when binding a reference to
4624/// an rvalue.
4625///
4626/// \returns An expression that copies the initializer expression into
4627/// a temporary object, or an error expression if a copy could not be
4628/// created.
John McCall60d7b3a2010-08-24 06:29:42 +00004629static ExprResult CopyObject(Sema &S,
Douglas Gregor8fcc5162010-09-12 08:07:23 +00004630 QualType T,
4631 const InitializedEntity &Entity,
4632 ExprResult CurInit,
4633 bool IsExtraneousCopy) {
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00004634 // Determine which class type we're copying to.
Anders Carlsson1b36a2f2010-01-24 00:19:41 +00004635 Expr *CurInitExpr = (Expr *)CurInit.get();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004636 CXXRecordDecl *Class = 0;
Douglas Gregor523d46a2010-04-18 07:40:54 +00004637 if (const RecordType *Record = T->getAs<RecordType>())
Douglas Gregor2f599792010-04-02 18:24:57 +00004638 Class = cast<CXXRecordDecl>(Record->getDecl());
4639 if (!Class)
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00004640 return CurInit;
Douglas Gregor2f599792010-04-02 18:24:57 +00004641
Douglas Gregorf5d8f462011-01-21 18:05:27 +00004642 // C++0x [class.copy]p32:
Douglas Gregor2f599792010-04-02 18:24:57 +00004643 // When certain criteria are met, an implementation is allowed to
4644 // omit the copy/move construction of a class object, even if the
4645 // copy/move constructor and/or destructor for the object have
4646 // side effects. [...]
4647 // - when a temporary class object that has not been bound to a
4648 // reference (12.2) would be copied/moved to a class object
4649 // with the same cv-unqualified type, the copy/move operation
4650 // can be omitted by constructing the temporary object
4651 // directly into the target of the omitted copy/move
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004652 //
Douglas Gregor2f599792010-04-02 18:24:57 +00004653 // Note that the other three bullets are handled elsewhere. Copy
Douglas Gregor3c9034c2010-05-15 00:13:29 +00004654 // elision for return statements and throw expressions are handled as part
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004655 // of constructor initialization, while copy elision for exception handlers
Douglas Gregor3c9034c2010-05-15 00:13:29 +00004656 // is handled by the run-time.
John McCall558d2ab2010-09-15 10:14:12 +00004657 bool Elidable = CurInitExpr->isTemporaryObject(S.Context, Class);
Richard Smith83da2e72011-10-19 16:55:56 +00004658 SourceLocation Loc = getInitializationLoc(Entity, CurInit.get());
Douglas Gregorf86fcb32010-04-24 21:09:25 +00004659
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004660 // Make sure that the type we are copying is complete.
Douglas Gregord10099e2012-05-04 16:32:21 +00004661 if (S.RequireCompleteType(Loc, T, diag::err_temp_copy_incomplete))
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00004662 return CurInit;
Douglas Gregorf86fcb32010-04-24 21:09:25 +00004663
Douglas Gregorcc15f012011-01-21 19:38:21 +00004664 // Perform overload resolution using the class's copy/move constructors.
Richard Smith83da2e72011-10-19 16:55:56 +00004665 // Only consider constructors and constructor templates. Per
4666 // C++0x [dcl.init]p16, second bullet to class types, this initialization
4667 // is direct-initialization.
John McCall5769d612010-02-08 23:07:23 +00004668 OverloadCandidateSet CandidateSet(Loc);
Richard Smith83da2e72011-10-19 16:55:56 +00004669 LookupCopyAndMoveConstructors(S, CandidateSet, Class, CurInitExpr);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004670
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00004671 bool HadMultipleCandidates = (CandidateSet.size() > 1);
4672
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004673 OverloadCandidateSet::iterator Best;
Chandler Carruth25ca4212011-02-25 19:41:05 +00004674 switch (CandidateSet.BestViableFunction(S, Loc, Best)) {
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004675 case OR_Success:
4676 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004677
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004678 case OR_No_Viable_Function:
Jeffrey Yasskin57d12fd2010-06-07 15:58:05 +00004679 S.Diag(Loc, IsExtraneousCopy && !S.isSFINAEContext()
4680 ? diag::ext_rvalue_to_reference_temp_copy_no_viable
4681 : diag::err_temp_copy_no_viable)
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00004682 << (int)Entity.getKind() << CurInitExpr->getType()
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004683 << CurInitExpr->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +00004684 CandidateSet.NoteCandidates(S, OCD_AllCandidates, CurInitExpr);
Jeffrey Yasskin57d12fd2010-06-07 15:58:05 +00004685 if (!IsExtraneousCopy || S.isSFINAEContext())
John McCallf312b1e2010-08-26 23:41:50 +00004686 return ExprError();
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00004687 return CurInit;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004688
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004689 case OR_Ambiguous:
4690 S.Diag(Loc, diag::err_temp_copy_ambiguous)
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00004691 << (int)Entity.getKind() << CurInitExpr->getType()
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004692 << CurInitExpr->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +00004693 CandidateSet.NoteCandidates(S, OCD_ViableCandidates, CurInitExpr);
John McCallf312b1e2010-08-26 23:41:50 +00004694 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004695
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004696 case OR_Deleted:
4697 S.Diag(Loc, diag::err_temp_copy_deleted)
Douglas Gregor7abfbdb2009-12-19 03:01:41 +00004698 << (int)Entity.getKind() << CurInitExpr->getType()
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004699 << CurInitExpr->getSourceRange();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004700 S.NoteDeletedFunction(Best->Function);
John McCallf312b1e2010-08-26 23:41:50 +00004701 return ExprError();
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004702 }
4703
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00004704 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Best->Function);
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00004705 SmallVector<Expr*, 8> ConstructorArgs;
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00004706 CurInit.release(); // Ownership transferred into MultiExprArg, below.
Douglas Gregor523d46a2010-04-18 07:40:54 +00004707
Anders Carlsson9a68a672010-04-21 18:47:17 +00004708 S.CheckConstructorAccess(Loc, Constructor, Entity,
Jeffrey Yasskin57d12fd2010-06-07 15:58:05 +00004709 Best->FoundDecl.getAccess(), IsExtraneousCopy);
Douglas Gregor523d46a2010-04-18 07:40:54 +00004710
4711 if (IsExtraneousCopy) {
4712 // If this is a totally extraneous copy for C++03 reference
4713 // binding purposes, just return the original initialization
Douglas Gregor2559a702010-04-18 07:57:34 +00004714 // expression. We don't generate an (elided) copy operation here
4715 // because doing so would require us to pass down a flag to avoid
4716 // infinite recursion, where each step adds another extraneous,
4717 // elidable copy.
Douglas Gregor523d46a2010-04-18 07:40:54 +00004718
Douglas Gregor2559a702010-04-18 07:57:34 +00004719 // Instantiate the default arguments of any extra parameters in
4720 // the selected copy constructor, as if we were going to create a
4721 // proper call to the copy constructor.
4722 for (unsigned I = 1, N = Constructor->getNumParams(); I != N; ++I) {
4723 ParmVarDecl *Parm = Constructor->getParamDecl(I);
4724 if (S.RequireCompleteType(Loc, Parm->getType(),
Douglas Gregord10099e2012-05-04 16:32:21 +00004725 diag::err_call_incomplete_argument))
Douglas Gregor2559a702010-04-18 07:57:34 +00004726 break;
4727
4728 // Build the default argument expression; we don't actually care
4729 // if this succeeds or not, because this routine will complain
4730 // if there was a problem.
4731 S.BuildCXXDefaultArgExpr(Loc, Constructor, Parm);
4732 }
4733
Douglas Gregor523d46a2010-04-18 07:40:54 +00004734 return S.Owned(CurInitExpr);
4735 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004736
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00004737 // Determine the arguments required to actually perform the
Douglas Gregor523d46a2010-04-18 07:40:54 +00004738 // constructor call (we might have derived-to-base conversions, or
4739 // the copy constructor may have default arguments).
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00004740 if (S.CompleteConstructorCall(Constructor, CurInitExpr, Loc, ConstructorArgs))
John McCallf312b1e2010-08-26 23:41:50 +00004741 return ExprError();
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00004742
Douglas Gregorb86cf0c2010-04-25 00:55:24 +00004743 // Actually perform the constructor call.
4744 CurInit = S.BuildCXXConstructExpr(Loc, T, Constructor, Elidable,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00004745 ConstructorArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00004746 HadMultipleCandidates,
Richard Smithc83c2302012-12-19 01:39:02 +00004747 /*ListInit*/ false,
John McCall7a1fad32010-08-24 07:32:53 +00004748 /*ZeroInit*/ false,
Chandler Carruth428edaf2010-10-25 08:47:36 +00004749 CXXConstructExpr::CK_Complete,
4750 SourceRange());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004751
Douglas Gregorb86cf0c2010-04-25 00:55:24 +00004752 // If we're supposed to bind temporaries, do so.
4753 if (!CurInit.isInvalid() && shouldBindAsTemporary(Entity))
4754 CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>());
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00004755 return CurInit;
Douglas Gregor18ef5e22009-12-18 05:02:21 +00004756}
Douglas Gregor20093b42009-12-09 23:02:17 +00004757
Richard Smith83da2e72011-10-19 16:55:56 +00004758/// \brief Check whether elidable copy construction for binding a reference to
4759/// a temporary would have succeeded if we were building in C++98 mode, for
4760/// -Wc++98-compat.
4761static void CheckCXX98CompatAccessibleCopy(Sema &S,
4762 const InitializedEntity &Entity,
4763 Expr *CurInitExpr) {
Richard Smith80ad52f2013-01-02 11:42:31 +00004764 assert(S.getLangOpts().CPlusPlus11);
Richard Smith83da2e72011-10-19 16:55:56 +00004765
4766 const RecordType *Record = CurInitExpr->getType()->getAs<RecordType>();
4767 if (!Record)
4768 return;
4769
4770 SourceLocation Loc = getInitializationLoc(Entity, CurInitExpr);
4771 if (S.Diags.getDiagnosticLevel(diag::warn_cxx98_compat_temp_copy, Loc)
4772 == DiagnosticsEngine::Ignored)
4773 return;
4774
4775 // Find constructors which would have been considered.
4776 OverloadCandidateSet CandidateSet(Loc);
4777 LookupCopyAndMoveConstructors(
4778 S, CandidateSet, cast<CXXRecordDecl>(Record->getDecl()), CurInitExpr);
4779
4780 // Perform overload resolution.
4781 OverloadCandidateSet::iterator Best;
4782 OverloadingResult OR = CandidateSet.BestViableFunction(S, Loc, Best);
4783
4784 PartialDiagnostic Diag = S.PDiag(diag::warn_cxx98_compat_temp_copy)
4785 << OR << (int)Entity.getKind() << CurInitExpr->getType()
4786 << CurInitExpr->getSourceRange();
4787
4788 switch (OR) {
4789 case OR_Success:
4790 S.CheckConstructorAccess(Loc, cast<CXXConstructorDecl>(Best->Function),
John McCallb9abd8722012-04-07 03:04:20 +00004791 Entity, Best->FoundDecl.getAccess(), Diag);
Richard Smith83da2e72011-10-19 16:55:56 +00004792 // FIXME: Check default arguments as far as that's possible.
4793 break;
4794
4795 case OR_No_Viable_Function:
4796 S.Diag(Loc, Diag);
Ahmed Charles13a140c2012-02-25 11:00:22 +00004797 CandidateSet.NoteCandidates(S, OCD_AllCandidates, CurInitExpr);
Richard Smith83da2e72011-10-19 16:55:56 +00004798 break;
4799
4800 case OR_Ambiguous:
4801 S.Diag(Loc, Diag);
Ahmed Charles13a140c2012-02-25 11:00:22 +00004802 CandidateSet.NoteCandidates(S, OCD_ViableCandidates, CurInitExpr);
Richard Smith83da2e72011-10-19 16:55:56 +00004803 break;
4804
4805 case OR_Deleted:
4806 S.Diag(Loc, Diag);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004807 S.NoteDeletedFunction(Best->Function);
Richard Smith83da2e72011-10-19 16:55:56 +00004808 break;
4809 }
4810}
4811
Douglas Gregora41a8c52010-04-22 00:20:18 +00004812void InitializationSequence::PrintInitLocationNote(Sema &S,
4813 const InitializedEntity &Entity) {
4814 if (Entity.getKind() == InitializedEntity::EK_Parameter && Entity.getDecl()) {
4815 if (Entity.getDecl()->getLocation().isInvalid())
4816 return;
4817
4818 if (Entity.getDecl()->getDeclName())
4819 S.Diag(Entity.getDecl()->getLocation(), diag::note_parameter_named_here)
4820 << Entity.getDecl()->getDeclName();
4821 else
4822 S.Diag(Entity.getDecl()->getLocation(), diag::note_parameter_here);
4823 }
4824}
4825
Sebastian Redl3b802322011-07-14 19:07:55 +00004826static bool isReferenceBinding(const InitializationSequence::Step &s) {
4827 return s.Kind == InitializationSequence::SK_BindReference ||
4828 s.Kind == InitializationSequence::SK_BindReferenceToTemporary;
4829}
4830
Sebastian Redl10f04a62011-12-22 14:44:04 +00004831static ExprResult
4832PerformConstructorInitialization(Sema &S,
4833 const InitializedEntity &Entity,
4834 const InitializationKind &Kind,
4835 MultiExprArg Args,
4836 const InitializationSequence::Step& Step,
Richard Smithc83c2302012-12-19 01:39:02 +00004837 bool &ConstructorInitRequiresZeroInit,
4838 bool IsListInitialization) {
Sebastian Redl10f04a62011-12-22 14:44:04 +00004839 unsigned NumArgs = Args.size();
4840 CXXConstructorDecl *Constructor
4841 = cast<CXXConstructorDecl>(Step.Function.Function);
4842 bool HadMultipleCandidates = Step.Function.HadMultipleCandidates;
4843
4844 // Build a call to the selected constructor.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00004845 SmallVector<Expr*, 8> ConstructorArgs;
Sebastian Redl10f04a62011-12-22 14:44:04 +00004846 SourceLocation Loc = (Kind.isCopyInit() && Kind.getEqualLoc().isValid())
4847 ? Kind.getEqualLoc()
4848 : Kind.getLocation();
4849
4850 if (Kind.getKind() == InitializationKind::IK_Default) {
4851 // Force even a trivial, implicit default constructor to be
4852 // semantically checked. We do this explicitly because we don't build
4853 // the definition for completely trivial constructors.
Matt Beaumont-Gay28e47022012-02-24 08:37:56 +00004854 assert(Constructor->getParent() && "No parent class for constructor.");
Sebastian Redl10f04a62011-12-22 14:44:04 +00004855 if (Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Douglas Gregor5d86f612012-02-24 07:48:37 +00004856 Constructor->isTrivial() && !Constructor->isUsed(false))
Sebastian Redl10f04a62011-12-22 14:44:04 +00004857 S.DefineImplicitDefaultConstructor(Loc, Constructor);
4858 }
4859
4860 ExprResult CurInit = S.Owned((Expr *)0);
4861
Douglas Gregored878af2012-02-24 23:56:31 +00004862 // C++ [over.match.copy]p1:
4863 // - When initializing a temporary to be bound to the first parameter
4864 // of a constructor that takes a reference to possibly cv-qualified
4865 // T as its first argument, called with a single argument in the
4866 // context of direct-initialization, explicit conversion functions
4867 // are also considered.
4868 bool AllowExplicitConv = Kind.AllowExplicit() && !Kind.isCopyInit() &&
4869 Args.size() == 1 &&
4870 Constructor->isCopyOrMoveConstructor();
4871
Sebastian Redl10f04a62011-12-22 14:44:04 +00004872 // Determine the arguments required to actually perform the constructor
4873 // call.
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00004874 if (S.CompleteConstructorCall(Constructor, Args,
Douglas Gregored878af2012-02-24 23:56:31 +00004875 Loc, ConstructorArgs,
Richard Smitha4dc51b2013-02-05 05:52:24 +00004876 AllowExplicitConv,
4877 IsListInitialization))
Sebastian Redl10f04a62011-12-22 14:44:04 +00004878 return ExprError();
4879
4880
4881 if (Entity.getKind() == InitializedEntity::EK_Temporary &&
Sebastian Redl188158d2012-03-08 21:05:45 +00004882 (Kind.getKind() == InitializationKind::IK_DirectList ||
4883 (NumArgs != 1 && // FIXME: Hack to work around cast weirdness
4884 (Kind.getKind() == InitializationKind::IK_Direct ||
4885 Kind.getKind() == InitializationKind::IK_Value)))) {
Sebastian Redl10f04a62011-12-22 14:44:04 +00004886 // An explicitly-constructed temporary, e.g., X(1, 2).
Eli Friedman5f2987c2012-02-02 03:46:19 +00004887 S.MarkFunctionReferenced(Loc, Constructor);
Richard Smith82f145d2013-05-04 06:44:46 +00004888 if (S.DiagnoseUseOfDecl(Constructor, Loc))
4889 return ExprError();
Sebastian Redl10f04a62011-12-22 14:44:04 +00004890
4891 TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo();
4892 if (!TSInfo)
4893 TSInfo = S.Context.getTrivialTypeSourceInfo(Entity.getType(), Loc);
Sebastian Redl188158d2012-03-08 21:05:45 +00004894 SourceRange ParenRange;
4895 if (Kind.getKind() != InitializationKind::IK_DirectList)
4896 ParenRange = Kind.getParenRange();
Sebastian Redl10f04a62011-12-22 14:44:04 +00004897
Richard Smithc83c2302012-12-19 01:39:02 +00004898 CurInit = S.Owned(
4899 new (S.Context) CXXTemporaryObjectExpr(S.Context, Constructor,
4900 TSInfo, ConstructorArgs,
4901 ParenRange, IsListInitialization,
4902 HadMultipleCandidates,
4903 ConstructorInitRequiresZeroInit));
Sebastian Redl10f04a62011-12-22 14:44:04 +00004904 } else {
4905 CXXConstructExpr::ConstructionKind ConstructKind =
4906 CXXConstructExpr::CK_Complete;
4907
4908 if (Entity.getKind() == InitializedEntity::EK_Base) {
4909 ConstructKind = Entity.getBaseSpecifier()->isVirtual() ?
4910 CXXConstructExpr::CK_VirtualBase :
4911 CXXConstructExpr::CK_NonVirtualBase;
4912 } else if (Entity.getKind() == InitializedEntity::EK_Delegating) {
4913 ConstructKind = CXXConstructExpr::CK_Delegating;
4914 }
4915
4916 // Only get the parenthesis range if it is a direct construction.
4917 SourceRange parenRange =
4918 Kind.getKind() == InitializationKind::IK_Direct ?
4919 Kind.getParenRange() : SourceRange();
4920
4921 // If the entity allows NRVO, mark the construction as elidable
4922 // unconditionally.
4923 if (Entity.allowsNRVO())
4924 CurInit = S.BuildCXXConstructExpr(Loc, Entity.getType(),
4925 Constructor, /*Elidable=*/true,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00004926 ConstructorArgs,
Sebastian Redl10f04a62011-12-22 14:44:04 +00004927 HadMultipleCandidates,
Richard Smithc83c2302012-12-19 01:39:02 +00004928 IsListInitialization,
Sebastian Redl10f04a62011-12-22 14:44:04 +00004929 ConstructorInitRequiresZeroInit,
4930 ConstructKind,
4931 parenRange);
4932 else
4933 CurInit = S.BuildCXXConstructExpr(Loc, Entity.getType(),
4934 Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00004935 ConstructorArgs,
Sebastian Redl10f04a62011-12-22 14:44:04 +00004936 HadMultipleCandidates,
Richard Smithc83c2302012-12-19 01:39:02 +00004937 IsListInitialization,
Sebastian Redl10f04a62011-12-22 14:44:04 +00004938 ConstructorInitRequiresZeroInit,
4939 ConstructKind,
4940 parenRange);
4941 }
4942 if (CurInit.isInvalid())
4943 return ExprError();
4944
4945 // Only check access if all of that succeeded.
4946 S.CheckConstructorAccess(Loc, Constructor, Entity,
4947 Step.Function.FoundDecl.getAccess());
Richard Smith82f145d2013-05-04 06:44:46 +00004948 if (S.DiagnoseUseOfDecl(Step.Function.FoundDecl, Loc))
4949 return ExprError();
Sebastian Redl10f04a62011-12-22 14:44:04 +00004950
4951 if (shouldBindAsTemporary(Entity))
4952 CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>());
4953
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00004954 return CurInit;
Sebastian Redl10f04a62011-12-22 14:44:04 +00004955}
4956
Richard Smith36d02af2012-06-04 22:27:30 +00004957/// Determine whether the specified InitializedEntity definitely has a lifetime
4958/// longer than the current full-expression. Conservatively returns false if
4959/// it's unclear.
4960static bool
4961InitializedEntityOutlivesFullExpression(const InitializedEntity &Entity) {
4962 const InitializedEntity *Top = &Entity;
4963 while (Top->getParent())
4964 Top = Top->getParent();
4965
4966 switch (Top->getKind()) {
4967 case InitializedEntity::EK_Variable:
4968 case InitializedEntity::EK_Result:
4969 case InitializedEntity::EK_Exception:
4970 case InitializedEntity::EK_Member:
4971 case InitializedEntity::EK_New:
4972 case InitializedEntity::EK_Base:
4973 case InitializedEntity::EK_Delegating:
4974 return true;
4975
4976 case InitializedEntity::EK_ArrayElement:
4977 case InitializedEntity::EK_VectorElement:
4978 case InitializedEntity::EK_BlockElement:
4979 case InitializedEntity::EK_ComplexElement:
4980 // Could not determine what the full initialization is. Assume it might not
4981 // outlive the full-expression.
4982 return false;
4983
4984 case InitializedEntity::EK_Parameter:
4985 case InitializedEntity::EK_Temporary:
4986 case InitializedEntity::EK_LambdaCapture:
4987 // The entity being initialized might not outlive the full-expression.
4988 return false;
4989 }
4990
4991 llvm_unreachable("unknown entity kind");
4992}
4993
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004994ExprResult
Douglas Gregor20093b42009-12-09 23:02:17 +00004995InitializationSequence::Perform(Sema &S,
4996 const InitializedEntity &Entity,
4997 const InitializationKind &Kind,
John McCallf312b1e2010-08-26 23:41:50 +00004998 MultiExprArg Args,
Douglas Gregord87b61f2009-12-10 17:56:55 +00004999 QualType *ResultType) {
Sebastian Redld695d6b2011-06-05 13:59:05 +00005000 if (Failed()) {
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00005001 Diagnose(S, Entity, Kind, Args);
John McCallf312b1e2010-08-26 23:41:50 +00005002 return ExprError();
Douglas Gregor20093b42009-12-09 23:02:17 +00005003 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005004
Sebastian Redl7491c492011-06-05 13:59:11 +00005005 if (getKind() == DependentSequence) {
Douglas Gregord87b61f2009-12-10 17:56:55 +00005006 // If the declaration is a non-dependent, incomplete array type
5007 // that has an initializer, then its type will be completed once
5008 // the initializer is instantiated.
Douglas Gregord6542d82009-12-22 15:35:07 +00005009 if (ResultType && !Entity.getType()->isDependentType() &&
Douglas Gregord87b61f2009-12-10 17:56:55 +00005010 Args.size() == 1) {
Douglas Gregord6542d82009-12-22 15:35:07 +00005011 QualType DeclType = Entity.getType();
Douglas Gregord87b61f2009-12-10 17:56:55 +00005012 if (const IncompleteArrayType *ArrayT
5013 = S.Context.getAsIncompleteArrayType(DeclType)) {
5014 // FIXME: We don't currently have the ability to accurately
5015 // compute the length of an initializer list without
5016 // performing full type-checking of the initializer list
5017 // (since we have to determine where braces are implicitly
5018 // introduced and such). So, we fall back to making the array
5019 // type a dependently-sized array type with no specified
5020 // bound.
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005021 if (isa<InitListExpr>((Expr *)Args[0])) {
Douglas Gregord87b61f2009-12-10 17:56:55 +00005022 SourceRange Brackets;
Douglas Gregord6542d82009-12-22 15:35:07 +00005023
Douglas Gregord87b61f2009-12-10 17:56:55 +00005024 // Scavange the location of the brackets from the entity, if we can.
Douglas Gregord6542d82009-12-22 15:35:07 +00005025 if (DeclaratorDecl *DD = Entity.getDecl()) {
5026 if (TypeSourceInfo *TInfo = DD->getTypeSourceInfo()) {
5027 TypeLoc TL = TInfo->getTypeLoc();
David Blaikie39e6ab42013-02-18 22:06:02 +00005028 if (IncompleteArrayTypeLoc ArrayLoc =
5029 TL.getAs<IncompleteArrayTypeLoc>())
5030 Brackets = ArrayLoc.getBracketsRange();
Douglas Gregord6542d82009-12-22 15:35:07 +00005031 }
Douglas Gregord87b61f2009-12-10 17:56:55 +00005032 }
5033
5034 *ResultType
5035 = S.Context.getDependentSizedArrayType(ArrayT->getElementType(),
5036 /*NumElts=*/0,
5037 ArrayT->getSizeModifier(),
5038 ArrayT->getIndexTypeCVRQualifiers(),
5039 Brackets);
5040 }
5041
5042 }
5043 }
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00005044 if (Kind.getKind() == InitializationKind::IK_Direct &&
5045 !Kind.isExplicitCast()) {
5046 // Rebuild the ParenListExpr.
5047 SourceRange ParenRange = Kind.getParenRange();
5048 return S.ActOnParenListExpr(ParenRange.getBegin(), ParenRange.getEnd(),
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005049 Args);
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00005050 }
Manuel Klimek0d9106f2011-06-22 20:02:16 +00005051 assert(Kind.getKind() == InitializationKind::IK_Copy ||
Douglas Gregora9b55a42012-04-04 04:06:51 +00005052 Kind.isExplicitCast() ||
5053 Kind.getKind() == InitializationKind::IK_DirectList);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005054 return ExprResult(Args[0]);
Douglas Gregor20093b42009-12-09 23:02:17 +00005055 }
5056
Sebastian Redl7491c492011-06-05 13:59:11 +00005057 // No steps means no initialization.
5058 if (Steps.empty())
Douglas Gregor99a2e602009-12-16 01:38:02 +00005059 return S.Owned((Expr *)0);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005060
Richard Smith80ad52f2013-01-02 11:42:31 +00005061 if (S.getLangOpts().CPlusPlus11 && Entity.getType()->isReferenceType() &&
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005062 Args.size() == 1 && isa<InitListExpr>(Args[0]) &&
Richard Smith03544fc2012-04-19 06:58:00 +00005063 Entity.getKind() != InitializedEntity::EK_Parameter) {
5064 // Produce a C++98 compatibility warning if we are initializing a reference
5065 // from an initializer list. For parameters, we produce a better warning
5066 // elsewhere.
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005067 Expr *Init = Args[0];
Richard Smith03544fc2012-04-19 06:58:00 +00005068 S.Diag(Init->getLocStart(), diag::warn_cxx98_compat_reference_list_init)
5069 << Init->getSourceRange();
5070 }
5071
Richard Smith36d02af2012-06-04 22:27:30 +00005072 // Diagnose cases where we initialize a pointer to an array temporary, and the
5073 // pointer obviously outlives the temporary.
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005074 if (Args.size() == 1 && Args[0]->getType()->isArrayType() &&
Richard Smith36d02af2012-06-04 22:27:30 +00005075 Entity.getType()->isPointerType() &&
5076 InitializedEntityOutlivesFullExpression(Entity)) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005077 Expr *Init = Args[0];
Richard Smith36d02af2012-06-04 22:27:30 +00005078 Expr::LValueClassification Kind = Init->ClassifyLValue(S.Context);
5079 if (Kind == Expr::LV_ClassTemporary || Kind == Expr::LV_ArrayTemporary)
5080 S.Diag(Init->getLocStart(), diag::warn_temporary_array_to_pointer_decay)
5081 << Init->getSourceRange();
5082 }
5083
Douglas Gregord6542d82009-12-22 15:35:07 +00005084 QualType DestType = Entity.getType().getNonReferenceType();
5085 // FIXME: Ugly hack around the fact that Entity.getType() is not
Eli Friedmana91eb542009-12-22 02:10:53 +00005086 // the same as Entity.getDecl()->getType() in cases involving type merging,
5087 // and we want latter when it makes sense.
Douglas Gregord87b61f2009-12-10 17:56:55 +00005088 if (ResultType)
Eli Friedmana91eb542009-12-22 02:10:53 +00005089 *ResultType = Entity.getDecl() ? Entity.getDecl()->getType() :
Douglas Gregord6542d82009-12-22 15:35:07 +00005090 Entity.getType();
Douglas Gregor20093b42009-12-09 23:02:17 +00005091
John McCall60d7b3a2010-08-24 06:29:42 +00005092 ExprResult CurInit = S.Owned((Expr *)0);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005093
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005094 // For initialization steps that start with a single initializer,
Douglas Gregor99a2e602009-12-16 01:38:02 +00005095 // grab the only argument out the Args and place it into the "current"
5096 // initializer.
5097 switch (Steps.front().Kind) {
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005098 case SK_ResolveAddressOfOverloadedFunction:
5099 case SK_CastDerivedToBaseRValue:
Sebastian Redl906082e2010-07-20 04:20:21 +00005100 case SK_CastDerivedToBaseXValue:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005101 case SK_CastDerivedToBaseLValue:
5102 case SK_BindReference:
5103 case SK_BindReferenceToTemporary:
Douglas Gregor523d46a2010-04-18 07:40:54 +00005104 case SK_ExtraneousCopyToTemporary:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005105 case SK_UserConversion:
5106 case SK_QualificationConversionLValue:
Sebastian Redl906082e2010-07-20 04:20:21 +00005107 case SK_QualificationConversionXValue:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005108 case SK_QualificationConversionRValue:
Jordan Rose1fd1e282013-04-11 00:58:58 +00005109 case SK_LValueToRValue:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005110 case SK_ConversionSequence:
5111 case SK_ListInitialization:
Sebastian Redl13dc8f92011-11-27 16:50:07 +00005112 case SK_UnwrapInitList:
5113 case SK_RewrapInitList:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005114 case SK_CAssignment:
Eli Friedmancfdc81a2009-12-19 08:11:05 +00005115 case SK_StringInit:
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00005116 case SK_ObjCObjectConversion:
John McCallf85e1932011-06-15 23:02:42 +00005117 case SK_ArrayInit:
Richard Smith0f163e92012-02-15 22:38:09 +00005118 case SK_ParenthesizedArrayInit:
John McCallf85e1932011-06-15 23:02:42 +00005119 case SK_PassByIndirectCopyRestore:
5120 case SK_PassByIndirectRestore:
Sebastian Redl2b916b82012-01-17 22:49:42 +00005121 case SK_ProduceObjCObject:
Guy Benyeie6b9d802013-01-20 12:31:11 +00005122 case SK_StdInitializerList:
Guy Benyei21f18c42013-02-07 10:55:47 +00005123 case SK_OCLSamplerInit:
Guy Benyeie6b9d802013-01-20 12:31:11 +00005124 case SK_OCLZeroEvent: {
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005125 assert(Args.size() == 1);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005126 CurInit = Args[0];
John Wiegley429bb272011-04-08 18:41:53 +00005127 if (!CurInit.get()) return ExprError();
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005128 break;
John McCallf6a16482010-12-04 03:47:34 +00005129 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005130
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005131 case SK_ConstructorInitialization:
Richard Smithf4bb8d02012-07-05 08:39:21 +00005132 case SK_ListConstructorCall:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005133 case SK_ZeroInitialization:
5134 break;
Douglas Gregor20093b42009-12-09 23:02:17 +00005135 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005136
5137 // Walk through the computed steps for the initialization sequence,
Douglas Gregor20093b42009-12-09 23:02:17 +00005138 // performing the specified conversions along the way.
Douglas Gregor16006c92009-12-16 18:50:27 +00005139 bool ConstructorInitRequiresZeroInit = false;
Douglas Gregor20093b42009-12-09 23:02:17 +00005140 for (step_iterator Step = step_begin(), StepEnd = step_end();
5141 Step != StepEnd; ++Step) {
5142 if (CurInit.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00005143 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005144
John Wiegley429bb272011-04-08 18:41:53 +00005145 QualType SourceType = CurInit.get() ? CurInit.get()->getType() : QualType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005146
Douglas Gregor20093b42009-12-09 23:02:17 +00005147 switch (Step->Kind) {
5148 case SK_ResolveAddressOfOverloadedFunction:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005149 // Overload resolution determined which function invoke; update the
Douglas Gregor20093b42009-12-09 23:02:17 +00005150 // initializer to reflect that choice.
John Wiegley429bb272011-04-08 18:41:53 +00005151 S.CheckAddressOfMemberAccess(CurInit.get(), Step->Function.FoundDecl);
Richard Smith82f145d2013-05-04 06:44:46 +00005152 if (S.DiagnoseUseOfDecl(Step->Function.FoundDecl, Kind.getLocation()))
5153 return ExprError();
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005154 CurInit = S.FixOverloadedFunctionReference(CurInit,
John McCall6bb80172010-03-30 21:47:33 +00005155 Step->Function.FoundDecl,
John McCall9aa472c2010-03-19 07:35:19 +00005156 Step->Function.Function);
Douglas Gregor20093b42009-12-09 23:02:17 +00005157 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005158
Douglas Gregor20093b42009-12-09 23:02:17 +00005159 case SK_CastDerivedToBaseRValue:
Sebastian Redl906082e2010-07-20 04:20:21 +00005160 case SK_CastDerivedToBaseXValue:
Douglas Gregor20093b42009-12-09 23:02:17 +00005161 case SK_CastDerivedToBaseLValue: {
5162 // We have a derived-to-base cast that produces either an rvalue or an
5163 // lvalue. Perform that cast.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005164
John McCallf871d0c2010-08-07 06:22:56 +00005165 CXXCastPath BasePath;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00005166
Douglas Gregor20093b42009-12-09 23:02:17 +00005167 // Casts to inaccessible base classes are allowed with C-style casts.
5168 bool IgnoreBaseAccess = Kind.isCStyleOrFunctionalCast();
5169 if (S.CheckDerivedToBaseConversion(SourceType, Step->Type,
John Wiegley429bb272011-04-08 18:41:53 +00005170 CurInit.get()->getLocStart(),
5171 CurInit.get()->getSourceRange(),
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00005172 &BasePath, IgnoreBaseAccess))
John McCallf312b1e2010-08-26 23:41:50 +00005173 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005174
Douglas Gregor6fb745b2010-05-13 16:44:06 +00005175 if (S.BasePathInvolvesVirtualBase(BasePath)) {
5176 QualType T = SourceType;
5177 if (const PointerType *Pointer = T->getAs<PointerType>())
5178 T = Pointer->getPointeeType();
5179 if (const RecordType *RecordTy = T->getAs<RecordType>())
John Wiegley429bb272011-04-08 18:41:53 +00005180 S.MarkVTableUsed(CurInit.get()->getLocStart(),
Douglas Gregor6fb745b2010-05-13 16:44:06 +00005181 cast<CXXRecordDecl>(RecordTy->getDecl()));
5182 }
5183
John McCall5baba9d2010-08-25 10:28:54 +00005184 ExprValueKind VK =
Sebastian Redl906082e2010-07-20 04:20:21 +00005185 Step->Kind == SK_CastDerivedToBaseLValue ?
John McCall5baba9d2010-08-25 10:28:54 +00005186 VK_LValue :
Sebastian Redl906082e2010-07-20 04:20:21 +00005187 (Step->Kind == SK_CastDerivedToBaseXValue ?
John McCall5baba9d2010-08-25 10:28:54 +00005188 VK_XValue :
5189 VK_RValue);
John McCallf871d0c2010-08-07 06:22:56 +00005190 CurInit = S.Owned(ImplicitCastExpr::Create(S.Context,
5191 Step->Type,
John McCall2de56d12010-08-25 11:45:40 +00005192 CK_DerivedToBase,
John McCall5baba9d2010-08-25 10:28:54 +00005193 CurInit.get(),
5194 &BasePath, VK));
Douglas Gregor20093b42009-12-09 23:02:17 +00005195 break;
5196 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005197
Douglas Gregor20093b42009-12-09 23:02:17 +00005198 case SK_BindReference:
John Wiegley429bb272011-04-08 18:41:53 +00005199 if (FieldDecl *BitField = CurInit.get()->getBitField()) {
Douglas Gregor20093b42009-12-09 23:02:17 +00005200 // References cannot bind to bit fields (C++ [dcl.init.ref]p5).
5201 S.Diag(Kind.getLocation(), diag::err_reference_bind_to_bitfield)
Douglas Gregord6542d82009-12-22 15:35:07 +00005202 << Entity.getType().isVolatileQualified()
Douglas Gregor20093b42009-12-09 23:02:17 +00005203 << BitField->getDeclName()
John Wiegley429bb272011-04-08 18:41:53 +00005204 << CurInit.get()->getSourceRange();
Douglas Gregor20093b42009-12-09 23:02:17 +00005205 S.Diag(BitField->getLocation(), diag::note_bitfield_decl);
John McCallf312b1e2010-08-26 23:41:50 +00005206 return ExprError();
Douglas Gregor20093b42009-12-09 23:02:17 +00005207 }
Anders Carlssona6fe0bf2010-01-29 02:47:33 +00005208
John Wiegley429bb272011-04-08 18:41:53 +00005209 if (CurInit.get()->refersToVectorElement()) {
John McCall41593e32010-02-02 19:02:38 +00005210 // References cannot bind to vector elements.
Anders Carlsson09380262010-01-31 17:18:49 +00005211 S.Diag(Kind.getLocation(), diag::err_reference_bind_to_vector_element)
5212 << Entity.getType().isVolatileQualified()
John Wiegley429bb272011-04-08 18:41:53 +00005213 << CurInit.get()->getSourceRange();
Douglas Gregora41a8c52010-04-22 00:20:18 +00005214 PrintInitLocationNote(S, Entity);
John McCallf312b1e2010-08-26 23:41:50 +00005215 return ExprError();
Anders Carlsson09380262010-01-31 17:18:49 +00005216 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005217
Douglas Gregor20093b42009-12-09 23:02:17 +00005218 // Reference binding does not have any corresponding ASTs.
5219
5220 // Check exception specifications
John Wiegley429bb272011-04-08 18:41:53 +00005221 if (S.CheckExceptionSpecCompatibility(CurInit.get(), DestType))
John McCallf312b1e2010-08-26 23:41:50 +00005222 return ExprError();
Anders Carlsson3aba0932010-01-31 18:34:51 +00005223
Douglas Gregor20093b42009-12-09 23:02:17 +00005224 break;
Anders Carlsson3aba0932010-01-31 18:34:51 +00005225
Douglas Gregor20093b42009-12-09 23:02:17 +00005226 case SK_BindReferenceToTemporary:
Jordan Rose1fd1e282013-04-11 00:58:58 +00005227 // Make sure the "temporary" is actually an rvalue.
5228 assert(CurInit.get()->isRValue() && "not a temporary");
5229
Douglas Gregor20093b42009-12-09 23:02:17 +00005230 // Check exception specifications
John Wiegley429bb272011-04-08 18:41:53 +00005231 if (S.CheckExceptionSpecCompatibility(CurInit.get(), DestType))
John McCallf312b1e2010-08-26 23:41:50 +00005232 return ExprError();
Douglas Gregor20093b42009-12-09 23:02:17 +00005233
Douglas Gregor03e80032011-06-21 17:03:29 +00005234 // Materialize the temporary into memory.
Douglas Gregorb4b7b502011-06-22 15:05:02 +00005235 CurInit = new (S.Context) MaterializeTemporaryExpr(
5236 Entity.getType().getNonReferenceType(),
5237 CurInit.get(),
Douglas Gregor03e80032011-06-21 17:03:29 +00005238 Entity.getType()->isLValueReferenceType());
Douglas Gregord7b23162011-06-22 16:12:01 +00005239
5240 // If we're binding to an Objective-C object that has lifetime, we
5241 // need cleanups.
David Blaikie4e4d0842012-03-11 07:00:24 +00005242 if (S.getLangOpts().ObjCAutoRefCount &&
Douglas Gregord7b23162011-06-22 16:12:01 +00005243 CurInit.get()->getType()->isObjCLifetimeType())
5244 S.ExprNeedsCleanups = true;
5245
Douglas Gregor20093b42009-12-09 23:02:17 +00005246 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005247
Douglas Gregor523d46a2010-04-18 07:40:54 +00005248 case SK_ExtraneousCopyToTemporary:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005249 CurInit = CopyObject(S, Step->Type, Entity, CurInit,
Douglas Gregor523d46a2010-04-18 07:40:54 +00005250 /*IsExtraneousCopy=*/true);
5251 break;
5252
Douglas Gregor20093b42009-12-09 23:02:17 +00005253 case SK_UserConversion: {
5254 // We have a user-defined conversion that invokes either a constructor
5255 // or a conversion function.
John McCalldaa8e4e2010-11-15 09:13:47 +00005256 CastKind CastKind;
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005257 bool IsCopy = false;
John McCall9aa472c2010-03-19 07:35:19 +00005258 FunctionDecl *Fn = Step->Function.Function;
5259 DeclAccessPair FoundFn = Step->Function.FoundDecl;
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00005260 bool HadMultipleCandidates = Step->Function.HadMultipleCandidates;
Douglas Gregor4154e0b2010-04-24 23:45:46 +00005261 bool CreatedObject = false;
John McCallb13b7372010-02-01 03:16:54 +00005262 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Fn)) {
Douglas Gregor20093b42009-12-09 23:02:17 +00005263 // Build a call to the selected constructor.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00005264 SmallVector<Expr*, 8> ConstructorArgs;
John Wiegley429bb272011-04-08 18:41:53 +00005265 SourceLocation Loc = CurInit.get()->getLocStart();
Douglas Gregor20093b42009-12-09 23:02:17 +00005266 CurInit.release(); // Ownership transferred into MultiExprArg, below.
John McCallb13b7372010-02-01 03:16:54 +00005267
Douglas Gregor20093b42009-12-09 23:02:17 +00005268 // Determine the arguments required to actually perform the constructor
5269 // call.
John Wiegley429bb272011-04-08 18:41:53 +00005270 Expr *Arg = CurInit.get();
Douglas Gregor20093b42009-12-09 23:02:17 +00005271 if (S.CompleteConstructorCall(Constructor,
John Wiegley429bb272011-04-08 18:41:53 +00005272 MultiExprArg(&Arg, 1),
Douglas Gregor20093b42009-12-09 23:02:17 +00005273 Loc, ConstructorArgs))
John McCallf312b1e2010-08-26 23:41:50 +00005274 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005275
Richard Smithf2e4dfc2012-02-11 19:22:50 +00005276 // Build an expression that constructs a temporary.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005277 CurInit = S.BuildCXXConstructExpr(Loc, Step->Type, Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005278 ConstructorArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00005279 HadMultipleCandidates,
Richard Smithc83c2302012-12-19 01:39:02 +00005280 /*ListInit*/ false,
John McCall7a1fad32010-08-24 07:32:53 +00005281 /*ZeroInit*/ false,
Chandler Carruth428edaf2010-10-25 08:47:36 +00005282 CXXConstructExpr::CK_Complete,
5283 SourceRange());
Douglas Gregor20093b42009-12-09 23:02:17 +00005284 if (CurInit.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00005285 return ExprError();
John McCallb13b7372010-02-01 03:16:54 +00005286
Anders Carlsson9a68a672010-04-21 18:47:17 +00005287 S.CheckConstructorAccess(Kind.getLocation(), Constructor, Entity,
John McCall9aa472c2010-03-19 07:35:19 +00005288 FoundFn.getAccess());
Richard Smith82f145d2013-05-04 06:44:46 +00005289 if (S.DiagnoseUseOfDecl(FoundFn, Kind.getLocation()))
5290 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005291
John McCall2de56d12010-08-25 11:45:40 +00005292 CastKind = CK_ConstructorConversion;
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005293 QualType Class = S.Context.getTypeDeclType(Constructor->getParent());
5294 if (S.Context.hasSameUnqualifiedType(SourceType, Class) ||
5295 S.IsDerivedFrom(SourceType, Class))
5296 IsCopy = true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005297
Douglas Gregor4154e0b2010-04-24 23:45:46 +00005298 CreatedObject = true;
Douglas Gregor20093b42009-12-09 23:02:17 +00005299 } else {
5300 // Build a call to the conversion function.
John McCallb13b7372010-02-01 03:16:54 +00005301 CXXConversionDecl *Conversion = cast<CXXConversionDecl>(Fn);
John Wiegley429bb272011-04-08 18:41:53 +00005302 S.CheckMemberOperatorAccess(Kind.getLocation(), CurInit.get(), 0,
John McCall9aa472c2010-03-19 07:35:19 +00005303 FoundFn);
Richard Smith82f145d2013-05-04 06:44:46 +00005304 if (S.DiagnoseUseOfDecl(FoundFn, Kind.getLocation()))
5305 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005306
5307 // FIXME: Should we move this initialization into a separate
Douglas Gregor20093b42009-12-09 23:02:17 +00005308 // derived-to-base conversion? I believe the answer is "no", because
5309 // we don't want to turn off access control here for c-style casts.
John Wiegley429bb272011-04-08 18:41:53 +00005310 ExprResult CurInitExprRes =
5311 S.PerformObjectArgumentInitialization(CurInit.take(), /*Qualifier=*/0,
5312 FoundFn, Conversion);
5313 if(CurInitExprRes.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00005314 return ExprError();
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005315 CurInit = CurInitExprRes;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005316
Douglas Gregor20093b42009-12-09 23:02:17 +00005317 // Build the actual call to the conversion function.
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00005318 CurInit = S.BuildCXXMemberCallExpr(CurInit.get(), FoundFn, Conversion,
5319 HadMultipleCandidates);
Douglas Gregor20093b42009-12-09 23:02:17 +00005320 if (CurInit.isInvalid() || !CurInit.get())
John McCallf312b1e2010-08-26 23:41:50 +00005321 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005322
John McCall2de56d12010-08-25 11:45:40 +00005323 CastKind = CK_UserDefinedConversion;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005324
Douglas Gregor4154e0b2010-04-24 23:45:46 +00005325 CreatedObject = Conversion->getResultType()->isRecordType();
Douglas Gregor20093b42009-12-09 23:02:17 +00005326 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005327
Sebastian Redl3b802322011-07-14 19:07:55 +00005328 bool RequiresCopy = !IsCopy && !isReferenceBinding(Steps.back());
Abramo Bagnara960809e2011-11-16 22:46:05 +00005329 bool MaybeBindToTemp = RequiresCopy || shouldBindAsTemporary(Entity);
5330
5331 if (!MaybeBindToTemp && CreatedObject && shouldDestroyTemporary(Entity)) {
John Wiegley429bb272011-04-08 18:41:53 +00005332 QualType T = CurInit.get()->getType();
Douglas Gregor4154e0b2010-04-24 23:45:46 +00005333 if (const RecordType *Record = T->getAs<RecordType>()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005334 CXXDestructorDecl *Destructor
Douglas Gregordb89f282010-07-01 22:47:18 +00005335 = S.LookupDestructor(cast<CXXRecordDecl>(Record->getDecl()));
John Wiegley429bb272011-04-08 18:41:53 +00005336 S.CheckDestructorAccess(CurInit.get()->getLocStart(), Destructor,
Douglas Gregor4154e0b2010-04-24 23:45:46 +00005337 S.PDiag(diag::err_access_dtor_temp) << T);
Eli Friedman5f2987c2012-02-02 03:46:19 +00005338 S.MarkFunctionReferenced(CurInit.get()->getLocStart(), Destructor);
Richard Smith82f145d2013-05-04 06:44:46 +00005339 if (S.DiagnoseUseOfDecl(Destructor, CurInit.get()->getLocStart()))
5340 return ExprError();
Douglas Gregor4154e0b2010-04-24 23:45:46 +00005341 }
5342 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005343
John McCallf871d0c2010-08-07 06:22:56 +00005344 CurInit = S.Owned(ImplicitCastExpr::Create(S.Context,
John Wiegley429bb272011-04-08 18:41:53 +00005345 CurInit.get()->getType(),
5346 CastKind, CurInit.get(), 0,
Eli Friedman104be6f2011-09-27 01:11:35 +00005347 CurInit.get()->getValueKind()));
Abramo Bagnara960809e2011-11-16 22:46:05 +00005348 if (MaybeBindToTemp)
5349 CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>());
Douglas Gregor2f599792010-04-02 18:24:57 +00005350 if (RequiresCopy)
Douglas Gregor523d46a2010-04-18 07:40:54 +00005351 CurInit = CopyObject(S, Entity.getType().getNonReferenceType(), Entity,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005352 CurInit, /*IsExtraneousCopy=*/false);
Douglas Gregor20093b42009-12-09 23:02:17 +00005353 break;
5354 }
Sebastian Redl906082e2010-07-20 04:20:21 +00005355
Douglas Gregor20093b42009-12-09 23:02:17 +00005356 case SK_QualificationConversionLValue:
Sebastian Redl906082e2010-07-20 04:20:21 +00005357 case SK_QualificationConversionXValue:
5358 case SK_QualificationConversionRValue: {
Douglas Gregor20093b42009-12-09 23:02:17 +00005359 // Perform a qualification conversion; these can never go wrong.
John McCall5baba9d2010-08-25 10:28:54 +00005360 ExprValueKind VK =
Sebastian Redl906082e2010-07-20 04:20:21 +00005361 Step->Kind == SK_QualificationConversionLValue ?
John McCall5baba9d2010-08-25 10:28:54 +00005362 VK_LValue :
Sebastian Redl906082e2010-07-20 04:20:21 +00005363 (Step->Kind == SK_QualificationConversionXValue ?
John McCall5baba9d2010-08-25 10:28:54 +00005364 VK_XValue :
5365 VK_RValue);
John Wiegley429bb272011-04-08 18:41:53 +00005366 CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type, CK_NoOp, VK);
Douglas Gregor20093b42009-12-09 23:02:17 +00005367 break;
Sebastian Redl906082e2010-07-20 04:20:21 +00005368 }
5369
Jordan Rose1fd1e282013-04-11 00:58:58 +00005370 case SK_LValueToRValue: {
5371 assert(CurInit.get()->isGLValue() && "cannot load from a prvalue");
5372 CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, Step->Type,
5373 CK_LValueToRValue,
5374 CurInit.take(),
5375 /*BasePath=*/0,
5376 VK_RValue));
5377 break;
5378 }
5379
Douglas Gregorf0e43e52010-04-16 19:30:02 +00005380 case SK_ConversionSequence: {
John McCallf85e1932011-06-15 23:02:42 +00005381 Sema::CheckedConversionKind CCK
5382 = Kind.isCStyleCast()? Sema::CCK_CStyleCast
5383 : Kind.isFunctionalCast()? Sema::CCK_FunctionalCast
Richard Smithc8d7f582011-11-29 22:48:16 +00005384 : Kind.isExplicitCast()? Sema::CCK_OtherCast
John McCallf85e1932011-06-15 23:02:42 +00005385 : Sema::CCK_ImplicitConversion;
John Wiegley429bb272011-04-08 18:41:53 +00005386 ExprResult CurInitExprRes =
5387 S.PerformImplicitConversion(CurInit.get(), Step->Type, *Step->ICS,
John McCallf85e1932011-06-15 23:02:42 +00005388 getAssignmentAction(Entity), CCK);
John Wiegley429bb272011-04-08 18:41:53 +00005389 if (CurInitExprRes.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00005390 return ExprError();
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005391 CurInit = CurInitExprRes;
Douglas Gregor20093b42009-12-09 23:02:17 +00005392 break;
Douglas Gregorf0e43e52010-04-16 19:30:02 +00005393 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005394
Douglas Gregord87b61f2009-12-10 17:56:55 +00005395 case SK_ListInitialization: {
John Wiegley429bb272011-04-08 18:41:53 +00005396 InitListExpr *InitList = cast<InitListExpr>(CurInit.get());
Sebastian Redl13dc8f92011-11-27 16:50:07 +00005397 // Hack: We must pass *ResultType if available in order to set the type
5398 // of arrays, e.g. in 'int ar[] = {1, 2, 3};'.
5399 // But in 'const X &x = {1, 2, 3};' we're supposed to initialize a
5400 // temporary, not a reference, so we should pass Ty.
5401 // Worst case: 'const int (&arref)[] = {1, 2, 3};'.
5402 // Since this step is never used for a reference directly, we explicitly
5403 // unwrap references here and rewrap them afterwards.
5404 // We also need to create a InitializeTemporary entity for this.
5405 QualType Ty = ResultType ? ResultType->getNonReferenceType() : Step->Type;
Sebastian Redlcbf82092012-03-07 16:10:45 +00005406 bool IsTemporary = Entity.getType()->isReferenceType();
Sebastian Redl13dc8f92011-11-27 16:50:07 +00005407 InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(Ty);
Richard Smith802e2262013-02-02 01:13:06 +00005408 InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity;
5409 InitListChecker PerformInitList(S, InitEntity,
Sebastian Redl13dc8f92011-11-27 16:50:07 +00005410 InitList, Ty, /*VerifyOnly=*/false,
Sebastian Redl168319c2012-02-12 16:37:24 +00005411 Kind.getKind() != InitializationKind::IK_DirectList ||
Richard Smith80ad52f2013-01-02 11:42:31 +00005412 !S.getLangOpts().CPlusPlus11);
Sebastian Redl14b0c192011-09-24 17:48:00 +00005413 if (PerformInitList.HadError())
John McCallf312b1e2010-08-26 23:41:50 +00005414 return ExprError();
Douglas Gregord87b61f2009-12-10 17:56:55 +00005415
Sebastian Redl13dc8f92011-11-27 16:50:07 +00005416 if (ResultType) {
5417 if ((*ResultType)->isRValueReferenceType())
5418 Ty = S.Context.getRValueReferenceType(Ty);
5419 else if ((*ResultType)->isLValueReferenceType())
5420 Ty = S.Context.getLValueReferenceType(Ty,
5421 (*ResultType)->getAs<LValueReferenceType>()->isSpelledAsLValue());
5422 *ResultType = Ty;
5423 }
5424
5425 InitListExpr *StructuredInitList =
5426 PerformInitList.getFullyStructuredList();
Douglas Gregord87b61f2009-12-10 17:56:55 +00005427 CurInit.release();
Richard Smith802e2262013-02-02 01:13:06 +00005428 CurInit = shouldBindAsTemporary(InitEntity)
5429 ? S.MaybeBindToTemporary(StructuredInitList)
5430 : S.Owned(StructuredInitList);
Douglas Gregord87b61f2009-12-10 17:56:55 +00005431 break;
5432 }
Douglas Gregor51c56d62009-12-14 20:49:26 +00005433
Sebastian Redl10f04a62011-12-22 14:44:04 +00005434 case SK_ListConstructorCall: {
Sebastian Redl168319c2012-02-12 16:37:24 +00005435 // When an initializer list is passed for a parameter of type "reference
5436 // to object", we don't get an EK_Temporary entity, but instead an
5437 // EK_Parameter entity with reference type.
Sebastian Redlbac5cf42012-02-19 12:27:56 +00005438 // FIXME: This is a hack. What we really should do is create a user
5439 // conversion step for this case, but this makes it considerably more
5440 // complicated. For now, this will do.
Sebastian Redl168319c2012-02-12 16:37:24 +00005441 InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(
5442 Entity.getType().getNonReferenceType());
5443 bool UseTemporary = Entity.getType()->isReferenceType();
Richard Smithf4bb8d02012-07-05 08:39:21 +00005444 assert(Args.size() == 1 && "expected a single argument for list init");
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005445 InitListExpr *InitList = cast<InitListExpr>(Args[0]);
Richard Smith03544fc2012-04-19 06:58:00 +00005446 S.Diag(InitList->getExprLoc(), diag::warn_cxx98_compat_ctor_list_init)
5447 << InitList->getSourceRange();
Sebastian Redl10f04a62011-12-22 14:44:04 +00005448 MultiExprArg Arg(InitList->getInits(), InitList->getNumInits());
Sebastian Redl168319c2012-02-12 16:37:24 +00005449 CurInit = PerformConstructorInitialization(S, UseTemporary ? TempEntity :
5450 Entity,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005451 Kind, Arg, *Step,
Richard Smithc83c2302012-12-19 01:39:02 +00005452 ConstructorInitRequiresZeroInit,
5453 /*IsListInitialization*/ true);
Sebastian Redl10f04a62011-12-22 14:44:04 +00005454 break;
5455 }
Sebastian Redl8713d4e2011-09-24 17:47:52 +00005456
Sebastian Redl13dc8f92011-11-27 16:50:07 +00005457 case SK_UnwrapInitList:
5458 CurInit = S.Owned(cast<InitListExpr>(CurInit.take())->getInit(0));
5459 break;
5460
5461 case SK_RewrapInitList: {
5462 Expr *E = CurInit.take();
5463 InitListExpr *Syntactic = Step->WrappingSyntacticList;
5464 InitListExpr *ILE = new (S.Context) InitListExpr(S.Context,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00005465 Syntactic->getLBraceLoc(), E, Syntactic->getRBraceLoc());
Sebastian Redl13dc8f92011-11-27 16:50:07 +00005466 ILE->setSyntacticForm(Syntactic);
5467 ILE->setType(E->getType());
5468 ILE->setValueKind(E->getValueKind());
5469 CurInit = S.Owned(ILE);
5470 break;
5471 }
5472
Sebastian Redlbac5cf42012-02-19 12:27:56 +00005473 case SK_ConstructorInitialization: {
5474 // When an initializer list is passed for a parameter of type "reference
5475 // to object", we don't get an EK_Temporary entity, but instead an
5476 // EK_Parameter entity with reference type.
5477 // FIXME: This is a hack. What we really should do is create a user
5478 // conversion step for this case, but this makes it considerably more
5479 // complicated. For now, this will do.
5480 InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(
5481 Entity.getType().getNonReferenceType());
5482 bool UseTemporary = Entity.getType()->isReferenceType();
5483 CurInit = PerformConstructorInitialization(S, UseTemporary ? TempEntity
5484 : Entity,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005485 Kind, Args, *Step,
Richard Smithc83c2302012-12-19 01:39:02 +00005486 ConstructorInitRequiresZeroInit,
5487 /*IsListInitialization*/ false);
Douglas Gregor51c56d62009-12-14 20:49:26 +00005488 break;
Sebastian Redlbac5cf42012-02-19 12:27:56 +00005489 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005490
Douglas Gregor71d17402009-12-15 00:01:57 +00005491 case SK_ZeroInitialization: {
Douglas Gregor16006c92009-12-16 18:50:27 +00005492 step_iterator NextStep = Step;
5493 ++NextStep;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005494 if (NextStep != StepEnd &&
Richard Smithf4bb8d02012-07-05 08:39:21 +00005495 (NextStep->Kind == SK_ConstructorInitialization ||
5496 NextStep->Kind == SK_ListConstructorCall)) {
Douglas Gregor16006c92009-12-16 18:50:27 +00005497 // The need for zero-initialization is recorded directly into
5498 // the call to the object's constructor within the next step.
5499 ConstructorInitRequiresZeroInit = true;
5500 } else if (Kind.getKind() == InitializationKind::IK_Value &&
David Blaikie4e4d0842012-03-11 07:00:24 +00005501 S.getLangOpts().CPlusPlus &&
Douglas Gregor16006c92009-12-16 18:50:27 +00005502 !Kind.isImplicitValueInit()) {
Douglas Gregorab6677e2010-09-08 00:15:04 +00005503 TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo();
5504 if (!TSInfo)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005505 TSInfo = S.Context.getTrivialTypeSourceInfo(Step->Type,
Douglas Gregorab6677e2010-09-08 00:15:04 +00005506 Kind.getRange().getBegin());
5507
5508 CurInit = S.Owned(new (S.Context) CXXScalarValueInitExpr(
5509 TSInfo->getType().getNonLValueExprType(S.Context),
5510 TSInfo,
Douglas Gregor71d17402009-12-15 00:01:57 +00005511 Kind.getRange().getEnd()));
Douglas Gregor16006c92009-12-16 18:50:27 +00005512 } else {
Douglas Gregor71d17402009-12-15 00:01:57 +00005513 CurInit = S.Owned(new (S.Context) ImplicitValueInitExpr(Step->Type));
Douglas Gregor16006c92009-12-16 18:50:27 +00005514 }
Douglas Gregor71d17402009-12-15 00:01:57 +00005515 break;
5516 }
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005517
5518 case SK_CAssignment: {
John Wiegley429bb272011-04-08 18:41:53 +00005519 QualType SourceType = CurInit.get()->getType();
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005520 ExprResult Result = CurInit;
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005521 Sema::AssignConvertType ConvTy =
John Wiegley429bb272011-04-08 18:41:53 +00005522 S.CheckSingleAssignmentConstraints(Step->Type, Result);
5523 if (Result.isInvalid())
5524 return ExprError();
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005525 CurInit = Result;
Douglas Gregoraa037312009-12-22 07:24:36 +00005526
5527 // If this is a call, allow conversion to a transparent union.
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005528 ExprResult CurInitExprRes = CurInit;
Douglas Gregoraa037312009-12-22 07:24:36 +00005529 if (ConvTy != Sema::Compatible &&
5530 Entity.getKind() == InitializedEntity::EK_Parameter &&
John Wiegley429bb272011-04-08 18:41:53 +00005531 S.CheckTransparentUnionArgumentConstraints(Step->Type, CurInitExprRes)
Douglas Gregoraa037312009-12-22 07:24:36 +00005532 == Sema::Compatible)
5533 ConvTy = Sema::Compatible;
John Wiegley429bb272011-04-08 18:41:53 +00005534 if (CurInitExprRes.isInvalid())
5535 return ExprError();
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005536 CurInit = CurInitExprRes;
Douglas Gregoraa037312009-12-22 07:24:36 +00005537
Douglas Gregora41a8c52010-04-22 00:20:18 +00005538 bool Complained;
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005539 if (S.DiagnoseAssignmentResult(ConvTy, Kind.getLocation(),
5540 Step->Type, SourceType,
John Wiegley429bb272011-04-08 18:41:53 +00005541 CurInit.get(),
Douglas Gregora41a8c52010-04-22 00:20:18 +00005542 getAssignmentAction(Entity),
5543 &Complained)) {
5544 PrintInitLocationNote(S, Entity);
John McCallf312b1e2010-08-26 23:41:50 +00005545 return ExprError();
Douglas Gregora41a8c52010-04-22 00:20:18 +00005546 } else if (Complained)
5547 PrintInitLocationNote(S, Entity);
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005548 break;
5549 }
Eli Friedmancfdc81a2009-12-19 08:11:05 +00005550
5551 case SK_StringInit: {
5552 QualType Ty = Step->Type;
John Wiegley429bb272011-04-08 18:41:53 +00005553 CheckStringInit(CurInit.get(), ResultType ? *ResultType : Ty,
John McCallfef8b342011-02-21 07:57:55 +00005554 S.Context.getAsArrayType(Ty), S);
Eli Friedmancfdc81a2009-12-19 08:11:05 +00005555 break;
5556 }
Douglas Gregor569c3162010-08-07 11:51:51 +00005557
5558 case SK_ObjCObjectConversion:
John Wiegley429bb272011-04-08 18:41:53 +00005559 CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type,
John McCall2de56d12010-08-25 11:45:40 +00005560 CK_ObjCObjectLValueCast,
Eli Friedmanc1c0dfb2011-09-27 21:58:52 +00005561 CurInit.get()->getValueKind());
Douglas Gregor569c3162010-08-07 11:51:51 +00005562 break;
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00005563
5564 case SK_ArrayInit:
5565 // Okay: we checked everything before creating this step. Note that
5566 // this is a GNU extension.
5567 S.Diag(Kind.getLocation(), diag::ext_array_init_copy)
John Wiegley429bb272011-04-08 18:41:53 +00005568 << Step->Type << CurInit.get()->getType()
5569 << CurInit.get()->getSourceRange();
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00005570
5571 // If the destination type is an incomplete array type, update the
5572 // type accordingly.
5573 if (ResultType) {
5574 if (const IncompleteArrayType *IncompleteDest
5575 = S.Context.getAsIncompleteArrayType(Step->Type)) {
5576 if (const ConstantArrayType *ConstantSource
John Wiegley429bb272011-04-08 18:41:53 +00005577 = S.Context.getAsConstantArrayType(CurInit.get()->getType())) {
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00005578 *ResultType = S.Context.getConstantArrayType(
5579 IncompleteDest->getElementType(),
5580 ConstantSource->getSize(),
5581 ArrayType::Normal, 0);
5582 }
5583 }
5584 }
John McCallf85e1932011-06-15 23:02:42 +00005585 break;
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00005586
Richard Smith0f163e92012-02-15 22:38:09 +00005587 case SK_ParenthesizedArrayInit:
5588 // Okay: we checked everything before creating this step. Note that
5589 // this is a GNU extension.
5590 S.Diag(Kind.getLocation(), diag::ext_array_init_parens)
5591 << CurInit.get()->getSourceRange();
5592 break;
5593
John McCallf85e1932011-06-15 23:02:42 +00005594 case SK_PassByIndirectCopyRestore:
5595 case SK_PassByIndirectRestore:
5596 checkIndirectCopyRestoreSource(S, CurInit.get());
5597 CurInit = S.Owned(new (S.Context)
5598 ObjCIndirectCopyRestoreExpr(CurInit.take(), Step->Type,
5599 Step->Kind == SK_PassByIndirectCopyRestore));
5600 break;
5601
5602 case SK_ProduceObjCObject:
5603 CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, Step->Type,
John McCall33e56f32011-09-10 06:18:15 +00005604 CK_ARCProduceObject,
John McCallf85e1932011-06-15 23:02:42 +00005605 CurInit.take(), 0, VK_RValue));
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00005606 break;
Sebastian Redl2b916b82012-01-17 22:49:42 +00005607
5608 case SK_StdInitializerList: {
5609 QualType Dest = Step->Type;
5610 QualType E;
Douglas Gregor6c5aaed2013-03-25 23:47:01 +00005611 bool Success = S.isStdInitializerList(Dest.getNonReferenceType(), &E);
Sebastian Redl2b916b82012-01-17 22:49:42 +00005612 (void)Success;
5613 assert(Success && "Destination type changed?");
Sebastian Redl28357452012-03-05 19:35:43 +00005614
5615 // If the element type has a destructor, check it.
5616 if (CXXRecordDecl *RD = E->getAsCXXRecordDecl()) {
5617 if (!RD->hasIrrelevantDestructor()) {
5618 if (CXXDestructorDecl *Destructor = S.LookupDestructor(RD)) {
5619 S.MarkFunctionReferenced(Kind.getLocation(), Destructor);
5620 S.CheckDestructorAccess(Kind.getLocation(), Destructor,
5621 S.PDiag(diag::err_access_dtor_temp) << E);
Richard Smith82f145d2013-05-04 06:44:46 +00005622 if (S.DiagnoseUseOfDecl(Destructor, Kind.getLocation()))
5623 return ExprError();
Sebastian Redl28357452012-03-05 19:35:43 +00005624 }
5625 }
5626 }
5627
Sebastian Redl2b916b82012-01-17 22:49:42 +00005628 InitListExpr *ILE = cast<InitListExpr>(CurInit.take());
Richard Smith03544fc2012-04-19 06:58:00 +00005629 S.Diag(ILE->getExprLoc(), diag::warn_cxx98_compat_initializer_list_init)
5630 << ILE->getSourceRange();
Sebastian Redl2b916b82012-01-17 22:49:42 +00005631 unsigned NumInits = ILE->getNumInits();
5632 SmallVector<Expr*, 16> Converted(NumInits);
5633 InitializedEntity HiddenArray = InitializedEntity::InitializeTemporary(
5634 S.Context.getConstantArrayType(E,
5635 llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()),
5636 NumInits),
5637 ArrayType::Normal, 0));
5638 InitializedEntity Element =InitializedEntity::InitializeElement(S.Context,
5639 0, HiddenArray);
5640 for (unsigned i = 0; i < NumInits; ++i) {
5641 Element.setElementIndex(i);
5642 ExprResult Init = S.Owned(ILE->getInit(i));
Richard Smitha4dc51b2013-02-05 05:52:24 +00005643 ExprResult Res = S.PerformCopyInitialization(
5644 Element, Init.get()->getExprLoc(), Init,
5645 /*TopLevelOfInitList=*/ true);
Sebastian Redl2b916b82012-01-17 22:49:42 +00005646 assert(!Res.isInvalid() && "Result changed since try phase.");
5647 Converted[i] = Res.take();
5648 }
5649 InitListExpr *Semantic = new (S.Context)
5650 InitListExpr(S.Context, ILE->getLBraceLoc(),
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00005651 Converted, ILE->getRBraceLoc());
Sebastian Redl2b916b82012-01-17 22:49:42 +00005652 Semantic->setSyntacticForm(ILE);
5653 Semantic->setType(Dest);
Sebastian Redl32cf1f22012-02-17 08:42:25 +00005654 Semantic->setInitializesStdInitializerList();
Sebastian Redl2b916b82012-01-17 22:49:42 +00005655 CurInit = S.Owned(Semantic);
5656 break;
5657 }
Guy Benyei21f18c42013-02-07 10:55:47 +00005658 case SK_OCLSamplerInit: {
5659 assert(Step->Type->isSamplerT() &&
5660 "Sampler initialization on non sampler type.");
5661
5662 QualType SourceType = CurInit.get()->getType();
5663 InitializedEntity::EntityKind EntityKind = Entity.getKind();
5664
5665 if (EntityKind == InitializedEntity::EK_Parameter) {
5666 if (!SourceType->isSamplerT())
5667 S.Diag(Kind.getLocation(), diag::err_sampler_argument_required)
5668 << SourceType;
5669 } else if (EntityKind != InitializedEntity::EK_Variable) {
5670 llvm_unreachable("Invalid EntityKind!");
5671 }
5672
5673 break;
5674 }
Guy Benyeie6b9d802013-01-20 12:31:11 +00005675 case SK_OCLZeroEvent: {
5676 assert(Step->Type->isEventT() &&
5677 "Event initialization on non event type.");
5678
5679 CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type,
5680 CK_ZeroToOCLEvent,
5681 CurInit.get()->getValueKind());
5682 break;
5683 }
Douglas Gregor20093b42009-12-09 23:02:17 +00005684 }
5685 }
John McCall15d7d122010-11-11 03:21:53 +00005686
5687 // Diagnose non-fatal problems with the completed initialization.
5688 if (Entity.getKind() == InitializedEntity::EK_Member &&
5689 cast<FieldDecl>(Entity.getDecl())->isBitField())
5690 S.CheckBitFieldInitialization(Kind.getLocation(),
5691 cast<FieldDecl>(Entity.getDecl()),
5692 CurInit.get());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005693
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00005694 return CurInit;
Douglas Gregor20093b42009-12-09 23:02:17 +00005695}
5696
Richard Smithd5bc8672012-12-08 02:01:17 +00005697/// Somewhere within T there is an uninitialized reference subobject.
5698/// Dig it out and diagnose it.
Benjamin Kramera574c892013-02-15 12:30:38 +00005699static bool DiagnoseUninitializedReference(Sema &S, SourceLocation Loc,
5700 QualType T) {
Richard Smithd5bc8672012-12-08 02:01:17 +00005701 if (T->isReferenceType()) {
5702 S.Diag(Loc, diag::err_reference_without_init)
5703 << T.getNonReferenceType();
5704 return true;
5705 }
5706
5707 CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
5708 if (!RD || !RD->hasUninitializedReferenceMember())
5709 return false;
5710
5711 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
5712 FE = RD->field_end(); FI != FE; ++FI) {
5713 if (FI->isUnnamedBitfield())
5714 continue;
5715
5716 if (DiagnoseUninitializedReference(S, FI->getLocation(), FI->getType())) {
5717 S.Diag(Loc, diag::note_value_initialization_here) << RD;
5718 return true;
5719 }
5720 }
5721
5722 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
5723 BE = RD->bases_end();
5724 BI != BE; ++BI) {
5725 if (DiagnoseUninitializedReference(S, BI->getLocStart(), BI->getType())) {
5726 S.Diag(Loc, diag::note_value_initialization_here) << RD;
5727 return true;
5728 }
5729 }
5730
5731 return false;
5732}
5733
5734
Douglas Gregor20093b42009-12-09 23:02:17 +00005735//===----------------------------------------------------------------------===//
5736// Diagnose initialization failures
5737//===----------------------------------------------------------------------===//
John McCall7cca8212013-03-19 07:04:25 +00005738
5739/// Emit notes associated with an initialization that failed due to a
5740/// "simple" conversion failure.
5741static void emitBadConversionNotes(Sema &S, const InitializedEntity &entity,
5742 Expr *op) {
5743 QualType destType = entity.getType();
5744 if (destType.getNonReferenceType()->isObjCObjectPointerType() &&
5745 op->getType()->isObjCObjectPointerType()) {
5746
5747 // Emit a possible note about the conversion failing because the
5748 // operand is a message send with a related result type.
5749 S.EmitRelatedResultTypeNote(op);
5750
5751 // Emit a possible note about a return failing because we're
5752 // expecting a related result type.
5753 if (entity.getKind() == InitializedEntity::EK_Result)
5754 S.EmitRelatedResultTypeNoteForReturn(destType);
5755 }
5756}
5757
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005758bool InitializationSequence::Diagnose(Sema &S,
Douglas Gregor20093b42009-12-09 23:02:17 +00005759 const InitializedEntity &Entity,
5760 const InitializationKind &Kind,
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00005761 ArrayRef<Expr *> Args) {
Sebastian Redld695d6b2011-06-05 13:59:05 +00005762 if (!Failed())
Douglas Gregor20093b42009-12-09 23:02:17 +00005763 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005764
Douglas Gregord6542d82009-12-22 15:35:07 +00005765 QualType DestType = Entity.getType();
Douglas Gregor20093b42009-12-09 23:02:17 +00005766 switch (Failure) {
5767 case FK_TooManyInitsForReference:
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005768 // FIXME: Customize for the initialized entity?
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00005769 if (Args.empty()) {
Richard Smithd5bc8672012-12-08 02:01:17 +00005770 // Dig out the reference subobject which is uninitialized and diagnose it.
5771 // If this is value-initialization, this could be nested some way within
5772 // the target type.
5773 assert(Kind.getKind() == InitializationKind::IK_Value ||
5774 DestType->isReferenceType());
5775 bool Diagnosed =
5776 DiagnoseUninitializedReference(S, Kind.getLocation(), DestType);
5777 assert(Diagnosed && "couldn't find uninitialized reference to diagnose");
5778 (void)Diagnosed;
5779 } else // FIXME: diagnostic below could be better!
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005780 S.Diag(Kind.getLocation(), diag::err_reference_has_multiple_inits)
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00005781 << SourceRange(Args.front()->getLocStart(), Args.back()->getLocEnd());
Douglas Gregor20093b42009-12-09 23:02:17 +00005782 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005783
Douglas Gregor20093b42009-12-09 23:02:17 +00005784 case FK_ArrayNeedsInitList:
5785 case FK_ArrayNeedsInitListOrStringLiteral:
5786 S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list)
5787 << (Failure == FK_ArrayNeedsInitListOrStringLiteral);
5788 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005789
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00005790 case FK_ArrayTypeMismatch:
5791 case FK_NonConstantArrayInit:
5792 S.Diag(Kind.getLocation(),
5793 (Failure == FK_ArrayTypeMismatch
5794 ? diag::err_array_init_different_type
5795 : diag::err_array_init_non_constant_array))
5796 << DestType.getNonReferenceType()
5797 << Args[0]->getType()
5798 << Args[0]->getSourceRange();
5799 break;
5800
John McCall73076432012-01-05 00:13:19 +00005801 case FK_VariableLengthArrayHasInitializer:
5802 S.Diag(Kind.getLocation(), diag::err_variable_object_no_init)
5803 << Args[0]->getSourceRange();
5804 break;
5805
John McCall6bb80172010-03-30 21:47:33 +00005806 case FK_AddressOfOverloadFailed: {
5807 DeclAccessPair Found;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005808 S.ResolveAddressOfOverloadedFunction(Args[0],
Douglas Gregor20093b42009-12-09 23:02:17 +00005809 DestType.getNonReferenceType(),
John McCall6bb80172010-03-30 21:47:33 +00005810 true,
5811 Found);
Douglas Gregor20093b42009-12-09 23:02:17 +00005812 break;
John McCall6bb80172010-03-30 21:47:33 +00005813 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005814
Douglas Gregor20093b42009-12-09 23:02:17 +00005815 case FK_ReferenceInitOverloadFailed:
Douglas Gregor4a520a22009-12-14 17:27:33 +00005816 case FK_UserConversionOverloadFailed:
Douglas Gregor20093b42009-12-09 23:02:17 +00005817 switch (FailedOverloadResult) {
5818 case OR_Ambiguous:
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005819 if (Failure == FK_UserConversionOverloadFailed)
5820 S.Diag(Kind.getLocation(), diag::err_typecheck_ambiguous_condition)
5821 << Args[0]->getType() << DestType
5822 << Args[0]->getSourceRange();
5823 else
5824 S.Diag(Kind.getLocation(), diag::err_ref_init_ambiguous)
5825 << DestType << Args[0]->getType()
5826 << Args[0]->getSourceRange();
5827
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00005828 FailedCandidateSet.NoteCandidates(S, OCD_ViableCandidates, Args);
Douglas Gregor20093b42009-12-09 23:02:17 +00005829 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005830
Douglas Gregor20093b42009-12-09 23:02:17 +00005831 case OR_No_Viable_Function:
5832 S.Diag(Kind.getLocation(), diag::err_typecheck_nonviable_condition)
5833 << Args[0]->getType() << DestType.getNonReferenceType()
5834 << Args[0]->getSourceRange();
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00005835 FailedCandidateSet.NoteCandidates(S, OCD_AllCandidates, Args);
Douglas Gregor20093b42009-12-09 23:02:17 +00005836 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005837
Douglas Gregor20093b42009-12-09 23:02:17 +00005838 case OR_Deleted: {
5839 S.Diag(Kind.getLocation(), diag::err_typecheck_deleted_function)
5840 << Args[0]->getType() << DestType.getNonReferenceType()
5841 << Args[0]->getSourceRange();
5842 OverloadCandidateSet::iterator Best;
John McCall120d63c2010-08-24 20:38:10 +00005843 OverloadingResult Ovl
Douglas Gregor8fcc5162010-09-12 08:07:23 +00005844 = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best,
5845 true);
Douglas Gregor20093b42009-12-09 23:02:17 +00005846 if (Ovl == OR_Deleted) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00005847 S.NoteDeletedFunction(Best->Function);
Douglas Gregor20093b42009-12-09 23:02:17 +00005848 } else {
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00005849 llvm_unreachable("Inconsistent overload resolution?");
Douglas Gregor20093b42009-12-09 23:02:17 +00005850 }
5851 break;
5852 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005853
Douglas Gregor20093b42009-12-09 23:02:17 +00005854 case OR_Success:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00005855 llvm_unreachable("Conversion did not fail!");
Douglas Gregor20093b42009-12-09 23:02:17 +00005856 }
5857 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005858
Douglas Gregor20093b42009-12-09 23:02:17 +00005859 case FK_NonConstLValueReferenceBindingToTemporary:
Sebastian Redl13dc8f92011-11-27 16:50:07 +00005860 if (isa<InitListExpr>(Args[0])) {
5861 S.Diag(Kind.getLocation(),
5862 diag::err_lvalue_reference_bind_to_initlist)
5863 << DestType.getNonReferenceType().isVolatileQualified()
5864 << DestType.getNonReferenceType()
5865 << Args[0]->getSourceRange();
5866 break;
5867 }
5868 // Intentional fallthrough
5869
Douglas Gregor20093b42009-12-09 23:02:17 +00005870 case FK_NonConstLValueReferenceBindingToUnrelated:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005871 S.Diag(Kind.getLocation(),
Douglas Gregor20093b42009-12-09 23:02:17 +00005872 Failure == FK_NonConstLValueReferenceBindingToTemporary
5873 ? diag::err_lvalue_reference_bind_to_temporary
5874 : diag::err_lvalue_reference_bind_to_unrelated)
Douglas Gregoref06e242010-01-29 19:39:15 +00005875 << DestType.getNonReferenceType().isVolatileQualified()
Douglas Gregor20093b42009-12-09 23:02:17 +00005876 << DestType.getNonReferenceType()
5877 << Args[0]->getType()
5878 << Args[0]->getSourceRange();
5879 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005880
Douglas Gregor20093b42009-12-09 23:02:17 +00005881 case FK_RValueReferenceBindingToLValue:
5882 S.Diag(Kind.getLocation(), diag::err_lvalue_to_rvalue_ref)
Douglas Gregorfb5d7ef2011-01-21 01:04:33 +00005883 << DestType.getNonReferenceType() << Args[0]->getType()
Douglas Gregor20093b42009-12-09 23:02:17 +00005884 << Args[0]->getSourceRange();
5885 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005886
Douglas Gregor20093b42009-12-09 23:02:17 +00005887 case FK_ReferenceInitDropsQualifiers:
5888 S.Diag(Kind.getLocation(), diag::err_reference_bind_drops_quals)
5889 << DestType.getNonReferenceType()
5890 << Args[0]->getType()
5891 << Args[0]->getSourceRange();
5892 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005893
Douglas Gregor20093b42009-12-09 23:02:17 +00005894 case FK_ReferenceInitFailed:
5895 S.Diag(Kind.getLocation(), diag::err_reference_bind_failed)
5896 << DestType.getNonReferenceType()
John McCall7eb0a9e2010-11-24 05:12:34 +00005897 << Args[0]->isLValue()
Douglas Gregor20093b42009-12-09 23:02:17 +00005898 << Args[0]->getType()
5899 << Args[0]->getSourceRange();
John McCall7cca8212013-03-19 07:04:25 +00005900 emitBadConversionNotes(S, Entity, Args[0]);
Douglas Gregor20093b42009-12-09 23:02:17 +00005901 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005902
Douglas Gregor1be8eec2011-02-19 21:32:49 +00005903 case FK_ConversionFailed: {
5904 QualType FromType = Args[0]->getType();
Richard Trieu6efd4c52011-11-23 22:32:32 +00005905 PartialDiagnostic PDiag = S.PDiag(diag::err_init_conversion_failed)
Douglas Gregor18ef5e22009-12-18 05:02:21 +00005906 << (int)Entity.getKind()
Douglas Gregor20093b42009-12-09 23:02:17 +00005907 << DestType
John McCall7eb0a9e2010-11-24 05:12:34 +00005908 << Args[0]->isLValue()
Douglas Gregor1be8eec2011-02-19 21:32:49 +00005909 << FromType
Douglas Gregor20093b42009-12-09 23:02:17 +00005910 << Args[0]->getSourceRange();
Richard Trieu6efd4c52011-11-23 22:32:32 +00005911 S.HandleFunctionTypeMismatch(PDiag, FromType, DestType);
5912 S.Diag(Kind.getLocation(), PDiag);
John McCall7cca8212013-03-19 07:04:25 +00005913 emitBadConversionNotes(S, Entity, Args[0]);
Douglas Gregord87b61f2009-12-10 17:56:55 +00005914 break;
Douglas Gregor1be8eec2011-02-19 21:32:49 +00005915 }
John Wiegley429bb272011-04-08 18:41:53 +00005916
5917 case FK_ConversionFromPropertyFailed:
5918 // No-op. This error has already been reported.
5919 break;
5920
Douglas Gregord87b61f2009-12-10 17:56:55 +00005921 case FK_TooManyInitsForScalar: {
Douglas Gregor99a2e602009-12-16 01:38:02 +00005922 SourceRange R;
5923
5924 if (InitListExpr *InitList = dyn_cast<InitListExpr>(Args[0]))
Douglas Gregor19311e72010-09-08 21:40:08 +00005925 R = SourceRange(InitList->getInit(0)->getLocEnd(),
Douglas Gregor99a2e602009-12-16 01:38:02 +00005926 InitList->getLocEnd());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005927 else
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00005928 R = SourceRange(Args.front()->getLocEnd(), Args.back()->getLocEnd());
Douglas Gregord87b61f2009-12-10 17:56:55 +00005929
Douglas Gregor19311e72010-09-08 21:40:08 +00005930 R.setBegin(S.PP.getLocForEndOfToken(R.getBegin()));
5931 if (Kind.isCStyleOrFunctionalCast())
5932 S.Diag(Kind.getLocation(), diag::err_builtin_func_cast_more_than_one_arg)
5933 << R;
5934 else
5935 S.Diag(Kind.getLocation(), diag::err_excess_initializers)
5936 << /*scalar=*/2 << R;
Douglas Gregord87b61f2009-12-10 17:56:55 +00005937 break;
5938 }
5939
5940 case FK_ReferenceBindingToInitList:
5941 S.Diag(Kind.getLocation(), diag::err_reference_bind_init_list)
5942 << DestType.getNonReferenceType() << Args[0]->getSourceRange();
5943 break;
5944
5945 case FK_InitListBadDestinationType:
5946 S.Diag(Kind.getLocation(), diag::err_init_list_bad_dest_type)
5947 << (DestType->isRecordType()) << DestType << Args[0]->getSourceRange();
5948 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005949
Sebastian Redlcf15cef2011-12-22 18:58:38 +00005950 case FK_ListConstructorOverloadFailed:
Douglas Gregor51c56d62009-12-14 20:49:26 +00005951 case FK_ConstructorOverloadFailed: {
5952 SourceRange ArgsRange;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00005953 if (Args.size())
5954 ArgsRange = SourceRange(Args.front()->getLocStart(),
5955 Args.back()->getLocEnd());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005956
Sebastian Redlcf15cef2011-12-22 18:58:38 +00005957 if (Failure == FK_ListConstructorOverloadFailed) {
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00005958 assert(Args.size() == 1 && "List construction from other than 1 argument.");
Sebastian Redlcf15cef2011-12-22 18:58:38 +00005959 InitListExpr *InitList = cast<InitListExpr>(Args[0]);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00005960 Args = MultiExprArg(InitList->getInits(), InitList->getNumInits());
Sebastian Redlcf15cef2011-12-22 18:58:38 +00005961 }
5962
Douglas Gregor51c56d62009-12-14 20:49:26 +00005963 // FIXME: Using "DestType" for the entity we're printing is probably
5964 // bad.
5965 switch (FailedOverloadResult) {
5966 case OR_Ambiguous:
5967 S.Diag(Kind.getLocation(), diag::err_ovl_ambiguous_init)
5968 << DestType << ArgsRange;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00005969 FailedCandidateSet.NoteCandidates(S, OCD_ViableCandidates, Args);
Douglas Gregor51c56d62009-12-14 20:49:26 +00005970 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005971
Douglas Gregor51c56d62009-12-14 20:49:26 +00005972 case OR_No_Viable_Function:
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005973 if (Kind.getKind() == InitializationKind::IK_Default &&
5974 (Entity.getKind() == InitializedEntity::EK_Base ||
5975 Entity.getKind() == InitializedEntity::EK_Member) &&
5976 isa<CXXConstructorDecl>(S.CurContext)) {
5977 // This is implicit default initialization of a member or
5978 // base within a constructor. If no viable function was
5979 // found, notify the user that she needs to explicitly
5980 // initialize this base/member.
5981 CXXConstructorDecl *Constructor
5982 = cast<CXXConstructorDecl>(S.CurContext);
5983 if (Entity.getKind() == InitializedEntity::EK_Base) {
5984 S.Diag(Kind.getLocation(), diag::err_missing_default_ctor)
Richard Smith07b0fdc2013-03-18 21:12:30 +00005985 << (Constructor->getInheritedConstructor() ? 2 :
5986 Constructor->isImplicit() ? 1 : 0)
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005987 << S.Context.getTypeDeclType(Constructor->getParent())
5988 << /*base=*/0
5989 << Entity.getType();
5990
5991 RecordDecl *BaseDecl
5992 = Entity.getBaseSpecifier()->getType()->getAs<RecordType>()
5993 ->getDecl();
5994 S.Diag(BaseDecl->getLocation(), diag::note_previous_decl)
5995 << S.Context.getTagDeclType(BaseDecl);
5996 } else {
5997 S.Diag(Kind.getLocation(), diag::err_missing_default_ctor)
Richard Smith07b0fdc2013-03-18 21:12:30 +00005998 << (Constructor->getInheritedConstructor() ? 2 :
5999 Constructor->isImplicit() ? 1 : 0)
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00006000 << S.Context.getTypeDeclType(Constructor->getParent())
6001 << /*member=*/1
6002 << Entity.getName();
6003 S.Diag(Entity.getDecl()->getLocation(), diag::note_field_decl);
6004
6005 if (const RecordType *Record
6006 = Entity.getType()->getAs<RecordType>())
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006007 S.Diag(Record->getDecl()->getLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00006008 diag::note_previous_decl)
6009 << S.Context.getTagDeclType(Record->getDecl());
6010 }
6011 break;
6012 }
6013
Douglas Gregor51c56d62009-12-14 20:49:26 +00006014 S.Diag(Kind.getLocation(), diag::err_ovl_no_viable_function_in_init)
6015 << DestType << ArgsRange;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00006016 FailedCandidateSet.NoteCandidates(S, OCD_AllCandidates, Args);
Douglas Gregor51c56d62009-12-14 20:49:26 +00006017 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006018
Douglas Gregor51c56d62009-12-14 20:49:26 +00006019 case OR_Deleted: {
Douglas Gregor51c56d62009-12-14 20:49:26 +00006020 OverloadCandidateSet::iterator Best;
John McCall120d63c2010-08-24 20:38:10 +00006021 OverloadingResult Ovl
6022 = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best);
Douglas Gregore4e68d42012-02-15 19:33:52 +00006023 if (Ovl != OR_Deleted) {
6024 S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init)
6025 << true << DestType << ArgsRange;
Douglas Gregor51c56d62009-12-14 20:49:26 +00006026 llvm_unreachable("Inconsistent overload resolution?");
Douglas Gregore4e68d42012-02-15 19:33:52 +00006027 break;
Douglas Gregor51c56d62009-12-14 20:49:26 +00006028 }
Douglas Gregore4e68d42012-02-15 19:33:52 +00006029
6030 // If this is a defaulted or implicitly-declared function, then
6031 // it was implicitly deleted. Make it clear that the deletion was
6032 // implicit.
Richard Smith6c4c36c2012-03-30 20:53:28 +00006033 if (S.isImplicitlyDeleted(Best->Function))
Douglas Gregore4e68d42012-02-15 19:33:52 +00006034 S.Diag(Kind.getLocation(), diag::err_ovl_deleted_special_init)
Richard Smith6c4c36c2012-03-30 20:53:28 +00006035 << S.getSpecialMember(cast<CXXMethodDecl>(Best->Function))
Douglas Gregore4e68d42012-02-15 19:33:52 +00006036 << DestType << ArgsRange;
Richard Smith6c4c36c2012-03-30 20:53:28 +00006037 else
6038 S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init)
6039 << true << DestType << ArgsRange;
6040
6041 S.NoteDeletedFunction(Best->Function);
Douglas Gregor51c56d62009-12-14 20:49:26 +00006042 break;
6043 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006044
Douglas Gregor51c56d62009-12-14 20:49:26 +00006045 case OR_Success:
6046 llvm_unreachable("Conversion did not fail!");
Douglas Gregor51c56d62009-12-14 20:49:26 +00006047 }
Douglas Gregor51c56d62009-12-14 20:49:26 +00006048 }
David Blaikie9fdefb32012-01-17 08:24:58 +00006049 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006050
Douglas Gregor99a2e602009-12-16 01:38:02 +00006051 case FK_DefaultInitOfConst:
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00006052 if (Entity.getKind() == InitializedEntity::EK_Member &&
6053 isa<CXXConstructorDecl>(S.CurContext)) {
6054 // This is implicit default-initialization of a const member in
6055 // a constructor. Complain that it needs to be explicitly
6056 // initialized.
6057 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(S.CurContext);
6058 S.Diag(Kind.getLocation(), diag::err_uninitialized_member_in_ctor)
Richard Smith07b0fdc2013-03-18 21:12:30 +00006059 << (Constructor->getInheritedConstructor() ? 2 :
6060 Constructor->isImplicit() ? 1 : 0)
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00006061 << S.Context.getTypeDeclType(Constructor->getParent())
6062 << /*const=*/1
6063 << Entity.getName();
6064 S.Diag(Entity.getDecl()->getLocation(), diag::note_previous_decl)
6065 << Entity.getName();
6066 } else {
6067 S.Diag(Kind.getLocation(), diag::err_default_init_const)
6068 << DestType << (bool)DestType->getAs<RecordType>();
6069 }
Douglas Gregor99a2e602009-12-16 01:38:02 +00006070 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006071
Sebastian Redl8713d4e2011-09-24 17:47:52 +00006072 case FK_Incomplete:
Douglas Gregor69a30b82012-04-10 20:43:46 +00006073 S.RequireCompleteType(Kind.getLocation(), FailedIncompleteType,
Sebastian Redl8713d4e2011-09-24 17:47:52 +00006074 diag::err_init_incomplete_type);
6075 break;
6076
Sebastian Redl14b0c192011-09-24 17:48:00 +00006077 case FK_ListInitializationFailed: {
6078 // Run the init list checker again to emit diagnostics.
6079 InitListExpr* InitList = cast<InitListExpr>(Args[0]);
6080 QualType DestType = Entity.getType();
6081 InitListChecker DiagnoseInitList(S, Entity, InitList,
Sebastian Redlc2235182011-10-16 18:19:28 +00006082 DestType, /*VerifyOnly=*/false,
Sebastian Redl168319c2012-02-12 16:37:24 +00006083 Kind.getKind() != InitializationKind::IK_DirectList ||
Richard Smith80ad52f2013-01-02 11:42:31 +00006084 !S.getLangOpts().CPlusPlus11);
Sebastian Redl14b0c192011-09-24 17:48:00 +00006085 assert(DiagnoseInitList.HadError() &&
6086 "Inconsistent init list check result.");
6087 break;
6088 }
John McCall5acb0c92011-10-17 18:40:02 +00006089
6090 case FK_PlaceholderType: {
6091 // FIXME: Already diagnosed!
6092 break;
6093 }
Sebastian Redl2b916b82012-01-17 22:49:42 +00006094
6095 case FK_InitListElementCopyFailure: {
6096 // Try to perform all copies again.
6097 InitListExpr* InitList = cast<InitListExpr>(Args[0]);
6098 unsigned NumInits = InitList->getNumInits();
6099 QualType DestType = Entity.getType();
6100 QualType E;
Douglas Gregor6c5aaed2013-03-25 23:47:01 +00006101 bool Success = S.isStdInitializerList(DestType.getNonReferenceType(), &E);
Sebastian Redl2b916b82012-01-17 22:49:42 +00006102 (void)Success;
6103 assert(Success && "Where did the std::initializer_list go?");
6104 InitializedEntity HiddenArray = InitializedEntity::InitializeTemporary(
6105 S.Context.getConstantArrayType(E,
6106 llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()),
6107 NumInits),
6108 ArrayType::Normal, 0));
6109 InitializedEntity Element = InitializedEntity::InitializeElement(S.Context,
6110 0, HiddenArray);
6111 // Show at most 3 errors. Otherwise, you'd get a lot of errors for errors
6112 // where the init list type is wrong, e.g.
6113 // std::initializer_list<void*> list = { 1, 2, 3, 4, 5, 6, 7, 8 };
6114 // FIXME: Emit a note if we hit the limit?
6115 int ErrorCount = 0;
6116 for (unsigned i = 0; i < NumInits && ErrorCount < 3; ++i) {
6117 Element.setElementIndex(i);
6118 ExprResult Init = S.Owned(InitList->getInit(i));
6119 if (S.PerformCopyInitialization(Element, Init.get()->getExprLoc(), Init)
6120 .isInvalid())
6121 ++ErrorCount;
6122 }
6123 break;
6124 }
Sebastian Redl70e24fc2012-04-01 19:54:59 +00006125
6126 case FK_ExplicitConstructor: {
6127 S.Diag(Kind.getLocation(), diag::err_selected_explicit_constructor)
6128 << Args[0]->getSourceRange();
6129 OverloadCandidateSet::iterator Best;
6130 OverloadingResult Ovl
6131 = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best);
Matt Beaumont-Gaye7d0bbf2012-04-02 19:05:35 +00006132 (void)Ovl;
Sebastian Redl70e24fc2012-04-01 19:54:59 +00006133 assert(Ovl == OR_Success && "Inconsistent overload resolution");
6134 CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
6135 S.Diag(CtorDecl->getLocation(), diag::note_constructor_declared_here);
6136 break;
6137 }
Douglas Gregor20093b42009-12-09 23:02:17 +00006138 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006139
Douglas Gregora41a8c52010-04-22 00:20:18 +00006140 PrintInitLocationNote(S, Entity);
Douglas Gregor20093b42009-12-09 23:02:17 +00006141 return true;
6142}
Douglas Gregor18ef5e22009-12-18 05:02:21 +00006143
Chris Lattner5f9e2722011-07-23 10:55:15 +00006144void InitializationSequence::dump(raw_ostream &OS) const {
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006145 switch (SequenceKind) {
6146 case FailedSequence: {
6147 OS << "Failed sequence: ";
6148 switch (Failure) {
6149 case FK_TooManyInitsForReference:
6150 OS << "too many initializers for reference";
6151 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006152
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006153 case FK_ArrayNeedsInitList:
6154 OS << "array requires initializer list";
6155 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006156
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006157 case FK_ArrayNeedsInitListOrStringLiteral:
6158 OS << "array requires initializer list or string literal";
6159 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006160
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00006161 case FK_ArrayTypeMismatch:
6162 OS << "array type mismatch";
6163 break;
6164
6165 case FK_NonConstantArrayInit:
6166 OS << "non-constant array initializer";
6167 break;
6168
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006169 case FK_AddressOfOverloadFailed:
6170 OS << "address of overloaded function failed";
6171 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006172
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006173 case FK_ReferenceInitOverloadFailed:
6174 OS << "overload resolution for reference initialization failed";
6175 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006176
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006177 case FK_NonConstLValueReferenceBindingToTemporary:
6178 OS << "non-const lvalue reference bound to temporary";
6179 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006180
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006181 case FK_NonConstLValueReferenceBindingToUnrelated:
6182 OS << "non-const lvalue reference bound to unrelated type";
6183 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006184
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006185 case FK_RValueReferenceBindingToLValue:
6186 OS << "rvalue reference bound to an lvalue";
6187 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006188
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006189 case FK_ReferenceInitDropsQualifiers:
6190 OS << "reference initialization drops qualifiers";
6191 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006192
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006193 case FK_ReferenceInitFailed:
6194 OS << "reference initialization failed";
6195 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006196
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006197 case FK_ConversionFailed:
6198 OS << "conversion failed";
6199 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006200
John Wiegley429bb272011-04-08 18:41:53 +00006201 case FK_ConversionFromPropertyFailed:
6202 OS << "conversion from property failed";
6203 break;
6204
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006205 case FK_TooManyInitsForScalar:
6206 OS << "too many initializers for scalar";
6207 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006208
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006209 case FK_ReferenceBindingToInitList:
6210 OS << "referencing binding to initializer list";
6211 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006212
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006213 case FK_InitListBadDestinationType:
6214 OS << "initializer list for non-aggregate, non-scalar type";
6215 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006216
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006217 case FK_UserConversionOverloadFailed:
6218 OS << "overloading failed for user-defined conversion";
6219 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006220
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006221 case FK_ConstructorOverloadFailed:
6222 OS << "constructor overloading failed";
6223 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006224
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006225 case FK_DefaultInitOfConst:
6226 OS << "default initialization of a const variable";
6227 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006228
Douglas Gregor72a43bb2010-05-20 22:12:02 +00006229 case FK_Incomplete:
6230 OS << "initialization of incomplete type";
6231 break;
Sebastian Redl8713d4e2011-09-24 17:47:52 +00006232
6233 case FK_ListInitializationFailed:
Sebastian Redl14b0c192011-09-24 17:48:00 +00006234 OS << "list initialization checker failure";
John McCall5acb0c92011-10-17 18:40:02 +00006235 break;
6236
John McCall73076432012-01-05 00:13:19 +00006237 case FK_VariableLengthArrayHasInitializer:
6238 OS << "variable length array has an initializer";
6239 break;
6240
John McCall5acb0c92011-10-17 18:40:02 +00006241 case FK_PlaceholderType:
6242 OS << "initializer expression isn't contextually valid";
6243 break;
Nick Lewyckyb0c6c332011-12-22 20:21:32 +00006244
6245 case FK_ListConstructorOverloadFailed:
6246 OS << "list constructor overloading failed";
6247 break;
Sebastian Redl2b916b82012-01-17 22:49:42 +00006248
6249 case FK_InitListElementCopyFailure:
6250 OS << "copy construction of initializer list element failed";
6251 break;
Sebastian Redl70e24fc2012-04-01 19:54:59 +00006252
6253 case FK_ExplicitConstructor:
6254 OS << "list copy initialization chose explicit constructor";
6255 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006256 }
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006257 OS << '\n';
6258 return;
6259 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006260
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006261 case DependentSequence:
Sebastian Redl7491c492011-06-05 13:59:11 +00006262 OS << "Dependent sequence\n";
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006263 return;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006264
Sebastian Redl7491c492011-06-05 13:59:11 +00006265 case NormalSequence:
6266 OS << "Normal sequence: ";
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006267 break;
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006268 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006269
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006270 for (step_iterator S = step_begin(), SEnd = step_end(); S != SEnd; ++S) {
6271 if (S != step_begin()) {
6272 OS << " -> ";
6273 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006274
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006275 switch (S->Kind) {
6276 case SK_ResolveAddressOfOverloadedFunction:
6277 OS << "resolve address of overloaded function";
6278 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006279
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006280 case SK_CastDerivedToBaseRValue:
6281 OS << "derived-to-base case (rvalue" << S->Type.getAsString() << ")";
6282 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006283
Sebastian Redl906082e2010-07-20 04:20:21 +00006284 case SK_CastDerivedToBaseXValue:
6285 OS << "derived-to-base case (xvalue" << S->Type.getAsString() << ")";
6286 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006287
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006288 case SK_CastDerivedToBaseLValue:
6289 OS << "derived-to-base case (lvalue" << S->Type.getAsString() << ")";
6290 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006291
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006292 case SK_BindReference:
6293 OS << "bind reference to lvalue";
6294 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006295
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006296 case SK_BindReferenceToTemporary:
6297 OS << "bind reference to a temporary";
6298 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006299
Douglas Gregor523d46a2010-04-18 07:40:54 +00006300 case SK_ExtraneousCopyToTemporary:
6301 OS << "extraneous C++03 copy to temporary";
6302 break;
6303
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006304 case SK_UserConversion:
Benjamin Kramerb8989f22011-10-14 18:45:37 +00006305 OS << "user-defined conversion via " << *S->Function.Function;
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006306 break;
Sebastian Redl906082e2010-07-20 04:20:21 +00006307
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006308 case SK_QualificationConversionRValue:
6309 OS << "qualification conversion (rvalue)";
Sebastian Redl13dc8f92011-11-27 16:50:07 +00006310 break;
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006311
Sebastian Redl906082e2010-07-20 04:20:21 +00006312 case SK_QualificationConversionXValue:
6313 OS << "qualification conversion (xvalue)";
Sebastian Redl13dc8f92011-11-27 16:50:07 +00006314 break;
Sebastian Redl906082e2010-07-20 04:20:21 +00006315
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006316 case SK_QualificationConversionLValue:
6317 OS << "qualification conversion (lvalue)";
6318 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006319
Jordan Rose1fd1e282013-04-11 00:58:58 +00006320 case SK_LValueToRValue:
6321 OS << "load (lvalue to rvalue)";
6322 break;
6323
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006324 case SK_ConversionSequence:
6325 OS << "implicit conversion sequence (";
6326 S->ICS->DebugPrint(); // FIXME: use OS
6327 OS << ")";
6328 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006329
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006330 case SK_ListInitialization:
Sebastian Redl8713d4e2011-09-24 17:47:52 +00006331 OS << "list aggregate initialization";
6332 break;
6333
6334 case SK_ListConstructorCall:
6335 OS << "list initialization via constructor";
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006336 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006337
Sebastian Redl13dc8f92011-11-27 16:50:07 +00006338 case SK_UnwrapInitList:
6339 OS << "unwrap reference initializer list";
6340 break;
6341
6342 case SK_RewrapInitList:
6343 OS << "rewrap reference initializer list";
6344 break;
6345
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006346 case SK_ConstructorInitialization:
6347 OS << "constructor initialization";
6348 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006349
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006350 case SK_ZeroInitialization:
6351 OS << "zero initialization";
6352 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006353
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006354 case SK_CAssignment:
6355 OS << "C assignment";
6356 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006357
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006358 case SK_StringInit:
6359 OS << "string initialization";
6360 break;
Douglas Gregor569c3162010-08-07 11:51:51 +00006361
6362 case SK_ObjCObjectConversion:
6363 OS << "Objective-C object conversion";
6364 break;
Douglas Gregorcd9ec3b2011-02-22 18:29:51 +00006365
6366 case SK_ArrayInit:
6367 OS << "array initialization";
6368 break;
John McCallf85e1932011-06-15 23:02:42 +00006369
Richard Smith0f163e92012-02-15 22:38:09 +00006370 case SK_ParenthesizedArrayInit:
6371 OS << "parenthesized array initialization";
6372 break;
6373
John McCallf85e1932011-06-15 23:02:42 +00006374 case SK_PassByIndirectCopyRestore:
6375 OS << "pass by indirect copy and restore";
6376 break;
6377
6378 case SK_PassByIndirectRestore:
6379 OS << "pass by indirect restore";
6380 break;
6381
6382 case SK_ProduceObjCObject:
6383 OS << "Objective-C object retension";
6384 break;
Sebastian Redl2b916b82012-01-17 22:49:42 +00006385
6386 case SK_StdInitializerList:
6387 OS << "std::initializer_list from initializer list";
6388 break;
Guy Benyeie6b9d802013-01-20 12:31:11 +00006389
Guy Benyei21f18c42013-02-07 10:55:47 +00006390 case SK_OCLSamplerInit:
6391 OS << "OpenCL sampler_t from integer constant";
6392 break;
6393
Guy Benyeie6b9d802013-01-20 12:31:11 +00006394 case SK_OCLZeroEvent:
6395 OS << "OpenCL event_t from zero";
6396 break;
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006397 }
Richard Smitha4dc51b2013-02-05 05:52:24 +00006398
6399 OS << " [" << S->Type.getAsString() << ']';
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006400 }
Richard Smitha4dc51b2013-02-05 05:52:24 +00006401
6402 OS << '\n';
Douglas Gregorde4b1d82010-01-29 19:14:02 +00006403}
6404
6405void InitializationSequence::dump() const {
6406 dump(llvm::errs());
6407}
6408
Richard Smith4c3fc9b2012-01-18 05:21:49 +00006409static void DiagnoseNarrowingInInitList(Sema &S, InitializationSequence &Seq,
6410 QualType EntityType,
6411 const Expr *PreInit,
6412 const Expr *PostInit) {
6413 if (Seq.step_begin() == Seq.step_end() || PreInit->isValueDependent())
6414 return;
6415
6416 // A narrowing conversion can only appear as the final implicit conversion in
6417 // an initialization sequence.
6418 const InitializationSequence::Step &LastStep = Seq.step_end()[-1];
6419 if (LastStep.Kind != InitializationSequence::SK_ConversionSequence)
6420 return;
6421
6422 const ImplicitConversionSequence &ICS = *LastStep.ICS;
6423 const StandardConversionSequence *SCS = 0;
6424 switch (ICS.getKind()) {
6425 case ImplicitConversionSequence::StandardConversion:
6426 SCS = &ICS.Standard;
6427 break;
6428 case ImplicitConversionSequence::UserDefinedConversion:
6429 SCS = &ICS.UserDefined.After;
6430 break;
6431 case ImplicitConversionSequence::AmbiguousConversion:
6432 case ImplicitConversionSequence::EllipsisConversion:
6433 case ImplicitConversionSequence::BadConversion:
6434 return;
6435 }
6436
6437 // Determine the type prior to the narrowing conversion. If a conversion
6438 // operator was used, this may be different from both the type of the entity
6439 // and of the pre-initialization expression.
6440 QualType PreNarrowingType = PreInit->getType();
6441 if (Seq.step_begin() + 1 != Seq.step_end())
6442 PreNarrowingType = Seq.step_end()[-2].Type;
6443
6444 // C++11 [dcl.init.list]p7: Check whether this is a narrowing conversion.
6445 APValue ConstantValue;
Richard Smithf6028062012-03-23 23:55:39 +00006446 QualType ConstantType;
6447 switch (SCS->getNarrowingKind(S.Context, PostInit, ConstantValue,
6448 ConstantType)) {
Richard Smith4c3fc9b2012-01-18 05:21:49 +00006449 case NK_Not_Narrowing:
6450 // No narrowing occurred.
6451 return;
6452
6453 case NK_Type_Narrowing:
6454 // This was a floating-to-integer conversion, which is always considered a
6455 // narrowing conversion even if the value is a constant and can be
6456 // represented exactly as an integer.
6457 S.Diag(PostInit->getLocStart(),
Richard Smith80ad52f2013-01-02 11:42:31 +00006458 S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11?
Douglas Gregorf3c82c52012-01-23 15:29:33 +00006459 diag::warn_init_list_type_narrowing
6460 : S.isSFINAEContext()?
6461 diag::err_init_list_type_narrowing_sfinae
6462 : diag::err_init_list_type_narrowing)
Richard Smith4c3fc9b2012-01-18 05:21:49 +00006463 << PostInit->getSourceRange()
6464 << PreNarrowingType.getLocalUnqualifiedType()
6465 << EntityType.getLocalUnqualifiedType();
6466 break;
6467
6468 case NK_Constant_Narrowing:
6469 // A constant value was narrowed.
6470 S.Diag(PostInit->getLocStart(),
Richard Smith80ad52f2013-01-02 11:42:31 +00006471 S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11?
Douglas Gregorf3c82c52012-01-23 15:29:33 +00006472 diag::warn_init_list_constant_narrowing
6473 : S.isSFINAEContext()?
6474 diag::err_init_list_constant_narrowing_sfinae
6475 : diag::err_init_list_constant_narrowing)
Richard Smith4c3fc9b2012-01-18 05:21:49 +00006476 << PostInit->getSourceRange()
Richard Smithf6028062012-03-23 23:55:39 +00006477 << ConstantValue.getAsString(S.getASTContext(), ConstantType)
Jeffrey Yasskin99061492011-08-29 15:59:37 +00006478 << EntityType.getLocalUnqualifiedType();
Richard Smith4c3fc9b2012-01-18 05:21:49 +00006479 break;
6480
6481 case NK_Variable_Narrowing:
6482 // A variable's value may have been narrowed.
6483 S.Diag(PostInit->getLocStart(),
Richard Smith80ad52f2013-01-02 11:42:31 +00006484 S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11?
Douglas Gregorf3c82c52012-01-23 15:29:33 +00006485 diag::warn_init_list_variable_narrowing
6486 : S.isSFINAEContext()?
6487 diag::err_init_list_variable_narrowing_sfinae
6488 : diag::err_init_list_variable_narrowing)
Richard Smith4c3fc9b2012-01-18 05:21:49 +00006489 << PostInit->getSourceRange()
6490 << PreNarrowingType.getLocalUnqualifiedType()
Jeffrey Yasskin99061492011-08-29 15:59:37 +00006491 << EntityType.getLocalUnqualifiedType();
Richard Smith4c3fc9b2012-01-18 05:21:49 +00006492 break;
6493 }
Jeffrey Yasskin19159132011-07-26 23:20:30 +00006494
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00006495 SmallString<128> StaticCast;
Jeffrey Yasskin19159132011-07-26 23:20:30 +00006496 llvm::raw_svector_ostream OS(StaticCast);
6497 OS << "static_cast<";
6498 if (const TypedefType *TT = EntityType->getAs<TypedefType>()) {
6499 // It's important to use the typedef's name if there is one so that the
6500 // fixit doesn't break code using types like int64_t.
6501 //
6502 // FIXME: This will break if the typedef requires qualification. But
6503 // getQualifiedNameAsString() includes non-machine-parsable components.
Benjamin Kramerb8989f22011-10-14 18:45:37 +00006504 OS << *TT->getDecl();
Jeffrey Yasskin19159132011-07-26 23:20:30 +00006505 } else if (const BuiltinType *BT = EntityType->getAs<BuiltinType>())
David Blaikie4e4d0842012-03-11 07:00:24 +00006506 OS << BT->getName(S.getLangOpts());
Jeffrey Yasskin19159132011-07-26 23:20:30 +00006507 else {
6508 // Oops, we didn't find the actual type of the variable. Don't emit a fixit
6509 // with a broken cast.
6510 return;
6511 }
6512 OS << ">(";
Richard Smith4c3fc9b2012-01-18 05:21:49 +00006513 S.Diag(PostInit->getLocStart(), diag::note_init_list_narrowing_override)
6514 << PostInit->getSourceRange()
6515 << FixItHint::CreateInsertion(PostInit->getLocStart(), OS.str())
Jeffrey Yasskin19159132011-07-26 23:20:30 +00006516 << FixItHint::CreateInsertion(
Richard Smith4c3fc9b2012-01-18 05:21:49 +00006517 S.getPreprocessor().getLocForEndOfToken(PostInit->getLocEnd()), ")");
Jeffrey Yasskin19159132011-07-26 23:20:30 +00006518}
6519
Douglas Gregor18ef5e22009-12-18 05:02:21 +00006520//===----------------------------------------------------------------------===//
6521// Initialization helper functions
6522//===----------------------------------------------------------------------===//
Sean Hunt2be7e902011-05-12 22:46:29 +00006523bool
6524Sema::CanPerformCopyInitialization(const InitializedEntity &Entity,
6525 ExprResult Init) {
6526 if (Init.isInvalid())
6527 return false;
6528
6529 Expr *InitE = Init.get();
6530 assert(InitE && "No initialization expression");
6531
Douglas Gregor3c394c52012-07-31 22:15:04 +00006532 InitializationKind Kind
6533 = InitializationKind::CreateCopy(InitE->getLocStart(), SourceLocation());
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00006534 InitializationSequence Seq(*this, Entity, Kind, InitE);
Sebastian Redl383616c2011-06-05 12:23:28 +00006535 return !Seq.Failed();
Sean Hunt2be7e902011-05-12 22:46:29 +00006536}
6537
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006538ExprResult
Douglas Gregor18ef5e22009-12-18 05:02:21 +00006539Sema::PerformCopyInitialization(const InitializedEntity &Entity,
6540 SourceLocation EqualLoc,
Jeffrey Yasskin19159132011-07-26 23:20:30 +00006541 ExprResult Init,
Douglas Gregored878af2012-02-24 23:56:31 +00006542 bool TopLevelOfInitList,
6543 bool AllowExplicit) {
Douglas Gregor18ef5e22009-12-18 05:02:21 +00006544 if (Init.isInvalid())
6545 return ExprError();
6546
John McCall15d7d122010-11-11 03:21:53 +00006547 Expr *InitE = Init.get();
Douglas Gregor18ef5e22009-12-18 05:02:21 +00006548 assert(InitE && "No initialization expression?");
6549
6550 if (EqualLoc.isInvalid())
6551 EqualLoc = InitE->getLocStart();
6552
6553 InitializationKind Kind = InitializationKind::CreateCopy(InitE->getLocStart(),
Douglas Gregored878af2012-02-24 23:56:31 +00006554 EqualLoc,
6555 AllowExplicit);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00006556 InitializationSequence Seq(*this, Entity, Kind, InitE);
Douglas Gregor18ef5e22009-12-18 05:02:21 +00006557 Init.release();
Jeffrey Yasskin19159132011-07-26 23:20:30 +00006558
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00006559 ExprResult Result = Seq.Perform(*this, Entity, Kind, InitE);
Richard Smith4c3fc9b2012-01-18 05:21:49 +00006560
6561 if (!Result.isInvalid() && TopLevelOfInitList)
6562 DiagnoseNarrowingInInitList(*this, Seq, Entity.getType(),
6563 InitE, Result.get());
6564
6565 return Result;
Douglas Gregor18ef5e22009-12-18 05:02:21 +00006566}