1 //===--- 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 //
10 // This file implements semantic analysis for initializers.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/Sema/Initialization.h"
15 #include "clang/AST/ASTContext.h"
16 #include "clang/AST/DeclObjC.h"
17 #include "clang/AST/ExprCXX.h"
18 #include "clang/AST/ExprObjC.h"
19 #include "clang/AST/TypeLoc.h"
20 #include "clang/Lex/Preprocessor.h"
21 #include "clang/Sema/Designator.h"
22 #include "clang/Sema/Lookup.h"
23 #include "clang/Sema/SemaInternal.h"
24 #include "llvm/ADT/APInt.h"
25 #include "llvm/ADT/SmallString.h"
26 #include "llvm/Support/ErrorHandling.h"
27 #include "llvm/Support/raw_ostream.h"
28 #include <map>
29 using namespace clang;
30 
31 //===----------------------------------------------------------------------===//
32 // Sema Initialization Checking
33 //===----------------------------------------------------------------------===//
34 
35 /// \brief Check whether T is compatible with a wide character type (wchar_t,
36 /// char16_t or char32_t).
37 static bool IsWideCharCompatible(QualType T, ASTContext &Context) {
38   if (Context.typesAreCompatible(Context.getWideCharType(), T))
39     return true;
40   if (Context.getLangOpts().CPlusPlus || Context.getLangOpts().C11) {
41     return Context.typesAreCompatible(Context.Char16Ty, T) ||
42            Context.typesAreCompatible(Context.Char32Ty, T);
43   }
44   return false;
45 }
46 
47 enum StringInitFailureKind {
48   SIF_None,
49   SIF_NarrowStringIntoWideChar,
50   SIF_WideStringIntoChar,
51   SIF_IncompatWideStringIntoWideChar,
52   SIF_Other
53 };
54 
55 /// \brief Check whether the array of type AT can be initialized by the Init
56 /// expression by means of string initialization. Returns SIF_None if so,
57 /// otherwise returns a StringInitFailureKind that describes why the
58 /// initialization would not work.
59 static StringInitFailureKind IsStringInit(Expr *Init, const ArrayType *AT,
60                                           ASTContext &Context) {
61   if (!isa<ConstantArrayType>(AT) && !isa<IncompleteArrayType>(AT))
62     return SIF_Other;
63 
64   // See if this is a string literal or @encode.
65   Init = Init->IgnoreParens();
66 
67   // Handle @encode, which is a narrow string.
68   if (isa<ObjCEncodeExpr>(Init) && AT->getElementType()->isCharType())
69     return SIF_None;
70 
71   // Otherwise we can only handle string literals.
72   StringLiteral *SL = dyn_cast<StringLiteral>(Init);
73   if (SL == 0)
74     return SIF_Other;
75 
76   const QualType ElemTy =
77       Context.getCanonicalType(AT->getElementType()).getUnqualifiedType();
78 
79   switch (SL->getKind()) {
80   case StringLiteral::Ascii:
81   case StringLiteral::UTF8:
82     // char array can be initialized with a narrow string.
83     // Only allow char x[] = "foo";  not char x[] = L"foo";
84     if (ElemTy->isCharType())
85       return SIF_None;
86     if (IsWideCharCompatible(ElemTy, Context))
87       return SIF_NarrowStringIntoWideChar;
88     return SIF_Other;
89   // C99 6.7.8p15 (with correction from DR343), or C11 6.7.9p15:
90   // "An array with element type compatible with a qualified or unqualified
91   // version of wchar_t, char16_t, or char32_t may be initialized by a wide
92   // string literal with the corresponding encoding prefix (L, u, or U,
93   // respectively), optionally enclosed in braces.
94   case StringLiteral::UTF16:
95     if (Context.typesAreCompatible(Context.Char16Ty, ElemTy))
96       return SIF_None;
97     if (ElemTy->isCharType())
98       return SIF_WideStringIntoChar;
99     if (IsWideCharCompatible(ElemTy, Context))
100       return SIF_IncompatWideStringIntoWideChar;
101     return SIF_Other;
102   case StringLiteral::UTF32:
103     if (Context.typesAreCompatible(Context.Char32Ty, ElemTy))
104       return SIF_None;
105     if (ElemTy->isCharType())
106       return SIF_WideStringIntoChar;
107     if (IsWideCharCompatible(ElemTy, Context))
108       return SIF_IncompatWideStringIntoWideChar;
109     return SIF_Other;
110   case StringLiteral::Wide:
111     if (Context.typesAreCompatible(Context.getWideCharType(), ElemTy))
112       return SIF_None;
113     if (ElemTy->isCharType())
114       return SIF_WideStringIntoChar;
115     if (IsWideCharCompatible(ElemTy, Context))
116       return SIF_IncompatWideStringIntoWideChar;
117     return SIF_Other;
118   }
119 
120   llvm_unreachable("missed a StringLiteral kind?");
121 }
122 
123 static StringInitFailureKind IsStringInit(Expr *init, QualType declType,
124                                           ASTContext &Context) {
125   const ArrayType *arrayType = Context.getAsArrayType(declType);
126   if (!arrayType)
127     return SIF_Other;
128   return IsStringInit(init, arrayType, Context);
129 }
130 
131 /// Update the type of a string literal, including any surrounding parentheses,
132 /// to match the type of the object which it is initializing.
133 static void updateStringLiteralType(Expr *E, QualType Ty) {
134   while (true) {
135     E->setType(Ty);
136     if (isa<StringLiteral>(E) || isa<ObjCEncodeExpr>(E))
137       break;
138     else if (ParenExpr *PE = dyn_cast<ParenExpr>(E))
139       E = PE->getSubExpr();
140     else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E))
141       E = UO->getSubExpr();
142     else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E))
143       E = GSE->getResultExpr();
144     else
145       llvm_unreachable("unexpected expr in string literal init");
146   }
147 }
148 
149 static void CheckStringInit(Expr *Str, QualType &DeclT, const ArrayType *AT,
150                             Sema &S) {
151   // Get the length of the string as parsed.
152   uint64_t StrLength =
153     cast<ConstantArrayType>(Str->getType())->getSize().getZExtValue();
154 
155 
156   if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
157     // C99 6.7.8p14. We have an array of character type with unknown size
158     // being initialized to a string literal.
159     llvm::APInt ConstVal(32, StrLength);
160     // Return a new array type (C99 6.7.8p22).
161     DeclT = S.Context.getConstantArrayType(IAT->getElementType(),
162                                            ConstVal,
163                                            ArrayType::Normal, 0);
164     updateStringLiteralType(Str, DeclT);
165     return;
166   }
167 
168   const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
169 
170   // We have an array of character type with known size.  However,
171   // the size may be smaller or larger than the string we are initializing.
172   // FIXME: Avoid truncation for 64-bit length strings.
173   if (S.getLangOpts().CPlusPlus) {
174     if (StringLiteral *SL = dyn_cast<StringLiteral>(Str->IgnoreParens())) {
175       // For Pascal strings it's OK to strip off the terminating null character,
176       // so the example below is valid:
177       //
178       // unsigned char a[2] = "\pa";
179       if (SL->isPascal())
180         StrLength--;
181     }
182 
183     // [dcl.init.string]p2
184     if (StrLength > CAT->getSize().getZExtValue())
185       S.Diag(Str->getLocStart(),
186              diag::err_initializer_string_for_char_array_too_long)
187         << Str->getSourceRange();
188   } else {
189     // C99 6.7.8p14.
190     if (StrLength-1 > CAT->getSize().getZExtValue())
191       S.Diag(Str->getLocStart(),
192              diag::warn_initializer_string_for_char_array_too_long)
193         << Str->getSourceRange();
194   }
195 
196   // Set the type to the actual size that we are initializing.  If we have
197   // something like:
198   //   char x[1] = "foo";
199   // then this will set the string literal's type to char[1].
200   updateStringLiteralType(Str, DeclT);
201 }
202 
203 //===----------------------------------------------------------------------===//
204 // Semantic checking for initializer lists.
205 //===----------------------------------------------------------------------===//
206 
207 /// @brief Semantic checking for initializer lists.
208 ///
209 /// The InitListChecker class contains a set of routines that each
210 /// handle the initialization of a certain kind of entity, e.g.,
211 /// arrays, vectors, struct/union types, scalars, etc. The
212 /// InitListChecker itself performs a recursive walk of the subobject
213 /// structure of the type to be initialized, while stepping through
214 /// the initializer list one element at a time. The IList and Index
215 /// parameters to each of the Check* routines contain the active
216 /// (syntactic) initializer list and the index into that initializer
217 /// list that represents the current initializer. Each routine is
218 /// responsible for moving that Index forward as it consumes elements.
219 ///
220 /// Each Check* routine also has a StructuredList/StructuredIndex
221 /// arguments, which contains the current "structured" (semantic)
222 /// initializer list and the index into that initializer list where we
223 /// are copying initializers as we map them over to the semantic
224 /// list. Once we have completed our recursive walk of the subobject
225 /// structure, we will have constructed a full semantic initializer
226 /// list.
227 ///
228 /// C99 designators cause changes in the initializer list traversal,
229 /// because they make the initialization "jump" into a specific
230 /// subobject and then continue the initialization from that
231 /// point. CheckDesignatedInitializer() recursively steps into the
232 /// designated subobject and manages backing out the recursion to
233 /// initialize the subobjects after the one designated.
234 namespace {
235 class InitListChecker {
236   Sema &SemaRef;
237   bool hadError;
238   bool VerifyOnly; // no diagnostics, no structure building
239   llvm::DenseMap<InitListExpr *, InitListExpr *> SyntacticToSemantic;
240   InitListExpr *FullyStructuredList;
241 
242   void CheckImplicitInitList(const InitializedEntity &Entity,
243                              InitListExpr *ParentIList, QualType T,
244                              unsigned &Index, InitListExpr *StructuredList,
245                              unsigned &StructuredIndex);
246   void CheckExplicitInitList(const InitializedEntity &Entity,
247                              InitListExpr *IList, QualType &T,
248                              unsigned &Index, InitListExpr *StructuredList,
249                              unsigned &StructuredIndex,
250                              bool TopLevelObject = false);
251   void CheckListElementTypes(const InitializedEntity &Entity,
252                              InitListExpr *IList, QualType &DeclType,
253                              bool SubobjectIsDesignatorContext,
254                              unsigned &Index,
255                              InitListExpr *StructuredList,
256                              unsigned &StructuredIndex,
257                              bool TopLevelObject = false);
258   void CheckSubElementType(const InitializedEntity &Entity,
259                            InitListExpr *IList, QualType ElemType,
260                            unsigned &Index,
261                            InitListExpr *StructuredList,
262                            unsigned &StructuredIndex);
263   void CheckComplexType(const InitializedEntity &Entity,
264                         InitListExpr *IList, QualType DeclType,
265                         unsigned &Index,
266                         InitListExpr *StructuredList,
267                         unsigned &StructuredIndex);
268   void CheckScalarType(const InitializedEntity &Entity,
269                        InitListExpr *IList, QualType DeclType,
270                        unsigned &Index,
271                        InitListExpr *StructuredList,
272                        unsigned &StructuredIndex);
273   void CheckReferenceType(const InitializedEntity &Entity,
274                           InitListExpr *IList, QualType DeclType,
275                           unsigned &Index,
276                           InitListExpr *StructuredList,
277                           unsigned &StructuredIndex);
278   void CheckVectorType(const InitializedEntity &Entity,
279                        InitListExpr *IList, QualType DeclType, unsigned &Index,
280                        InitListExpr *StructuredList,
281                        unsigned &StructuredIndex);
282   void CheckStructUnionTypes(const InitializedEntity &Entity,
283                              InitListExpr *IList, QualType DeclType,
284                              RecordDecl::field_iterator Field,
285                              bool SubobjectIsDesignatorContext, unsigned &Index,
286                              InitListExpr *StructuredList,
287                              unsigned &StructuredIndex,
288                              bool TopLevelObject = false);
289   void CheckArrayType(const InitializedEntity &Entity,
290                       InitListExpr *IList, QualType &DeclType,
291                       llvm::APSInt elementIndex,
292                       bool SubobjectIsDesignatorContext, unsigned &Index,
293                       InitListExpr *StructuredList,
294                       unsigned &StructuredIndex);
295   bool CheckDesignatedInitializer(const InitializedEntity &Entity,
296                                   InitListExpr *IList, DesignatedInitExpr *DIE,
297                                   unsigned DesigIdx,
298                                   QualType &CurrentObjectType,
299                                   RecordDecl::field_iterator *NextField,
300                                   llvm::APSInt *NextElementIndex,
301                                   unsigned &Index,
302                                   InitListExpr *StructuredList,
303                                   unsigned &StructuredIndex,
304                                   bool FinishSubobjectInit,
305                                   bool TopLevelObject);
306   InitListExpr *getStructuredSubobjectInit(InitListExpr *IList, unsigned Index,
307                                            QualType CurrentObjectType,
308                                            InitListExpr *StructuredList,
309                                            unsigned StructuredIndex,
310                                            SourceRange InitRange);
311   void UpdateStructuredListElement(InitListExpr *StructuredList,
312                                    unsigned &StructuredIndex,
313                                    Expr *expr);
314   int numArrayElements(QualType DeclType);
315   int numStructUnionElements(QualType DeclType);
316 
317   void FillInValueInitForField(unsigned Init, FieldDecl *Field,
318                                const InitializedEntity &ParentEntity,
319                                InitListExpr *ILE, bool &RequiresSecondPass);
320   void FillInValueInitializations(const InitializedEntity &Entity,
321                                   InitListExpr *ILE, bool &RequiresSecondPass);
322   bool CheckFlexibleArrayInit(const InitializedEntity &Entity,
323                               Expr *InitExpr, FieldDecl *Field,
324                               bool TopLevelObject);
325   void CheckValueInitializable(const InitializedEntity &Entity);
326 
327 public:
328   InitListChecker(Sema &S, const InitializedEntity &Entity,
329                   InitListExpr *IL, QualType &T, bool VerifyOnly);
330   bool HadError() { return hadError; }
331 
332   // @brief Retrieves the fully-structured initializer list used for
333   // semantic analysis and code generation.
334   InitListExpr *getFullyStructuredList() const { return FullyStructuredList; }
335 };
336 } // end anonymous namespace
337 
338 void InitListChecker::CheckValueInitializable(const InitializedEntity &Entity) {
339   assert(VerifyOnly &&
340          "CheckValueInitializable is only inteded for verification mode.");
341 
342   SourceLocation Loc;
343   InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
344                                                             true);
345   InitializationSequence InitSeq(SemaRef, Entity, Kind, None);
346   if (InitSeq.Failed())
347     hadError = true;
348 }
349 
350 void InitListChecker::FillInValueInitForField(unsigned Init, FieldDecl *Field,
351                                         const InitializedEntity &ParentEntity,
352                                               InitListExpr *ILE,
353                                               bool &RequiresSecondPass) {
354   SourceLocation Loc = ILE->getLocStart();
355   unsigned NumInits = ILE->getNumInits();
356   InitializedEntity MemberEntity
357     = InitializedEntity::InitializeMember(Field, &ParentEntity);
358   if (Init >= NumInits || !ILE->getInit(Init)) {
359     // If there's no explicit initializer but we have a default initializer, use
360     // that. This only happens in C++1y, since classes with default
361     // initializers are not aggregates in C++11.
362     if (Field->hasInClassInitializer()) {
363       Expr *DIE = CXXDefaultInitExpr::Create(SemaRef.Context,
364                                              ILE->getRBraceLoc(), Field);
365       if (Init < NumInits)
366         ILE->setInit(Init, DIE);
367       else {
368         ILE->updateInit(SemaRef.Context, Init, DIE);
369         RequiresSecondPass = true;
370       }
371       return;
372     }
373 
374     // FIXME: We probably don't need to handle references
375     // specially here, since value-initialization of references is
376     // handled in InitializationSequence.
377     if (Field->getType()->isReferenceType()) {
378       // C++ [dcl.init.aggr]p9:
379       //   If an incomplete or empty initializer-list leaves a
380       //   member of reference type uninitialized, the program is
381       //   ill-formed.
382       SemaRef.Diag(Loc, diag::err_init_reference_member_uninitialized)
383         << Field->getType()
384         << ILE->getSyntacticForm()->getSourceRange();
385       SemaRef.Diag(Field->getLocation(),
386                    diag::note_uninit_reference_member);
387       hadError = true;
388       return;
389     }
390 
391     InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
392                                                               true);
393     InitializationSequence InitSeq(SemaRef, MemberEntity, Kind, None);
394     if (!InitSeq) {
395       InitSeq.Diagnose(SemaRef, MemberEntity, Kind, None);
396       hadError = true;
397       return;
398     }
399 
400     ExprResult MemberInit
401       = InitSeq.Perform(SemaRef, MemberEntity, Kind, None);
402     if (MemberInit.isInvalid()) {
403       hadError = true;
404       return;
405     }
406 
407     if (hadError) {
408       // Do nothing
409     } else if (Init < NumInits) {
410       ILE->setInit(Init, MemberInit.takeAs<Expr>());
411     } else if (InitSeq.isConstructorInitialization()) {
412       // Value-initialization requires a constructor call, so
413       // extend the initializer list to include the constructor
414       // call and make a note that we'll need to take another pass
415       // through the initializer list.
416       ILE->updateInit(SemaRef.Context, Init, MemberInit.takeAs<Expr>());
417       RequiresSecondPass = true;
418     }
419   } else if (InitListExpr *InnerILE
420                = dyn_cast<InitListExpr>(ILE->getInit(Init)))
421     FillInValueInitializations(MemberEntity, InnerILE,
422                                RequiresSecondPass);
423 }
424 
425 /// Recursively replaces NULL values within the given initializer list
426 /// with expressions that perform value-initialization of the
427 /// appropriate type.
428 void
429 InitListChecker::FillInValueInitializations(const InitializedEntity &Entity,
430                                             InitListExpr *ILE,
431                                             bool &RequiresSecondPass) {
432   assert((ILE->getType() != SemaRef.Context.VoidTy) &&
433          "Should not have void type");
434   SourceLocation Loc = ILE->getLocStart();
435   if (ILE->getSyntacticForm())
436     Loc = ILE->getSyntacticForm()->getLocStart();
437 
438   if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) {
439     const RecordDecl *RDecl = RType->getDecl();
440     if (RDecl->isUnion() && ILE->getInitializedFieldInUnion())
441       FillInValueInitForField(0, ILE->getInitializedFieldInUnion(),
442                               Entity, ILE, RequiresSecondPass);
443     else if (RDecl->isUnion() && isa<CXXRecordDecl>(RDecl) &&
444              cast<CXXRecordDecl>(RDecl)->hasInClassInitializer()) {
445       for (RecordDecl::field_iterator Field = RDecl->field_begin(),
446                                       FieldEnd = RDecl->field_end();
447            Field != FieldEnd; ++Field) {
448         if (Field->hasInClassInitializer()) {
449           FillInValueInitForField(0, *Field, Entity, ILE, RequiresSecondPass);
450           break;
451         }
452       }
453     } else {
454       unsigned Init = 0;
455       for (RecordDecl::field_iterator Field = RDecl->field_begin(),
456                                       FieldEnd = RDecl->field_end();
457            Field != FieldEnd; ++Field) {
458         if (Field->isUnnamedBitfield())
459           continue;
460 
461         if (hadError)
462           return;
463 
464         FillInValueInitForField(Init, *Field, Entity, ILE, RequiresSecondPass);
465         if (hadError)
466           return;
467 
468         ++Init;
469 
470         // Only look at the first initialization of a union.
471         if (RDecl->isUnion())
472           break;
473       }
474     }
475 
476     return;
477   }
478 
479   QualType ElementType;
480 
481   InitializedEntity ElementEntity = Entity;
482   unsigned NumInits = ILE->getNumInits();
483   unsigned NumElements = NumInits;
484   if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) {
485     ElementType = AType->getElementType();
486     if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType))
487       NumElements = CAType->getSize().getZExtValue();
488     ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context,
489                                                          0, Entity);
490   } else if (const VectorType *VType = ILE->getType()->getAs<VectorType>()) {
491     ElementType = VType->getElementType();
492     NumElements = VType->getNumElements();
493     ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context,
494                                                          0, Entity);
495   } else
496     ElementType = ILE->getType();
497 
498 
499   for (unsigned Init = 0; Init != NumElements; ++Init) {
500     if (hadError)
501       return;
502 
503     if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement ||
504         ElementEntity.getKind() == InitializedEntity::EK_VectorElement)
505       ElementEntity.setElementIndex(Init);
506 
507     Expr *InitExpr = (Init < NumInits ? ILE->getInit(Init) : 0);
508     if (!InitExpr && !ILE->hasArrayFiller()) {
509       InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
510                                                                 true);
511       InitializationSequence InitSeq(SemaRef, ElementEntity, Kind, None);
512       if (!InitSeq) {
513         InitSeq.Diagnose(SemaRef, ElementEntity, Kind, None);
514         hadError = true;
515         return;
516       }
517 
518       ExprResult ElementInit
519         = InitSeq.Perform(SemaRef, ElementEntity, Kind, None);
520       if (ElementInit.isInvalid()) {
521         hadError = true;
522         return;
523       }
524 
525       if (hadError) {
526         // Do nothing
527       } else if (Init < NumInits) {
528         // For arrays, just set the expression used for value-initialization
529         // of the "holes" in the array.
530         if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement)
531           ILE->setArrayFiller(ElementInit.takeAs<Expr>());
532         else
533           ILE->setInit(Init, ElementInit.takeAs<Expr>());
534       } else {
535         // For arrays, just set the expression used for value-initialization
536         // of the rest of elements and exit.
537         if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement) {
538           ILE->setArrayFiller(ElementInit.takeAs<Expr>());
539           return;
540         }
541 
542         if (InitSeq.isConstructorInitialization()) {
543           // Value-initialization requires a constructor call, so
544           // extend the initializer list to include the constructor
545           // call and make a note that we'll need to take another pass
546           // through the initializer list.
547           ILE->updateInit(SemaRef.Context, Init, ElementInit.takeAs<Expr>());
548           RequiresSecondPass = true;
549         }
550       }
551     } else if (InitListExpr *InnerILE
552                  = dyn_cast_or_null<InitListExpr>(InitExpr))
553       FillInValueInitializations(ElementEntity, InnerILE, RequiresSecondPass);
554   }
555 }
556 
557 
558 InitListChecker::InitListChecker(Sema &S, const InitializedEntity &Entity,
559                                  InitListExpr *IL, QualType &T,
560                                  bool VerifyOnly)
561   : SemaRef(S), VerifyOnly(VerifyOnly) {
562   hadError = false;
563 
564   unsigned newIndex = 0;
565   unsigned newStructuredIndex = 0;
566   FullyStructuredList
567     = getStructuredSubobjectInit(IL, newIndex, T, 0, 0, IL->getSourceRange());
568   CheckExplicitInitList(Entity, IL, T, newIndex,
569                         FullyStructuredList, newStructuredIndex,
570                         /*TopLevelObject=*/true);
571 
572   if (!hadError && !VerifyOnly) {
573     bool RequiresSecondPass = false;
574     FillInValueInitializations(Entity, FullyStructuredList, RequiresSecondPass);
575     if (RequiresSecondPass && !hadError)
576       FillInValueInitializations(Entity, FullyStructuredList,
577                                  RequiresSecondPass);
578   }
579 }
580 
581 int InitListChecker::numArrayElements(QualType DeclType) {
582   // FIXME: use a proper constant
583   int maxElements = 0x7FFFFFFF;
584   if (const ConstantArrayType *CAT =
585         SemaRef.Context.getAsConstantArrayType(DeclType)) {
586     maxElements = static_cast<int>(CAT->getSize().getZExtValue());
587   }
588   return maxElements;
589 }
590 
591 int InitListChecker::numStructUnionElements(QualType DeclType) {
592   RecordDecl *structDecl = DeclType->getAs<RecordType>()->getDecl();
593   int InitializableMembers = 0;
594   for (RecordDecl::field_iterator
595          Field = structDecl->field_begin(),
596          FieldEnd = structDecl->field_end();
597        Field != FieldEnd; ++Field) {
598     if (!Field->isUnnamedBitfield())
599       ++InitializableMembers;
600   }
601   if (structDecl->isUnion())
602     return std::min(InitializableMembers, 1);
603   return InitializableMembers - structDecl->hasFlexibleArrayMember();
604 }
605 
606 void InitListChecker::CheckImplicitInitList(const InitializedEntity &Entity,
607                                             InitListExpr *ParentIList,
608                                             QualType T, unsigned &Index,
609                                             InitListExpr *StructuredList,
610                                             unsigned &StructuredIndex) {
611   int maxElements = 0;
612 
613   if (T->isArrayType())
614     maxElements = numArrayElements(T);
615   else if (T->isRecordType())
616     maxElements = numStructUnionElements(T);
617   else if (T->isVectorType())
618     maxElements = T->getAs<VectorType>()->getNumElements();
619   else
620     llvm_unreachable("CheckImplicitInitList(): Illegal type");
621 
622   if (maxElements == 0) {
623     if (!VerifyOnly)
624       SemaRef.Diag(ParentIList->getInit(Index)->getLocStart(),
625                    diag::err_implicit_empty_initializer);
626     ++Index;
627     hadError = true;
628     return;
629   }
630 
631   // Build a structured initializer list corresponding to this subobject.
632   InitListExpr *StructuredSubobjectInitList
633     = getStructuredSubobjectInit(ParentIList, Index, T, StructuredList,
634                                  StructuredIndex,
635           SourceRange(ParentIList->getInit(Index)->getLocStart(),
636                       ParentIList->getSourceRange().getEnd()));
637   unsigned StructuredSubobjectInitIndex = 0;
638 
639   // Check the element types and build the structural subobject.
640   unsigned StartIndex = Index;
641   CheckListElementTypes(Entity, ParentIList, T,
642                         /*SubobjectIsDesignatorContext=*/false, Index,
643                         StructuredSubobjectInitList,
644                         StructuredSubobjectInitIndex);
645 
646   if (!VerifyOnly) {
647     StructuredSubobjectInitList->setType(T);
648 
649     unsigned EndIndex = (Index == StartIndex? StartIndex : Index - 1);
650     // Update the structured sub-object initializer so that it's ending
651     // range corresponds with the end of the last initializer it used.
652     if (EndIndex < ParentIList->getNumInits()) {
653       SourceLocation EndLoc
654         = ParentIList->getInit(EndIndex)->getSourceRange().getEnd();
655       StructuredSubobjectInitList->setRBraceLoc(EndLoc);
656     }
657 
658     // Complain about missing braces.
659     if (T->isArrayType() || T->isRecordType()) {
660       SemaRef.Diag(StructuredSubobjectInitList->getLocStart(),
661                    diag::warn_missing_braces)
662         << StructuredSubobjectInitList->getSourceRange()
663         << FixItHint::CreateInsertion(
664               StructuredSubobjectInitList->getLocStart(), "{")
665         << FixItHint::CreateInsertion(
666               SemaRef.PP.getLocForEndOfToken(
667                                       StructuredSubobjectInitList->getLocEnd()),
668               "}");
669     }
670   }
671 }
672 
673 void InitListChecker::CheckExplicitInitList(const InitializedEntity &Entity,
674                                             InitListExpr *IList, QualType &T,
675                                             unsigned &Index,
676                                             InitListExpr *StructuredList,
677                                             unsigned &StructuredIndex,
678                                             bool TopLevelObject) {
679   assert(IList->isExplicit() && "Illegal Implicit InitListExpr");
680   if (!VerifyOnly) {
681     SyntacticToSemantic[IList] = StructuredList;
682     StructuredList->setSyntacticForm(IList);
683   }
684   CheckListElementTypes(Entity, IList, T, /*SubobjectIsDesignatorContext=*/true,
685                         Index, StructuredList, StructuredIndex, TopLevelObject);
686   if (!VerifyOnly) {
687     QualType ExprTy = T;
688     if (!ExprTy->isArrayType())
689       ExprTy = ExprTy.getNonLValueExprType(SemaRef.Context);
690     IList->setType(ExprTy);
691     StructuredList->setType(ExprTy);
692   }
693   if (hadError)
694     return;
695 
696   if (Index < IList->getNumInits()) {
697     // We have leftover initializers
698     if (VerifyOnly) {
699       if (SemaRef.getLangOpts().CPlusPlus ||
700           (SemaRef.getLangOpts().OpenCL &&
701            IList->getType()->isVectorType())) {
702         hadError = true;
703       }
704       return;
705     }
706 
707     if (StructuredIndex == 1 &&
708         IsStringInit(StructuredList->getInit(0), T, SemaRef.Context) ==
709             SIF_None) {
710       unsigned DK = diag::warn_excess_initializers_in_char_array_initializer;
711       if (SemaRef.getLangOpts().CPlusPlus) {
712         DK = diag::err_excess_initializers_in_char_array_initializer;
713         hadError = true;
714       }
715       // Special-case
716       SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
717         << IList->getInit(Index)->getSourceRange();
718     } else if (!T->isIncompleteType()) {
719       // Don't complain for incomplete types, since we'll get an error
720       // elsewhere
721       QualType CurrentObjectType = StructuredList->getType();
722       int initKind =
723         CurrentObjectType->isArrayType()? 0 :
724         CurrentObjectType->isVectorType()? 1 :
725         CurrentObjectType->isScalarType()? 2 :
726         CurrentObjectType->isUnionType()? 3 :
727         4;
728 
729       unsigned DK = diag::warn_excess_initializers;
730       if (SemaRef.getLangOpts().CPlusPlus) {
731         DK = diag::err_excess_initializers;
732         hadError = true;
733       }
734       if (SemaRef.getLangOpts().OpenCL && initKind == 1) {
735         DK = diag::err_excess_initializers;
736         hadError = true;
737       }
738 
739       SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
740         << initKind << IList->getInit(Index)->getSourceRange();
741     }
742   }
743 
744   if (!VerifyOnly && T->isScalarType() && IList->getNumInits() == 1 &&
745       !TopLevelObject)
746     SemaRef.Diag(IList->getLocStart(), diag::warn_braces_around_scalar_init)
747       << IList->getSourceRange()
748       << FixItHint::CreateRemoval(IList->getLocStart())
749       << FixItHint::CreateRemoval(IList->getLocEnd());
750 }
751 
752 void InitListChecker::CheckListElementTypes(const InitializedEntity &Entity,
753                                             InitListExpr *IList,
754                                             QualType &DeclType,
755                                             bool SubobjectIsDesignatorContext,
756                                             unsigned &Index,
757                                             InitListExpr *StructuredList,
758                                             unsigned &StructuredIndex,
759                                             bool TopLevelObject) {
760   if (DeclType->isAnyComplexType() && SubobjectIsDesignatorContext) {
761     // Explicitly braced initializer for complex type can be real+imaginary
762     // parts.
763     CheckComplexType(Entity, IList, DeclType, Index,
764                      StructuredList, StructuredIndex);
765   } else if (DeclType->isScalarType()) {
766     CheckScalarType(Entity, IList, DeclType, Index,
767                     StructuredList, StructuredIndex);
768   } else if (DeclType->isVectorType()) {
769     CheckVectorType(Entity, IList, DeclType, Index,
770                     StructuredList, StructuredIndex);
771   } else if (DeclType->isRecordType()) {
772     assert(DeclType->isAggregateType() &&
773            "non-aggregate records should be handed in CheckSubElementType");
774     RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
775     CheckStructUnionTypes(Entity, IList, DeclType, RD->field_begin(),
776                           SubobjectIsDesignatorContext, Index,
777                           StructuredList, StructuredIndex,
778                           TopLevelObject);
779   } else if (DeclType->isArrayType()) {
780     llvm::APSInt Zero(
781                     SemaRef.Context.getTypeSize(SemaRef.Context.getSizeType()),
782                     false);
783     CheckArrayType(Entity, IList, DeclType, Zero,
784                    SubobjectIsDesignatorContext, Index,
785                    StructuredList, StructuredIndex);
786   } else if (DeclType->isVoidType() || DeclType->isFunctionType()) {
787     // This type is invalid, issue a diagnostic.
788     ++Index;
789     if (!VerifyOnly)
790       SemaRef.Diag(IList->getLocStart(), diag::err_illegal_initializer_type)
791         << DeclType;
792     hadError = true;
793   } else if (DeclType->isReferenceType()) {
794     CheckReferenceType(Entity, IList, DeclType, Index,
795                        StructuredList, StructuredIndex);
796   } else if (DeclType->isObjCObjectType()) {
797     if (!VerifyOnly)
798       SemaRef.Diag(IList->getLocStart(), diag::err_init_objc_class)
799         << DeclType;
800     hadError = true;
801   } else {
802     if (!VerifyOnly)
803       SemaRef.Diag(IList->getLocStart(), diag::err_illegal_initializer_type)
804         << DeclType;
805     hadError = true;
806   }
807 }
808 
809 void InitListChecker::CheckSubElementType(const InitializedEntity &Entity,
810                                           InitListExpr *IList,
811                                           QualType ElemType,
812                                           unsigned &Index,
813                                           InitListExpr *StructuredList,
814                                           unsigned &StructuredIndex) {
815   Expr *expr = IList->getInit(Index);
816 
817   if (ElemType->isReferenceType())
818     return CheckReferenceType(Entity, IList, ElemType, Index,
819                               StructuredList, StructuredIndex);
820 
821   if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
822     if (!ElemType->isRecordType() || ElemType->isAggregateType()) {
823       unsigned newIndex = 0;
824       unsigned newStructuredIndex = 0;
825       InitListExpr *newStructuredList
826         = getStructuredSubobjectInit(IList, Index, ElemType,
827                                      StructuredList, StructuredIndex,
828                                      SubInitList->getSourceRange());
829       CheckExplicitInitList(Entity, SubInitList, ElemType, newIndex,
830                             newStructuredList, newStructuredIndex);
831       ++StructuredIndex;
832       ++Index;
833       return;
834     }
835     assert(SemaRef.getLangOpts().CPlusPlus &&
836            "non-aggregate records are only possible in C++");
837     // C++ initialization is handled later.
838   }
839 
840   if (ElemType->isScalarType())
841     return CheckScalarType(Entity, IList, ElemType, Index,
842                            StructuredList, StructuredIndex);
843 
844   if (const ArrayType *arrayType = SemaRef.Context.getAsArrayType(ElemType)) {
845     // arrayType can be incomplete if we're initializing a flexible
846     // array member.  There's nothing we can do with the completed
847     // type here, though.
848 
849     if (IsStringInit(expr, arrayType, SemaRef.Context) == SIF_None) {
850       if (!VerifyOnly) {
851         CheckStringInit(expr, ElemType, arrayType, SemaRef);
852         UpdateStructuredListElement(StructuredList, StructuredIndex, expr);
853       }
854       ++Index;
855       return;
856     }
857 
858     // Fall through for subaggregate initialization.
859 
860   } else if (SemaRef.getLangOpts().CPlusPlus) {
861     // C++ [dcl.init.aggr]p12:
862     //   All implicit type conversions (clause 4) are considered when
863     //   initializing the aggregate member with an initializer from
864     //   an initializer-list. If the initializer can initialize a
865     //   member, the member is initialized. [...]
866 
867     // FIXME: Better EqualLoc?
868     InitializationKind Kind =
869       InitializationKind::CreateCopy(expr->getLocStart(), SourceLocation());
870     InitializationSequence Seq(SemaRef, Entity, Kind, expr);
871 
872     if (Seq) {
873       if (!VerifyOnly) {
874         ExprResult Result =
875           Seq.Perform(SemaRef, Entity, Kind, expr);
876         if (Result.isInvalid())
877           hadError = true;
878 
879         UpdateStructuredListElement(StructuredList, StructuredIndex,
880                                     Result.takeAs<Expr>());
881       }
882       ++Index;
883       return;
884     }
885 
886     // Fall through for subaggregate initialization
887   } else {
888     // C99 6.7.8p13:
889     //
890     //   The initializer for a structure or union object that has
891     //   automatic storage duration shall be either an initializer
892     //   list as described below, or a single expression that has
893     //   compatible structure or union type. In the latter case, the
894     //   initial value of the object, including unnamed members, is
895     //   that of the expression.
896     ExprResult ExprRes = SemaRef.Owned(expr);
897     if ((ElemType->isRecordType() || ElemType->isVectorType()) &&
898         SemaRef.CheckSingleAssignmentConstraints(ElemType, ExprRes,
899                                                  !VerifyOnly)
900           == Sema::Compatible) {
901       if (ExprRes.isInvalid())
902         hadError = true;
903       else {
904         ExprRes = SemaRef.DefaultFunctionArrayLvalueConversion(ExprRes.take());
905           if (ExprRes.isInvalid())
906             hadError = true;
907       }
908       UpdateStructuredListElement(StructuredList, StructuredIndex,
909                                   ExprRes.takeAs<Expr>());
910       ++Index;
911       return;
912     }
913     ExprRes.release();
914     // Fall through for subaggregate initialization
915   }
916 
917   // C++ [dcl.init.aggr]p12:
918   //
919   //   [...] Otherwise, if the member is itself a non-empty
920   //   subaggregate, brace elision is assumed and the initializer is
921   //   considered for the initialization of the first member of
922   //   the subaggregate.
923   if (!SemaRef.getLangOpts().OpenCL &&
924       (ElemType->isAggregateType() || ElemType->isVectorType())) {
925     CheckImplicitInitList(Entity, IList, ElemType, Index, StructuredList,
926                           StructuredIndex);
927     ++StructuredIndex;
928   } else {
929     if (!VerifyOnly) {
930       // We cannot initialize this element, so let
931       // PerformCopyInitialization produce the appropriate diagnostic.
932       SemaRef.PerformCopyInitialization(Entity, SourceLocation(),
933                                         SemaRef.Owned(expr),
934                                         /*TopLevelOfInitList=*/true);
935     }
936     hadError = true;
937     ++Index;
938     ++StructuredIndex;
939   }
940 }
941 
942 void InitListChecker::CheckComplexType(const InitializedEntity &Entity,
943                                        InitListExpr *IList, QualType DeclType,
944                                        unsigned &Index,
945                                        InitListExpr *StructuredList,
946                                        unsigned &StructuredIndex) {
947   assert(Index == 0 && "Index in explicit init list must be zero");
948 
949   // As an extension, clang supports complex initializers, which initialize
950   // a complex number component-wise.  When an explicit initializer list for
951   // a complex number contains two two initializers, this extension kicks in:
952   // it exepcts the initializer list to contain two elements convertible to
953   // the element type of the complex type. The first element initializes
954   // the real part, and the second element intitializes the imaginary part.
955 
956   if (IList->getNumInits() != 2)
957     return CheckScalarType(Entity, IList, DeclType, Index, StructuredList,
958                            StructuredIndex);
959 
960   // This is an extension in C.  (The builtin _Complex type does not exist
961   // in the C++ standard.)
962   if (!SemaRef.getLangOpts().CPlusPlus && !VerifyOnly)
963     SemaRef.Diag(IList->getLocStart(), diag::ext_complex_component_init)
964       << IList->getSourceRange();
965 
966   // Initialize the complex number.
967   QualType elementType = DeclType->getAs<ComplexType>()->getElementType();
968   InitializedEntity ElementEntity =
969     InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
970 
971   for (unsigned i = 0; i < 2; ++i) {
972     ElementEntity.setElementIndex(Index);
973     CheckSubElementType(ElementEntity, IList, elementType, Index,
974                         StructuredList, StructuredIndex);
975   }
976 }
977 
978 
979 void InitListChecker::CheckScalarType(const InitializedEntity &Entity,
980                                       InitListExpr *IList, QualType DeclType,
981                                       unsigned &Index,
982                                       InitListExpr *StructuredList,
983                                       unsigned &StructuredIndex) {
984   if (Index >= IList->getNumInits()) {
985     if (!VerifyOnly)
986       SemaRef.Diag(IList->getLocStart(),
987                    SemaRef.getLangOpts().CPlusPlus11 ?
988                      diag::warn_cxx98_compat_empty_scalar_initializer :
989                      diag::err_empty_scalar_initializer)
990         << IList->getSourceRange();
991     hadError = !SemaRef.getLangOpts().CPlusPlus11;
992     ++Index;
993     ++StructuredIndex;
994     return;
995   }
996 
997   Expr *expr = IList->getInit(Index);
998   if (InitListExpr *SubIList = dyn_cast<InitListExpr>(expr)) {
999     if (!VerifyOnly)
1000       SemaRef.Diag(SubIList->getLocStart(),
1001                    diag::warn_many_braces_around_scalar_init)
1002         << SubIList->getSourceRange();
1003 
1004     CheckScalarType(Entity, SubIList, DeclType, Index, StructuredList,
1005                     StructuredIndex);
1006     return;
1007   } else if (isa<DesignatedInitExpr>(expr)) {
1008     if (!VerifyOnly)
1009       SemaRef.Diag(expr->getLocStart(),
1010                    diag::err_designator_for_scalar_init)
1011         << DeclType << expr->getSourceRange();
1012     hadError = true;
1013     ++Index;
1014     ++StructuredIndex;
1015     return;
1016   }
1017 
1018   if (VerifyOnly) {
1019     if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(expr)))
1020       hadError = true;
1021     ++Index;
1022     return;
1023   }
1024 
1025   ExprResult Result =
1026     SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(),
1027                                       SemaRef.Owned(expr),
1028                                       /*TopLevelOfInitList=*/true);
1029 
1030   Expr *ResultExpr = 0;
1031 
1032   if (Result.isInvalid())
1033     hadError = true; // types weren't compatible.
1034   else {
1035     ResultExpr = Result.takeAs<Expr>();
1036 
1037     if (ResultExpr != expr) {
1038       // The type was promoted, update initializer list.
1039       IList->setInit(Index, ResultExpr);
1040     }
1041   }
1042   if (hadError)
1043     ++StructuredIndex;
1044   else
1045     UpdateStructuredListElement(StructuredList, StructuredIndex, ResultExpr);
1046   ++Index;
1047 }
1048 
1049 void InitListChecker::CheckReferenceType(const InitializedEntity &Entity,
1050                                          InitListExpr *IList, QualType DeclType,
1051                                          unsigned &Index,
1052                                          InitListExpr *StructuredList,
1053                                          unsigned &StructuredIndex) {
1054   if (Index >= IList->getNumInits()) {
1055     // FIXME: It would be wonderful if we could point at the actual member. In
1056     // general, it would be useful to pass location information down the stack,
1057     // so that we know the location (or decl) of the "current object" being
1058     // initialized.
1059     if (!VerifyOnly)
1060       SemaRef.Diag(IList->getLocStart(),
1061                     diag::err_init_reference_member_uninitialized)
1062         << DeclType
1063         << IList->getSourceRange();
1064     hadError = true;
1065     ++Index;
1066     ++StructuredIndex;
1067     return;
1068   }
1069 
1070   Expr *expr = IList->getInit(Index);
1071   if (isa<InitListExpr>(expr) && !SemaRef.getLangOpts().CPlusPlus11) {
1072     if (!VerifyOnly)
1073       SemaRef.Diag(IList->getLocStart(), diag::err_init_non_aggr_init_list)
1074         << DeclType << IList->getSourceRange();
1075     hadError = true;
1076     ++Index;
1077     ++StructuredIndex;
1078     return;
1079   }
1080 
1081   if (VerifyOnly) {
1082     if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(expr)))
1083       hadError = true;
1084     ++Index;
1085     return;
1086   }
1087 
1088   ExprResult Result =
1089     SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(),
1090                                       SemaRef.Owned(expr),
1091                                       /*TopLevelOfInitList=*/true);
1092 
1093   if (Result.isInvalid())
1094     hadError = true;
1095 
1096   expr = Result.takeAs<Expr>();
1097   IList->setInit(Index, expr);
1098 
1099   if (hadError)
1100     ++StructuredIndex;
1101   else
1102     UpdateStructuredListElement(StructuredList, StructuredIndex, expr);
1103   ++Index;
1104 }
1105 
1106 void InitListChecker::CheckVectorType(const InitializedEntity &Entity,
1107                                       InitListExpr *IList, QualType DeclType,
1108                                       unsigned &Index,
1109                                       InitListExpr *StructuredList,
1110                                       unsigned &StructuredIndex) {
1111   const VectorType *VT = DeclType->getAs<VectorType>();
1112   unsigned maxElements = VT->getNumElements();
1113   unsigned numEltsInit = 0;
1114   QualType elementType = VT->getElementType();
1115 
1116   if (Index >= IList->getNumInits()) {
1117     // Make sure the element type can be value-initialized.
1118     if (VerifyOnly)
1119       CheckValueInitializable(
1120           InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity));
1121     return;
1122   }
1123 
1124   if (!SemaRef.getLangOpts().OpenCL) {
1125     // If the initializing element is a vector, try to copy-initialize
1126     // instead of breaking it apart (which is doomed to failure anyway).
1127     Expr *Init = IList->getInit(Index);
1128     if (!isa<InitListExpr>(Init) && Init->getType()->isVectorType()) {
1129       if (VerifyOnly) {
1130         if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(Init)))
1131           hadError = true;
1132         ++Index;
1133         return;
1134       }
1135 
1136       ExprResult Result =
1137         SemaRef.PerformCopyInitialization(Entity, Init->getLocStart(),
1138                                           SemaRef.Owned(Init),
1139                                           /*TopLevelOfInitList=*/true);
1140 
1141       Expr *ResultExpr = 0;
1142       if (Result.isInvalid())
1143         hadError = true; // types weren't compatible.
1144       else {
1145         ResultExpr = Result.takeAs<Expr>();
1146 
1147         if (ResultExpr != Init) {
1148           // The type was promoted, update initializer list.
1149           IList->setInit(Index, ResultExpr);
1150         }
1151       }
1152       if (hadError)
1153         ++StructuredIndex;
1154       else
1155         UpdateStructuredListElement(StructuredList, StructuredIndex,
1156                                     ResultExpr);
1157       ++Index;
1158       return;
1159     }
1160 
1161     InitializedEntity ElementEntity =
1162       InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
1163 
1164     for (unsigned i = 0; i < maxElements; ++i, ++numEltsInit) {
1165       // Don't attempt to go past the end of the init list
1166       if (Index >= IList->getNumInits()) {
1167         if (VerifyOnly)
1168           CheckValueInitializable(ElementEntity);
1169         break;
1170       }
1171 
1172       ElementEntity.setElementIndex(Index);
1173       CheckSubElementType(ElementEntity, IList, elementType, Index,
1174                           StructuredList, StructuredIndex);
1175     }
1176     return;
1177   }
1178 
1179   InitializedEntity ElementEntity =
1180     InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
1181 
1182   // OpenCL initializers allows vectors to be constructed from vectors.
1183   for (unsigned i = 0; i < maxElements; ++i) {
1184     // Don't attempt to go past the end of the init list
1185     if (Index >= IList->getNumInits())
1186       break;
1187 
1188     ElementEntity.setElementIndex(Index);
1189 
1190     QualType IType = IList->getInit(Index)->getType();
1191     if (!IType->isVectorType()) {
1192       CheckSubElementType(ElementEntity, IList, elementType, Index,
1193                           StructuredList, StructuredIndex);
1194       ++numEltsInit;
1195     } else {
1196       QualType VecType;
1197       const VectorType *IVT = IType->getAs<VectorType>();
1198       unsigned numIElts = IVT->getNumElements();
1199 
1200       if (IType->isExtVectorType())
1201         VecType = SemaRef.Context.getExtVectorType(elementType, numIElts);
1202       else
1203         VecType = SemaRef.Context.getVectorType(elementType, numIElts,
1204                                                 IVT->getVectorKind());
1205       CheckSubElementType(ElementEntity, IList, VecType, Index,
1206                           StructuredList, StructuredIndex);
1207       numEltsInit += numIElts;
1208     }
1209   }
1210 
1211   // OpenCL requires all elements to be initialized.
1212   if (numEltsInit != maxElements) {
1213     if (!VerifyOnly)
1214       SemaRef.Diag(IList->getLocStart(),
1215                    diag::err_vector_incorrect_num_initializers)
1216         << (numEltsInit < maxElements) << maxElements << numEltsInit;
1217     hadError = true;
1218   }
1219 }
1220 
1221 void InitListChecker::CheckArrayType(const InitializedEntity &Entity,
1222                                      InitListExpr *IList, QualType &DeclType,
1223                                      llvm::APSInt elementIndex,
1224                                      bool SubobjectIsDesignatorContext,
1225                                      unsigned &Index,
1226                                      InitListExpr *StructuredList,
1227                                      unsigned &StructuredIndex) {
1228   const ArrayType *arrayType = SemaRef.Context.getAsArrayType(DeclType);
1229 
1230   // Check for the special-case of initializing an array with a string.
1231   if (Index < IList->getNumInits()) {
1232     if (IsStringInit(IList->getInit(Index), arrayType, SemaRef.Context) ==
1233         SIF_None) {
1234       // We place the string literal directly into the resulting
1235       // initializer list. This is the only place where the structure
1236       // of the structured initializer list doesn't match exactly,
1237       // because doing so would involve allocating one character
1238       // constant for each string.
1239       if (!VerifyOnly) {
1240         CheckStringInit(IList->getInit(Index), DeclType, arrayType, SemaRef);
1241         UpdateStructuredListElement(StructuredList, StructuredIndex,
1242                                     IList->getInit(Index));
1243         StructuredList->resizeInits(SemaRef.Context, StructuredIndex);
1244       }
1245       ++Index;
1246       return;
1247     }
1248   }
1249   if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(arrayType)) {
1250     // Check for VLAs; in standard C it would be possible to check this
1251     // earlier, but I don't know where clang accepts VLAs (gcc accepts
1252     // them in all sorts of strange places).
1253     if (!VerifyOnly)
1254       SemaRef.Diag(VAT->getSizeExpr()->getLocStart(),
1255                     diag::err_variable_object_no_init)
1256         << VAT->getSizeExpr()->getSourceRange();
1257     hadError = true;
1258     ++Index;
1259     ++StructuredIndex;
1260     return;
1261   }
1262 
1263   // We might know the maximum number of elements in advance.
1264   llvm::APSInt maxElements(elementIndex.getBitWidth(),
1265                            elementIndex.isUnsigned());
1266   bool maxElementsKnown = false;
1267   if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(arrayType)) {
1268     maxElements = CAT->getSize();
1269     elementIndex = elementIndex.extOrTrunc(maxElements.getBitWidth());
1270     elementIndex.setIsUnsigned(maxElements.isUnsigned());
1271     maxElementsKnown = true;
1272   }
1273 
1274   QualType elementType = arrayType->getElementType();
1275   while (Index < IList->getNumInits()) {
1276     Expr *Init = IList->getInit(Index);
1277     if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) {
1278       // If we're not the subobject that matches up with the '{' for
1279       // the designator, we shouldn't be handling the
1280       // designator. Return immediately.
1281       if (!SubobjectIsDesignatorContext)
1282         return;
1283 
1284       // Handle this designated initializer. elementIndex will be
1285       // updated to be the next array element we'll initialize.
1286       if (CheckDesignatedInitializer(Entity, IList, DIE, 0,
1287                                      DeclType, 0, &elementIndex, Index,
1288                                      StructuredList, StructuredIndex, true,
1289                                      false)) {
1290         hadError = true;
1291         continue;
1292       }
1293 
1294       if (elementIndex.getBitWidth() > maxElements.getBitWidth())
1295         maxElements = maxElements.extend(elementIndex.getBitWidth());
1296       else if (elementIndex.getBitWidth() < maxElements.getBitWidth())
1297         elementIndex = elementIndex.extend(maxElements.getBitWidth());
1298       elementIndex.setIsUnsigned(maxElements.isUnsigned());
1299 
1300       // If the array is of incomplete type, keep track of the number of
1301       // elements in the initializer.
1302       if (!maxElementsKnown && elementIndex > maxElements)
1303         maxElements = elementIndex;
1304 
1305       continue;
1306     }
1307 
1308     // If we know the maximum number of elements, and we've already
1309     // hit it, stop consuming elements in the initializer list.
1310     if (maxElementsKnown && elementIndex == maxElements)
1311       break;
1312 
1313     InitializedEntity ElementEntity =
1314       InitializedEntity::InitializeElement(SemaRef.Context, StructuredIndex,
1315                                            Entity);
1316     // Check this element.
1317     CheckSubElementType(ElementEntity, IList, elementType, Index,
1318                         StructuredList, StructuredIndex);
1319     ++elementIndex;
1320 
1321     // If the array is of incomplete type, keep track of the number of
1322     // elements in the initializer.
1323     if (!maxElementsKnown && elementIndex > maxElements)
1324       maxElements = elementIndex;
1325   }
1326   if (!hadError && DeclType->isIncompleteArrayType() && !VerifyOnly) {
1327     // If this is an incomplete array type, the actual type needs to
1328     // be calculated here.
1329     llvm::APSInt Zero(maxElements.getBitWidth(), maxElements.isUnsigned());
1330     if (maxElements == Zero) {
1331       // Sizing an array implicitly to zero is not allowed by ISO C,
1332       // but is supported by GNU.
1333       SemaRef.Diag(IList->getLocStart(),
1334                     diag::ext_typecheck_zero_array_size);
1335     }
1336 
1337     DeclType = SemaRef.Context.getConstantArrayType(elementType, maxElements,
1338                                                      ArrayType::Normal, 0);
1339   }
1340   if (!hadError && VerifyOnly) {
1341     // Check if there are any members of the array that get value-initialized.
1342     // If so, check if doing that is possible.
1343     // FIXME: This needs to detect holes left by designated initializers too.
1344     if (maxElementsKnown && elementIndex < maxElements)
1345       CheckValueInitializable(InitializedEntity::InitializeElement(
1346                                                   SemaRef.Context, 0, Entity));
1347   }
1348 }
1349 
1350 bool InitListChecker::CheckFlexibleArrayInit(const InitializedEntity &Entity,
1351                                              Expr *InitExpr,
1352                                              FieldDecl *Field,
1353                                              bool TopLevelObject) {
1354   // Handle GNU flexible array initializers.
1355   unsigned FlexArrayDiag;
1356   if (isa<InitListExpr>(InitExpr) &&
1357       cast<InitListExpr>(InitExpr)->getNumInits() == 0) {
1358     // Empty flexible array init always allowed as an extension
1359     FlexArrayDiag = diag::ext_flexible_array_init;
1360   } else if (SemaRef.getLangOpts().CPlusPlus) {
1361     // Disallow flexible array init in C++; it is not required for gcc
1362     // compatibility, and it needs work to IRGen correctly in general.
1363     FlexArrayDiag = diag::err_flexible_array_init;
1364   } else if (!TopLevelObject) {
1365     // Disallow flexible array init on non-top-level object
1366     FlexArrayDiag = diag::err_flexible_array_init;
1367   } else if (Entity.getKind() != InitializedEntity::EK_Variable) {
1368     // Disallow flexible array init on anything which is not a variable.
1369     FlexArrayDiag = diag::err_flexible_array_init;
1370   } else if (cast<VarDecl>(Entity.getDecl())->hasLocalStorage()) {
1371     // Disallow flexible array init on local variables.
1372     FlexArrayDiag = diag::err_flexible_array_init;
1373   } else {
1374     // Allow other cases.
1375     FlexArrayDiag = diag::ext_flexible_array_init;
1376   }
1377 
1378   if (!VerifyOnly) {
1379     SemaRef.Diag(InitExpr->getLocStart(),
1380                  FlexArrayDiag)
1381       << InitExpr->getLocStart();
1382     SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
1383       << Field;
1384   }
1385 
1386   return FlexArrayDiag != diag::ext_flexible_array_init;
1387 }
1388 
1389 void InitListChecker::CheckStructUnionTypes(const InitializedEntity &Entity,
1390                                             InitListExpr *IList,
1391                                             QualType DeclType,
1392                                             RecordDecl::field_iterator Field,
1393                                             bool SubobjectIsDesignatorContext,
1394                                             unsigned &Index,
1395                                             InitListExpr *StructuredList,
1396                                             unsigned &StructuredIndex,
1397                                             bool TopLevelObject) {
1398   RecordDecl* structDecl = DeclType->getAs<RecordType>()->getDecl();
1399 
1400   // If the record is invalid, some of it's members are invalid. To avoid
1401   // confusion, we forgo checking the intializer for the entire record.
1402   if (structDecl->isInvalidDecl()) {
1403     // Assume it was supposed to consume a single initializer.
1404     ++Index;
1405     hadError = true;
1406     return;
1407   }
1408 
1409   if (DeclType->isUnionType() && IList->getNumInits() == 0) {
1410     RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
1411 
1412     // If there's a default initializer, use it.
1413     if (isa<CXXRecordDecl>(RD) && cast<CXXRecordDecl>(RD)->hasInClassInitializer()) {
1414       if (VerifyOnly)
1415         return;
1416       for (RecordDecl::field_iterator FieldEnd = RD->field_end();
1417            Field != FieldEnd; ++Field) {
1418         if (Field->hasInClassInitializer()) {
1419           StructuredList->setInitializedFieldInUnion(*Field);
1420           // FIXME: Actually build a CXXDefaultInitExpr?
1421           return;
1422         }
1423       }
1424     }
1425 
1426     // Value-initialize the first named member of the union.
1427     for (RecordDecl::field_iterator FieldEnd = RD->field_end();
1428          Field != FieldEnd; ++Field) {
1429       if (Field->getDeclName()) {
1430         if (VerifyOnly)
1431           CheckValueInitializable(
1432               InitializedEntity::InitializeMember(*Field, &Entity));
1433         else
1434           StructuredList->setInitializedFieldInUnion(*Field);
1435         break;
1436       }
1437     }
1438     return;
1439   }
1440 
1441   // If structDecl is a forward declaration, this loop won't do
1442   // anything except look at designated initializers; That's okay,
1443   // because an error should get printed out elsewhere. It might be
1444   // worthwhile to skip over the rest of the initializer, though.
1445   RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
1446   RecordDecl::field_iterator FieldEnd = RD->field_end();
1447   bool InitializedSomething = false;
1448   bool CheckForMissingFields = true;
1449   while (Index < IList->getNumInits()) {
1450     Expr *Init = IList->getInit(Index);
1451 
1452     if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) {
1453       // If we're not the subobject that matches up with the '{' for
1454       // the designator, we shouldn't be handling the
1455       // designator. Return immediately.
1456       if (!SubobjectIsDesignatorContext)
1457         return;
1458 
1459       // Handle this designated initializer. Field will be updated to
1460       // the next field that we'll be initializing.
1461       if (CheckDesignatedInitializer(Entity, IList, DIE, 0,
1462                                      DeclType, &Field, 0, Index,
1463                                      StructuredList, StructuredIndex,
1464                                      true, TopLevelObject))
1465         hadError = true;
1466 
1467       InitializedSomething = true;
1468 
1469       // Disable check for missing fields when designators are used.
1470       // This matches gcc behaviour.
1471       CheckForMissingFields = false;
1472       continue;
1473     }
1474 
1475     if (Field == FieldEnd) {
1476       // We've run out of fields. We're done.
1477       break;
1478     }
1479 
1480     // We've already initialized a member of a union. We're done.
1481     if (InitializedSomething && DeclType->isUnionType())
1482       break;
1483 
1484     // If we've hit the flexible array member at the end, we're done.
1485     if (Field->getType()->isIncompleteArrayType())
1486       break;
1487 
1488     if (Field->isUnnamedBitfield()) {
1489       // Don't initialize unnamed bitfields, e.g. "int : 20;"
1490       ++Field;
1491       continue;
1492     }
1493 
1494     // Make sure we can use this declaration.
1495     bool InvalidUse;
1496     if (VerifyOnly)
1497       InvalidUse = !SemaRef.CanUseDecl(*Field);
1498     else
1499       InvalidUse = SemaRef.DiagnoseUseOfDecl(*Field,
1500                                           IList->getInit(Index)->getLocStart());
1501     if (InvalidUse) {
1502       ++Index;
1503       ++Field;
1504       hadError = true;
1505       continue;
1506     }
1507 
1508     InitializedEntity MemberEntity =
1509       InitializedEntity::InitializeMember(*Field, &Entity);
1510     CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
1511                         StructuredList, StructuredIndex);
1512     InitializedSomething = true;
1513 
1514     if (DeclType->isUnionType() && !VerifyOnly) {
1515       // Initialize the first field within the union.
1516       StructuredList->setInitializedFieldInUnion(*Field);
1517     }
1518 
1519     ++Field;
1520   }
1521 
1522   // Emit warnings for missing struct field initializers.
1523   if (!VerifyOnly && InitializedSomething && CheckForMissingFields &&
1524       Field != FieldEnd && !Field->getType()->isIncompleteArrayType() &&
1525       !DeclType->isUnionType()) {
1526     // It is possible we have one or more unnamed bitfields remaining.
1527     // Find first (if any) named field and emit warning.
1528     for (RecordDecl::field_iterator it = Field, end = RD->field_end();
1529          it != end; ++it) {
1530       if (!it->isUnnamedBitfield() && !it->hasInClassInitializer()) {
1531         SemaRef.Diag(IList->getSourceRange().getEnd(),
1532                      diag::warn_missing_field_initializers) << it->getName();
1533         break;
1534       }
1535     }
1536   }
1537 
1538   // Check that any remaining fields can be value-initialized.
1539   if (VerifyOnly && Field != FieldEnd && !DeclType->isUnionType() &&
1540       !Field->getType()->isIncompleteArrayType()) {
1541     // FIXME: Should check for holes left by designated initializers too.
1542     for (; Field != FieldEnd && !hadError; ++Field) {
1543       if (!Field->isUnnamedBitfield() && !Field->hasInClassInitializer())
1544         CheckValueInitializable(
1545             InitializedEntity::InitializeMember(*Field, &Entity));
1546     }
1547   }
1548 
1549   if (Field == FieldEnd || !Field->getType()->isIncompleteArrayType() ||
1550       Index >= IList->getNumInits())
1551     return;
1552 
1553   if (CheckFlexibleArrayInit(Entity, IList->getInit(Index), *Field,
1554                              TopLevelObject)) {
1555     hadError = true;
1556     ++Index;
1557     return;
1558   }
1559 
1560   InitializedEntity MemberEntity =
1561     InitializedEntity::InitializeMember(*Field, &Entity);
1562 
1563   if (isa<InitListExpr>(IList->getInit(Index)))
1564     CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
1565                         StructuredList, StructuredIndex);
1566   else
1567     CheckImplicitInitList(MemberEntity, IList, Field->getType(), Index,
1568                           StructuredList, StructuredIndex);
1569 }
1570 
1571 /// \brief Expand a field designator that refers to a member of an
1572 /// anonymous struct or union into a series of field designators that
1573 /// refers to the field within the appropriate subobject.
1574 ///
1575 static void ExpandAnonymousFieldDesignator(Sema &SemaRef,
1576                                            DesignatedInitExpr *DIE,
1577                                            unsigned DesigIdx,
1578                                            IndirectFieldDecl *IndirectField) {
1579   typedef DesignatedInitExpr::Designator Designator;
1580 
1581   // Build the replacement designators.
1582   SmallVector<Designator, 4> Replacements;
1583   for (IndirectFieldDecl::chain_iterator PI = IndirectField->chain_begin(),
1584        PE = IndirectField->chain_end(); PI != PE; ++PI) {
1585     if (PI + 1 == PE)
1586       Replacements.push_back(Designator((IdentifierInfo *)0,
1587                                     DIE->getDesignator(DesigIdx)->getDotLoc(),
1588                                 DIE->getDesignator(DesigIdx)->getFieldLoc()));
1589     else
1590       Replacements.push_back(Designator((IdentifierInfo *)0, SourceLocation(),
1591                                         SourceLocation()));
1592     assert(isa<FieldDecl>(*PI));
1593     Replacements.back().setField(cast<FieldDecl>(*PI));
1594   }
1595 
1596   // Expand the current designator into the set of replacement
1597   // designators, so we have a full subobject path down to where the
1598   // member of the anonymous struct/union is actually stored.
1599   DIE->ExpandDesignator(SemaRef.Context, DesigIdx, &Replacements[0],
1600                         &Replacements[0] + Replacements.size());
1601 }
1602 
1603 /// \brief Given an implicit anonymous field, search the IndirectField that
1604 ///  corresponds to FieldName.
1605 static IndirectFieldDecl *FindIndirectFieldDesignator(FieldDecl *AnonField,
1606                                                  IdentifierInfo *FieldName) {
1607   if (!FieldName)
1608     return 0;
1609 
1610   assert(AnonField->isAnonymousStructOrUnion());
1611   Decl *NextDecl = AnonField->getNextDeclInContext();
1612   while (IndirectFieldDecl *IF =
1613           dyn_cast_or_null<IndirectFieldDecl>(NextDecl)) {
1614     if (FieldName == IF->getAnonField()->getIdentifier())
1615       return IF;
1616     NextDecl = NextDecl->getNextDeclInContext();
1617   }
1618   return 0;
1619 }
1620 
1621 static DesignatedInitExpr *CloneDesignatedInitExpr(Sema &SemaRef,
1622                                                    DesignatedInitExpr *DIE) {
1623   unsigned NumIndexExprs = DIE->getNumSubExprs() - 1;
1624   SmallVector<Expr*, 4> IndexExprs(NumIndexExprs);
1625   for (unsigned I = 0; I < NumIndexExprs; ++I)
1626     IndexExprs[I] = DIE->getSubExpr(I + 1);
1627   return DesignatedInitExpr::Create(SemaRef.Context, DIE->designators_begin(),
1628                                     DIE->size(), IndexExprs,
1629                                     DIE->getEqualOrColonLoc(),
1630                                     DIE->usesGNUSyntax(), DIE->getInit());
1631 }
1632 
1633 namespace {
1634 
1635 // Callback to only accept typo corrections that are for field members of
1636 // the given struct or union.
1637 class FieldInitializerValidatorCCC : public CorrectionCandidateCallback {
1638  public:
1639   explicit FieldInitializerValidatorCCC(RecordDecl *RD)
1640       : Record(RD) {}
1641 
1642   virtual bool ValidateCandidate(const TypoCorrection &candidate) {
1643     FieldDecl *FD = candidate.getCorrectionDeclAs<FieldDecl>();
1644     return FD && FD->getDeclContext()->getRedeclContext()->Equals(Record);
1645   }
1646 
1647  private:
1648   RecordDecl *Record;
1649 };
1650 
1651 }
1652 
1653 /// @brief Check the well-formedness of a C99 designated initializer.
1654 ///
1655 /// Determines whether the designated initializer @p DIE, which
1656 /// resides at the given @p Index within the initializer list @p
1657 /// IList, is well-formed for a current object of type @p DeclType
1658 /// (C99 6.7.8). The actual subobject that this designator refers to
1659 /// within the current subobject is returned in either
1660 /// @p NextField or @p NextElementIndex (whichever is appropriate).
1661 ///
1662 /// @param IList  The initializer list in which this designated
1663 /// initializer occurs.
1664 ///
1665 /// @param DIE The designated initializer expression.
1666 ///
1667 /// @param DesigIdx  The index of the current designator.
1668 ///
1669 /// @param CurrentObjectType The type of the "current object" (C99 6.7.8p17),
1670 /// into which the designation in @p DIE should refer.
1671 ///
1672 /// @param NextField  If non-NULL and the first designator in @p DIE is
1673 /// a field, this will be set to the field declaration corresponding
1674 /// to the field named by the designator.
1675 ///
1676 /// @param NextElementIndex  If non-NULL and the first designator in @p
1677 /// DIE is an array designator or GNU array-range designator, this
1678 /// will be set to the last index initialized by this designator.
1679 ///
1680 /// @param Index  Index into @p IList where the designated initializer
1681 /// @p DIE occurs.
1682 ///
1683 /// @param StructuredList  The initializer list expression that
1684 /// describes all of the subobject initializers in the order they'll
1685 /// actually be initialized.
1686 ///
1687 /// @returns true if there was an error, false otherwise.
1688 bool
1689 InitListChecker::CheckDesignatedInitializer(const InitializedEntity &Entity,
1690                                             InitListExpr *IList,
1691                                             DesignatedInitExpr *DIE,
1692                                             unsigned DesigIdx,
1693                                             QualType &CurrentObjectType,
1694                                           RecordDecl::field_iterator *NextField,
1695                                             llvm::APSInt *NextElementIndex,
1696                                             unsigned &Index,
1697                                             InitListExpr *StructuredList,
1698                                             unsigned &StructuredIndex,
1699                                             bool FinishSubobjectInit,
1700                                             bool TopLevelObject) {
1701   if (DesigIdx == DIE->size()) {
1702     // Check the actual initialization for the designated object type.
1703     bool prevHadError = hadError;
1704 
1705     // Temporarily remove the designator expression from the
1706     // initializer list that the child calls see, so that we don't try
1707     // to re-process the designator.
1708     unsigned OldIndex = Index;
1709     IList->setInit(OldIndex, DIE->getInit());
1710 
1711     CheckSubElementType(Entity, IList, CurrentObjectType, Index,
1712                         StructuredList, StructuredIndex);
1713 
1714     // Restore the designated initializer expression in the syntactic
1715     // form of the initializer list.
1716     if (IList->getInit(OldIndex) != DIE->getInit())
1717       DIE->setInit(IList->getInit(OldIndex));
1718     IList->setInit(OldIndex, DIE);
1719 
1720     return hadError && !prevHadError;
1721   }
1722 
1723   DesignatedInitExpr::Designator *D = DIE->getDesignator(DesigIdx);
1724   bool IsFirstDesignator = (DesigIdx == 0);
1725   if (!VerifyOnly) {
1726     assert((IsFirstDesignator || StructuredList) &&
1727            "Need a non-designated initializer list to start from");
1728 
1729     // Determine the structural initializer list that corresponds to the
1730     // current subobject.
1731     StructuredList = IsFirstDesignator? SyntacticToSemantic.lookup(IList)
1732       : getStructuredSubobjectInit(IList, Index, CurrentObjectType,
1733                                    StructuredList, StructuredIndex,
1734                                    SourceRange(D->getLocStart(),
1735                                                DIE->getLocEnd()));
1736     assert(StructuredList && "Expected a structured initializer list");
1737   }
1738 
1739   if (D->isFieldDesignator()) {
1740     // C99 6.7.8p7:
1741     //
1742     //   If a designator has the form
1743     //
1744     //      . identifier
1745     //
1746     //   then the current object (defined below) shall have
1747     //   structure or union type and the identifier shall be the
1748     //   name of a member of that type.
1749     const RecordType *RT = CurrentObjectType->getAs<RecordType>();
1750     if (!RT) {
1751       SourceLocation Loc = D->getDotLoc();
1752       if (Loc.isInvalid())
1753         Loc = D->getFieldLoc();
1754       if (!VerifyOnly)
1755         SemaRef.Diag(Loc, diag::err_field_designator_non_aggr)
1756           << SemaRef.getLangOpts().CPlusPlus << CurrentObjectType;
1757       ++Index;
1758       return true;
1759     }
1760 
1761     // Note: we perform a linear search of the fields here, despite
1762     // the fact that we have a faster lookup method, because we always
1763     // need to compute the field's index.
1764     FieldDecl *KnownField = D->getField();
1765     IdentifierInfo *FieldName = D->getFieldName();
1766     unsigned FieldIndex = 0;
1767     RecordDecl::field_iterator
1768       Field = RT->getDecl()->field_begin(),
1769       FieldEnd = RT->getDecl()->field_end();
1770     for (; Field != FieldEnd; ++Field) {
1771       if (Field->isUnnamedBitfield())
1772         continue;
1773 
1774       // If we find a field representing an anonymous field, look in the
1775       // IndirectFieldDecl that follow for the designated initializer.
1776       if (!KnownField && Field->isAnonymousStructOrUnion()) {
1777         if (IndirectFieldDecl *IF =
1778             FindIndirectFieldDesignator(*Field, FieldName)) {
1779           // In verify mode, don't modify the original.
1780           if (VerifyOnly)
1781             DIE = CloneDesignatedInitExpr(SemaRef, DIE);
1782           ExpandAnonymousFieldDesignator(SemaRef, DIE, DesigIdx, IF);
1783           D = DIE->getDesignator(DesigIdx);
1784           break;
1785         }
1786       }
1787       if (KnownField && KnownField == *Field)
1788         break;
1789       if (FieldName && FieldName == Field->getIdentifier())
1790         break;
1791 
1792       ++FieldIndex;
1793     }
1794 
1795     if (Field == FieldEnd) {
1796       if (VerifyOnly) {
1797         ++Index;
1798         return true; // No typo correction when just trying this out.
1799       }
1800 
1801       // There was no normal field in the struct with the designated
1802       // name. Perform another lookup for this name, which may find
1803       // something that we can't designate (e.g., a member function),
1804       // may find nothing, or may find a member of an anonymous
1805       // struct/union.
1806       DeclContext::lookup_result Lookup = RT->getDecl()->lookup(FieldName);
1807       FieldDecl *ReplacementField = 0;
1808       if (Lookup.empty()) {
1809         // Name lookup didn't find anything. Determine whether this
1810         // was a typo for another field name.
1811         FieldInitializerValidatorCCC Validator(RT->getDecl());
1812         TypoCorrection Corrected = SemaRef.CorrectTypo(
1813             DeclarationNameInfo(FieldName, D->getFieldLoc()),
1814             Sema::LookupMemberName, /*Scope=*/0, /*SS=*/0, Validator,
1815             RT->getDecl());
1816         if (Corrected) {
1817           std::string CorrectedStr(
1818               Corrected.getAsString(SemaRef.getLangOpts()));
1819           std::string CorrectedQuotedStr(
1820               Corrected.getQuoted(SemaRef.getLangOpts()));
1821           ReplacementField = Corrected.getCorrectionDeclAs<FieldDecl>();
1822           SemaRef.Diag(D->getFieldLoc(),
1823                        diag::err_field_designator_unknown_suggest)
1824             << FieldName << CurrentObjectType << CorrectedQuotedStr
1825             << FixItHint::CreateReplacement(D->getFieldLoc(), CorrectedStr);
1826           SemaRef.Diag(ReplacementField->getLocation(),
1827                        diag::note_previous_decl) << CorrectedQuotedStr;
1828           hadError = true;
1829         } else {
1830           SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_unknown)
1831             << FieldName << CurrentObjectType;
1832           ++Index;
1833           return true;
1834         }
1835       }
1836 
1837       if (!ReplacementField) {
1838         // Name lookup found something, but it wasn't a field.
1839         SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_nonfield)
1840           << FieldName;
1841         SemaRef.Diag(Lookup.front()->getLocation(),
1842                       diag::note_field_designator_found);
1843         ++Index;
1844         return true;
1845       }
1846 
1847       if (!KnownField) {
1848         // The replacement field comes from typo correction; find it
1849         // in the list of fields.
1850         FieldIndex = 0;
1851         Field = RT->getDecl()->field_begin();
1852         for (; Field != FieldEnd; ++Field) {
1853           if (Field->isUnnamedBitfield())
1854             continue;
1855 
1856           if (ReplacementField == *Field ||
1857               Field->getIdentifier() == ReplacementField->getIdentifier())
1858             break;
1859 
1860           ++FieldIndex;
1861         }
1862       }
1863     }
1864 
1865     // All of the fields of a union are located at the same place in
1866     // the initializer list.
1867     if (RT->getDecl()->isUnion()) {
1868       FieldIndex = 0;
1869       if (!VerifyOnly)
1870         StructuredList->setInitializedFieldInUnion(*Field);
1871     }
1872 
1873     // Make sure we can use this declaration.
1874     bool InvalidUse;
1875     if (VerifyOnly)
1876       InvalidUse = !SemaRef.CanUseDecl(*Field);
1877     else
1878       InvalidUse = SemaRef.DiagnoseUseOfDecl(*Field, D->getFieldLoc());
1879     if (InvalidUse) {
1880       ++Index;
1881       return true;
1882     }
1883 
1884     if (!VerifyOnly) {
1885       // Update the designator with the field declaration.
1886       D->setField(*Field);
1887 
1888       // Make sure that our non-designated initializer list has space
1889       // for a subobject corresponding to this field.
1890       if (FieldIndex >= StructuredList->getNumInits())
1891         StructuredList->resizeInits(SemaRef.Context, FieldIndex + 1);
1892     }
1893 
1894     // This designator names a flexible array member.
1895     if (Field->getType()->isIncompleteArrayType()) {
1896       bool Invalid = false;
1897       if ((DesigIdx + 1) != DIE->size()) {
1898         // We can't designate an object within the flexible array
1899         // member (because GCC doesn't allow it).
1900         if (!VerifyOnly) {
1901           DesignatedInitExpr::Designator *NextD
1902             = DIE->getDesignator(DesigIdx + 1);
1903           SemaRef.Diag(NextD->getLocStart(),
1904                         diag::err_designator_into_flexible_array_member)
1905             << SourceRange(NextD->getLocStart(),
1906                            DIE->getLocEnd());
1907           SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
1908             << *Field;
1909         }
1910         Invalid = true;
1911       }
1912 
1913       if (!hadError && !isa<InitListExpr>(DIE->getInit()) &&
1914           !isa<StringLiteral>(DIE->getInit())) {
1915         // The initializer is not an initializer list.
1916         if (!VerifyOnly) {
1917           SemaRef.Diag(DIE->getInit()->getLocStart(),
1918                         diag::err_flexible_array_init_needs_braces)
1919             << DIE->getInit()->getSourceRange();
1920           SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
1921             << *Field;
1922         }
1923         Invalid = true;
1924       }
1925 
1926       // Check GNU flexible array initializer.
1927       if (!Invalid && CheckFlexibleArrayInit(Entity, DIE->getInit(), *Field,
1928                                              TopLevelObject))
1929         Invalid = true;
1930 
1931       if (Invalid) {
1932         ++Index;
1933         return true;
1934       }
1935 
1936       // Initialize the array.
1937       bool prevHadError = hadError;
1938       unsigned newStructuredIndex = FieldIndex;
1939       unsigned OldIndex = Index;
1940       IList->setInit(Index, DIE->getInit());
1941 
1942       InitializedEntity MemberEntity =
1943         InitializedEntity::InitializeMember(*Field, &Entity);
1944       CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
1945                           StructuredList, newStructuredIndex);
1946 
1947       IList->setInit(OldIndex, DIE);
1948       if (hadError && !prevHadError) {
1949         ++Field;
1950         ++FieldIndex;
1951         if (NextField)
1952           *NextField = Field;
1953         StructuredIndex = FieldIndex;
1954         return true;
1955       }
1956     } else {
1957       // Recurse to check later designated subobjects.
1958       QualType FieldType = Field->getType();
1959       unsigned newStructuredIndex = FieldIndex;
1960 
1961       InitializedEntity MemberEntity =
1962         InitializedEntity::InitializeMember(*Field, &Entity);
1963       if (CheckDesignatedInitializer(MemberEntity, IList, DIE, DesigIdx + 1,
1964                                      FieldType, 0, 0, Index,
1965                                      StructuredList, newStructuredIndex,
1966                                      true, false))
1967         return true;
1968     }
1969 
1970     // Find the position of the next field to be initialized in this
1971     // subobject.
1972     ++Field;
1973     ++FieldIndex;
1974 
1975     // If this the first designator, our caller will continue checking
1976     // the rest of this struct/class/union subobject.
1977     if (IsFirstDesignator) {
1978       if (NextField)
1979         *NextField = Field;
1980       StructuredIndex = FieldIndex;
1981       return false;
1982     }
1983 
1984     if (!FinishSubobjectInit)
1985       return false;
1986 
1987     // We've already initialized something in the union; we're done.
1988     if (RT->getDecl()->isUnion())
1989       return hadError;
1990 
1991     // Check the remaining fields within this class/struct/union subobject.
1992     bool prevHadError = hadError;
1993 
1994     CheckStructUnionTypes(Entity, IList, CurrentObjectType, Field, false, Index,
1995                           StructuredList, FieldIndex);
1996     return hadError && !prevHadError;
1997   }
1998 
1999   // C99 6.7.8p6:
2000   //
2001   //   If a designator has the form
2002   //
2003   //      [ constant-expression ]
2004   //
2005   //   then the current object (defined below) shall have array
2006   //   type and the expression shall be an integer constant
2007   //   expression. If the array is of unknown size, any
2008   //   nonnegative value is valid.
2009   //
2010   // Additionally, cope with the GNU extension that permits
2011   // designators of the form
2012   //
2013   //      [ constant-expression ... constant-expression ]
2014   const ArrayType *AT = SemaRef.Context.getAsArrayType(CurrentObjectType);
2015   if (!AT) {
2016     if (!VerifyOnly)
2017       SemaRef.Diag(D->getLBracketLoc(), diag::err_array_designator_non_array)
2018         << CurrentObjectType;
2019     ++Index;
2020     return true;
2021   }
2022 
2023   Expr *IndexExpr = 0;
2024   llvm::APSInt DesignatedStartIndex, DesignatedEndIndex;
2025   if (D->isArrayDesignator()) {
2026     IndexExpr = DIE->getArrayIndex(*D);
2027     DesignatedStartIndex = IndexExpr->EvaluateKnownConstInt(SemaRef.Context);
2028     DesignatedEndIndex = DesignatedStartIndex;
2029   } else {
2030     assert(D->isArrayRangeDesignator() && "Need array-range designator");
2031 
2032     DesignatedStartIndex =
2033       DIE->getArrayRangeStart(*D)->EvaluateKnownConstInt(SemaRef.Context);
2034     DesignatedEndIndex =
2035       DIE->getArrayRangeEnd(*D)->EvaluateKnownConstInt(SemaRef.Context);
2036     IndexExpr = DIE->getArrayRangeEnd(*D);
2037 
2038     // Codegen can't handle evaluating array range designators that have side
2039     // effects, because we replicate the AST value for each initialized element.
2040     // As such, set the sawArrayRangeDesignator() bit if we initialize multiple
2041     // elements with something that has a side effect, so codegen can emit an
2042     // "error unsupported" error instead of miscompiling the app.
2043     if (DesignatedStartIndex.getZExtValue()!=DesignatedEndIndex.getZExtValue()&&
2044         DIE->getInit()->HasSideEffects(SemaRef.Context) && !VerifyOnly)
2045       FullyStructuredList->sawArrayRangeDesignator();
2046   }
2047 
2048   if (isa<ConstantArrayType>(AT)) {
2049     llvm::APSInt MaxElements(cast<ConstantArrayType>(AT)->getSize(), false);
2050     DesignatedStartIndex
2051       = DesignatedStartIndex.extOrTrunc(MaxElements.getBitWidth());
2052     DesignatedStartIndex.setIsUnsigned(MaxElements.isUnsigned());
2053     DesignatedEndIndex
2054       = DesignatedEndIndex.extOrTrunc(MaxElements.getBitWidth());
2055     DesignatedEndIndex.setIsUnsigned(MaxElements.isUnsigned());
2056     if (DesignatedEndIndex >= MaxElements) {
2057       if (!VerifyOnly)
2058         SemaRef.Diag(IndexExpr->getLocStart(),
2059                       diag::err_array_designator_too_large)
2060           << DesignatedEndIndex.toString(10) << MaxElements.toString(10)
2061           << IndexExpr->getSourceRange();
2062       ++Index;
2063       return true;
2064     }
2065   } else {
2066     // Make sure the bit-widths and signedness match.
2067     if (DesignatedStartIndex.getBitWidth() > DesignatedEndIndex.getBitWidth())
2068       DesignatedEndIndex
2069         = DesignatedEndIndex.extend(DesignatedStartIndex.getBitWidth());
2070     else if (DesignatedStartIndex.getBitWidth() <
2071              DesignatedEndIndex.getBitWidth())
2072       DesignatedStartIndex
2073         = DesignatedStartIndex.extend(DesignatedEndIndex.getBitWidth());
2074     DesignatedStartIndex.setIsUnsigned(true);
2075     DesignatedEndIndex.setIsUnsigned(true);
2076   }
2077 
2078   if (!VerifyOnly && StructuredList->isStringLiteralInit()) {
2079     // We're modifying a string literal init; we have to decompose the string
2080     // so we can modify the individual characters.
2081     ASTContext &Context = SemaRef.Context;
2082     Expr *SubExpr = StructuredList->getInit(0)->IgnoreParens();
2083 
2084     // Compute the character type
2085     QualType CharTy = AT->getElementType();
2086 
2087     // Compute the type of the integer literals.
2088     QualType PromotedCharTy = CharTy;
2089     if (CharTy->isPromotableIntegerType())
2090       PromotedCharTy = Context.getPromotedIntegerType(CharTy);
2091     unsigned PromotedCharTyWidth = Context.getTypeSize(PromotedCharTy);
2092 
2093     if (StringLiteral *SL = dyn_cast<StringLiteral>(SubExpr)) {
2094       // Get the length of the string.
2095       uint64_t StrLen = SL->getLength();
2096       if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen))
2097         StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue();
2098       StructuredList->resizeInits(Context, StrLen);
2099 
2100       // Build a literal for each character in the string, and put them into
2101       // the init list.
2102       for (unsigned i = 0, e = StrLen; i != e; ++i) {
2103         llvm::APInt CodeUnit(PromotedCharTyWidth, SL->getCodeUnit(i));
2104         Expr *Init = new (Context) IntegerLiteral(
2105             Context, CodeUnit, PromotedCharTy, SubExpr->getExprLoc());
2106         if (CharTy != PromotedCharTy)
2107           Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast,
2108                                           Init, 0, VK_RValue);
2109         StructuredList->updateInit(Context, i, Init);
2110       }
2111     } else {
2112       ObjCEncodeExpr *E = cast<ObjCEncodeExpr>(SubExpr);
2113       std::string Str;
2114       Context.getObjCEncodingForType(E->getEncodedType(), Str);
2115 
2116       // Get the length of the string.
2117       uint64_t StrLen = Str.size();
2118       if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen))
2119         StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue();
2120       StructuredList->resizeInits(Context, StrLen);
2121 
2122       // Build a literal for each character in the string, and put them into
2123       // the init list.
2124       for (unsigned i = 0, e = StrLen; i != e; ++i) {
2125         llvm::APInt CodeUnit(PromotedCharTyWidth, Str[i]);
2126         Expr *Init = new (Context) IntegerLiteral(
2127             Context, CodeUnit, PromotedCharTy, SubExpr->getExprLoc());
2128         if (CharTy != PromotedCharTy)
2129           Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast,
2130                                           Init, 0, VK_RValue);
2131         StructuredList->updateInit(Context, i, Init);
2132       }
2133     }
2134   }
2135 
2136   // Make sure that our non-designated initializer list has space
2137   // for a subobject corresponding to this array element.
2138   if (!VerifyOnly &&
2139       DesignatedEndIndex.getZExtValue() >= StructuredList->getNumInits())
2140     StructuredList->resizeInits(SemaRef.Context,
2141                                 DesignatedEndIndex.getZExtValue() + 1);
2142 
2143   // Repeatedly perform subobject initializations in the range
2144   // [DesignatedStartIndex, DesignatedEndIndex].
2145 
2146   // Move to the next designator
2147   unsigned ElementIndex = DesignatedStartIndex.getZExtValue();
2148   unsigned OldIndex = Index;
2149 
2150   InitializedEntity ElementEntity =
2151     InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
2152 
2153   while (DesignatedStartIndex <= DesignatedEndIndex) {
2154     // Recurse to check later designated subobjects.
2155     QualType ElementType = AT->getElementType();
2156     Index = OldIndex;
2157 
2158     ElementEntity.setElementIndex(ElementIndex);
2159     if (CheckDesignatedInitializer(ElementEntity, IList, DIE, DesigIdx + 1,
2160                                    ElementType, 0, 0, Index,
2161                                    StructuredList, ElementIndex,
2162                                    (DesignatedStartIndex == DesignatedEndIndex),
2163                                    false))
2164       return true;
2165 
2166     // Move to the next index in the array that we'll be initializing.
2167     ++DesignatedStartIndex;
2168     ElementIndex = DesignatedStartIndex.getZExtValue();
2169   }
2170 
2171   // If this the first designator, our caller will continue checking
2172   // the rest of this array subobject.
2173   if (IsFirstDesignator) {
2174     if (NextElementIndex)
2175       *NextElementIndex = DesignatedStartIndex;
2176     StructuredIndex = ElementIndex;
2177     return false;
2178   }
2179 
2180   if (!FinishSubobjectInit)
2181     return false;
2182 
2183   // Check the remaining elements within this array subobject.
2184   bool prevHadError = hadError;
2185   CheckArrayType(Entity, IList, CurrentObjectType, DesignatedStartIndex,
2186                  /*SubobjectIsDesignatorContext=*/false, Index,
2187                  StructuredList, ElementIndex);
2188   return hadError && !prevHadError;
2189 }
2190 
2191 // Get the structured initializer list for a subobject of type
2192 // @p CurrentObjectType.
2193 InitListExpr *
2194 InitListChecker::getStructuredSubobjectInit(InitListExpr *IList, unsigned Index,
2195                                             QualType CurrentObjectType,
2196                                             InitListExpr *StructuredList,
2197                                             unsigned StructuredIndex,
2198                                             SourceRange InitRange) {
2199   if (VerifyOnly)
2200     return 0; // No structured list in verification-only mode.
2201   Expr *ExistingInit = 0;
2202   if (!StructuredList)
2203     ExistingInit = SyntacticToSemantic.lookup(IList);
2204   else if (StructuredIndex < StructuredList->getNumInits())
2205     ExistingInit = StructuredList->getInit(StructuredIndex);
2206 
2207   if (InitListExpr *Result = dyn_cast_or_null<InitListExpr>(ExistingInit))
2208     return Result;
2209 
2210   if (ExistingInit) {
2211     // We are creating an initializer list that initializes the
2212     // subobjects of the current object, but there was already an
2213     // initialization that completely initialized the current
2214     // subobject, e.g., by a compound literal:
2215     //
2216     // struct X { int a, b; };
2217     // struct X xs[] = { [0] = (struct X) { 1, 2 }, [0].b = 3 };
2218     //
2219     // Here, xs[0].a == 0 and xs[0].b == 3, since the second,
2220     // designated initializer re-initializes the whole
2221     // subobject [0], overwriting previous initializers.
2222     SemaRef.Diag(InitRange.getBegin(),
2223                  diag::warn_subobject_initializer_overrides)
2224       << InitRange;
2225     SemaRef.Diag(ExistingInit->getLocStart(),
2226                   diag::note_previous_initializer)
2227       << /*FIXME:has side effects=*/0
2228       << ExistingInit->getSourceRange();
2229   }
2230 
2231   InitListExpr *Result
2232     = new (SemaRef.Context) InitListExpr(SemaRef.Context,
2233                                          InitRange.getBegin(), None,
2234                                          InitRange.getEnd());
2235 
2236   QualType ResultType = CurrentObjectType;
2237   if (!ResultType->isArrayType())
2238     ResultType = ResultType.getNonLValueExprType(SemaRef.Context);
2239   Result->setType(ResultType);
2240 
2241   // Pre-allocate storage for the structured initializer list.
2242   unsigned NumElements = 0;
2243   unsigned NumInits = 0;
2244   bool GotNumInits = false;
2245   if (!StructuredList) {
2246     NumInits = IList->getNumInits();
2247     GotNumInits = true;
2248   } else if (Index < IList->getNumInits()) {
2249     if (InitListExpr *SubList = dyn_cast<InitListExpr>(IList->getInit(Index))) {
2250       NumInits = SubList->getNumInits();
2251       GotNumInits = true;
2252     }
2253   }
2254 
2255   if (const ArrayType *AType
2256       = SemaRef.Context.getAsArrayType(CurrentObjectType)) {
2257     if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType)) {
2258       NumElements = CAType->getSize().getZExtValue();
2259       // Simple heuristic so that we don't allocate a very large
2260       // initializer with many empty entries at the end.
2261       if (GotNumInits && NumElements > NumInits)
2262         NumElements = 0;
2263     }
2264   } else if (const VectorType *VType = CurrentObjectType->getAs<VectorType>())
2265     NumElements = VType->getNumElements();
2266   else if (const RecordType *RType = CurrentObjectType->getAs<RecordType>()) {
2267     RecordDecl *RDecl = RType->getDecl();
2268     if (RDecl->isUnion())
2269       NumElements = 1;
2270     else
2271       NumElements = std::distance(RDecl->field_begin(),
2272                                   RDecl->field_end());
2273   }
2274 
2275   Result->reserveInits(SemaRef.Context, NumElements);
2276 
2277   // Link this new initializer list into the structured initializer
2278   // lists.
2279   if (StructuredList)
2280     StructuredList->updateInit(SemaRef.Context, StructuredIndex, Result);
2281   else {
2282     Result->setSyntacticForm(IList);
2283     SyntacticToSemantic[IList] = Result;
2284   }
2285 
2286   return Result;
2287 }
2288 
2289 /// Update the initializer at index @p StructuredIndex within the
2290 /// structured initializer list to the value @p expr.
2291 void InitListChecker::UpdateStructuredListElement(InitListExpr *StructuredList,
2292                                                   unsigned &StructuredIndex,
2293                                                   Expr *expr) {
2294   // No structured initializer list to update
2295   if (!StructuredList)
2296     return;
2297 
2298   if (Expr *PrevInit = StructuredList->updateInit(SemaRef.Context,
2299                                                   StructuredIndex, expr)) {
2300     // This initializer overwrites a previous initializer. Warn.
2301     SemaRef.Diag(expr->getLocStart(),
2302                   diag::warn_initializer_overrides)
2303       << expr->getSourceRange();
2304     SemaRef.Diag(PrevInit->getLocStart(),
2305                   diag::note_previous_initializer)
2306       << /*FIXME:has side effects=*/0
2307       << PrevInit->getSourceRange();
2308   }
2309 
2310   ++StructuredIndex;
2311 }
2312 
2313 /// Check that the given Index expression is a valid array designator
2314 /// value. This is essentially just a wrapper around
2315 /// VerifyIntegerConstantExpression that also checks for negative values
2316 /// and produces a reasonable diagnostic if there is a
2317 /// failure. Returns the index expression, possibly with an implicit cast
2318 /// added, on success.  If everything went okay, Value will receive the
2319 /// value of the constant expression.
2320 static ExprResult
2321 CheckArrayDesignatorExpr(Sema &S, Expr *Index, llvm::APSInt &Value) {
2322   SourceLocation Loc = Index->getLocStart();
2323 
2324   // Make sure this is an integer constant expression.
2325   ExprResult Result = S.VerifyIntegerConstantExpression(Index, &Value);
2326   if (Result.isInvalid())
2327     return Result;
2328 
2329   if (Value.isSigned() && Value.isNegative())
2330     return S.Diag(Loc, diag::err_array_designator_negative)
2331       << Value.toString(10) << Index->getSourceRange();
2332 
2333   Value.setIsUnsigned(true);
2334   return Result;
2335 }
2336 
2337 ExprResult Sema::ActOnDesignatedInitializer(Designation &Desig,
2338                                             SourceLocation Loc,
2339                                             bool GNUSyntax,
2340                                             ExprResult Init) {
2341   typedef DesignatedInitExpr::Designator ASTDesignator;
2342 
2343   bool Invalid = false;
2344   SmallVector<ASTDesignator, 32> Designators;
2345   SmallVector<Expr *, 32> InitExpressions;
2346 
2347   // Build designators and check array designator expressions.
2348   for (unsigned Idx = 0; Idx < Desig.getNumDesignators(); ++Idx) {
2349     const Designator &D = Desig.getDesignator(Idx);
2350     switch (D.getKind()) {
2351     case Designator::FieldDesignator:
2352       Designators.push_back(ASTDesignator(D.getField(), D.getDotLoc(),
2353                                           D.getFieldLoc()));
2354       break;
2355 
2356     case Designator::ArrayDesignator: {
2357       Expr *Index = static_cast<Expr *>(D.getArrayIndex());
2358       llvm::APSInt IndexValue;
2359       if (!Index->isTypeDependent() && !Index->isValueDependent())
2360         Index = CheckArrayDesignatorExpr(*this, Index, IndexValue).take();
2361       if (!Index)
2362         Invalid = true;
2363       else {
2364         Designators.push_back(ASTDesignator(InitExpressions.size(),
2365                                             D.getLBracketLoc(),
2366                                             D.getRBracketLoc()));
2367         InitExpressions.push_back(Index);
2368       }
2369       break;
2370     }
2371 
2372     case Designator::ArrayRangeDesignator: {
2373       Expr *StartIndex = static_cast<Expr *>(D.getArrayRangeStart());
2374       Expr *EndIndex = static_cast<Expr *>(D.getArrayRangeEnd());
2375       llvm::APSInt StartValue;
2376       llvm::APSInt EndValue;
2377       bool StartDependent = StartIndex->isTypeDependent() ||
2378                             StartIndex->isValueDependent();
2379       bool EndDependent = EndIndex->isTypeDependent() ||
2380                           EndIndex->isValueDependent();
2381       if (!StartDependent)
2382         StartIndex =
2383             CheckArrayDesignatorExpr(*this, StartIndex, StartValue).take();
2384       if (!EndDependent)
2385         EndIndex = CheckArrayDesignatorExpr(*this, EndIndex, EndValue).take();
2386 
2387       if (!StartIndex || !EndIndex)
2388         Invalid = true;
2389       else {
2390         // Make sure we're comparing values with the same bit width.
2391         if (StartDependent || EndDependent) {
2392           // Nothing to compute.
2393         } else if (StartValue.getBitWidth() > EndValue.getBitWidth())
2394           EndValue = EndValue.extend(StartValue.getBitWidth());
2395         else if (StartValue.getBitWidth() < EndValue.getBitWidth())
2396           StartValue = StartValue.extend(EndValue.getBitWidth());
2397 
2398         if (!StartDependent && !EndDependent && EndValue < StartValue) {
2399           Diag(D.getEllipsisLoc(), diag::err_array_designator_empty_range)
2400             << StartValue.toString(10) << EndValue.toString(10)
2401             << StartIndex->getSourceRange() << EndIndex->getSourceRange();
2402           Invalid = true;
2403         } else {
2404           Designators.push_back(ASTDesignator(InitExpressions.size(),
2405                                               D.getLBracketLoc(),
2406                                               D.getEllipsisLoc(),
2407                                               D.getRBracketLoc()));
2408           InitExpressions.push_back(StartIndex);
2409           InitExpressions.push_back(EndIndex);
2410         }
2411       }
2412       break;
2413     }
2414     }
2415   }
2416 
2417   if (Invalid || Init.isInvalid())
2418     return ExprError();
2419 
2420   // Clear out the expressions within the designation.
2421   Desig.ClearExprs(*this);
2422 
2423   DesignatedInitExpr *DIE
2424     = DesignatedInitExpr::Create(Context,
2425                                  Designators.data(), Designators.size(),
2426                                  InitExpressions, Loc, GNUSyntax,
2427                                  Init.takeAs<Expr>());
2428 
2429   if (!getLangOpts().C99)
2430     Diag(DIE->getLocStart(), diag::ext_designated_init)
2431       << DIE->getSourceRange();
2432 
2433   return Owned(DIE);
2434 }
2435 
2436 //===----------------------------------------------------------------------===//
2437 // Initialization entity
2438 //===----------------------------------------------------------------------===//
2439 
2440 InitializedEntity::InitializedEntity(ASTContext &Context, unsigned Index,
2441                                      const InitializedEntity &Parent)
2442   : Parent(&Parent), Index(Index)
2443 {
2444   if (const ArrayType *AT = Context.getAsArrayType(Parent.getType())) {
2445     Kind = EK_ArrayElement;
2446     Type = AT->getElementType();
2447   } else if (const VectorType *VT = Parent.getType()->getAs<VectorType>()) {
2448     Kind = EK_VectorElement;
2449     Type = VT->getElementType();
2450   } else {
2451     const ComplexType *CT = Parent.getType()->getAs<ComplexType>();
2452     assert(CT && "Unexpected type");
2453     Kind = EK_ComplexElement;
2454     Type = CT->getElementType();
2455   }
2456 }
2457 
2458 InitializedEntity InitializedEntity::InitializeBase(ASTContext &Context,
2459                                                     CXXBaseSpecifier *Base,
2460                                                     bool IsInheritedVirtualBase)
2461 {
2462   InitializedEntity Result;
2463   Result.Kind = EK_Base;
2464   Result.Parent = 0;
2465   Result.Base = reinterpret_cast<uintptr_t>(Base);
2466   if (IsInheritedVirtualBase)
2467     Result.Base |= 0x01;
2468 
2469   Result.Type = Base->getType();
2470   return Result;
2471 }
2472 
2473 DeclarationName InitializedEntity::getName() const {
2474   switch (getKind()) {
2475   case EK_Parameter: {
2476     ParmVarDecl *D = reinterpret_cast<ParmVarDecl*>(Parameter & ~0x1);
2477     return (D ? D->getDeclName() : DeclarationName());
2478   }
2479 
2480   case EK_Variable:
2481   case EK_Member:
2482     return VariableOrMember->getDeclName();
2483 
2484   case EK_LambdaCapture:
2485     return Capture.Var->getDeclName();
2486 
2487   case EK_Result:
2488   case EK_Exception:
2489   case EK_New:
2490   case EK_Temporary:
2491   case EK_Base:
2492   case EK_Delegating:
2493   case EK_ArrayElement:
2494   case EK_VectorElement:
2495   case EK_ComplexElement:
2496   case EK_BlockElement:
2497   case EK_CompoundLiteralInit:
2498     return DeclarationName();
2499   }
2500 
2501   llvm_unreachable("Invalid EntityKind!");
2502 }
2503 
2504 DeclaratorDecl *InitializedEntity::getDecl() const {
2505   switch (getKind()) {
2506   case EK_Variable:
2507   case EK_Member:
2508     return VariableOrMember;
2509 
2510   case EK_Parameter:
2511     return reinterpret_cast<ParmVarDecl*>(Parameter & ~0x1);
2512 
2513   case EK_Result:
2514   case EK_Exception:
2515   case EK_New:
2516   case EK_Temporary:
2517   case EK_Base:
2518   case EK_Delegating:
2519   case EK_ArrayElement:
2520   case EK_VectorElement:
2521   case EK_ComplexElement:
2522   case EK_BlockElement:
2523   case EK_LambdaCapture:
2524   case EK_CompoundLiteralInit:
2525     return 0;
2526   }
2527 
2528   llvm_unreachable("Invalid EntityKind!");
2529 }
2530 
2531 bool InitializedEntity::allowsNRVO() const {
2532   switch (getKind()) {
2533   case EK_Result:
2534   case EK_Exception:
2535     return LocAndNRVO.NRVO;
2536 
2537   case EK_Variable:
2538   case EK_Parameter:
2539   case EK_Member:
2540   case EK_New:
2541   case EK_Temporary:
2542   case EK_CompoundLiteralInit:
2543   case EK_Base:
2544   case EK_Delegating:
2545   case EK_ArrayElement:
2546   case EK_VectorElement:
2547   case EK_ComplexElement:
2548   case EK_BlockElement:
2549   case EK_LambdaCapture:
2550     break;
2551   }
2552 
2553   return false;
2554 }
2555 
2556 unsigned InitializedEntity::dumpImpl(raw_ostream &OS) const {
2557   assert(getParent() != this);
2558   unsigned Depth = getParent() ? getParent()->dumpImpl(OS) : 0;
2559   for (unsigned I = 0; I != Depth; ++I)
2560     OS << "`-";
2561 
2562   switch (getKind()) {
2563   case EK_Variable: OS << "Variable"; break;
2564   case EK_Parameter: OS << "Parameter"; break;
2565   case EK_Result: OS << "Result"; break;
2566   case EK_Exception: OS << "Exception"; break;
2567   case EK_Member: OS << "Member"; break;
2568   case EK_New: OS << "New"; break;
2569   case EK_Temporary: OS << "Temporary"; break;
2570   case EK_CompoundLiteralInit: OS << "CompoundLiteral";break;
2571   case EK_Base: OS << "Base"; break;
2572   case EK_Delegating: OS << "Delegating"; break;
2573   case EK_ArrayElement: OS << "ArrayElement " << Index; break;
2574   case EK_VectorElement: OS << "VectorElement " << Index; break;
2575   case EK_ComplexElement: OS << "ComplexElement " << Index; break;
2576   case EK_BlockElement: OS << "Block"; break;
2577   case EK_LambdaCapture:
2578     OS << "LambdaCapture ";
2579     getCapturedVar()->printName(OS);
2580     break;
2581   }
2582 
2583   if (Decl *D = getDecl()) {
2584     OS << " ";
2585     cast<NamedDecl>(D)->printQualifiedName(OS);
2586   }
2587 
2588   OS << " '" << getType().getAsString() << "'\n";
2589 
2590   return Depth + 1;
2591 }
2592 
2593 void InitializedEntity::dump() const {
2594   dumpImpl(llvm::errs());
2595 }
2596 
2597 //===----------------------------------------------------------------------===//
2598 // Initialization sequence
2599 //===----------------------------------------------------------------------===//
2600 
2601 void InitializationSequence::Step::Destroy() {
2602   switch (Kind) {
2603   case SK_ResolveAddressOfOverloadedFunction:
2604   case SK_CastDerivedToBaseRValue:
2605   case SK_CastDerivedToBaseXValue:
2606   case SK_CastDerivedToBaseLValue:
2607   case SK_BindReference:
2608   case SK_BindReferenceToTemporary:
2609   case SK_ExtraneousCopyToTemporary:
2610   case SK_UserConversion:
2611   case SK_QualificationConversionRValue:
2612   case SK_QualificationConversionXValue:
2613   case SK_QualificationConversionLValue:
2614   case SK_LValueToRValue:
2615   case SK_ListInitialization:
2616   case SK_ListConstructorCall:
2617   case SK_UnwrapInitList:
2618   case SK_RewrapInitList:
2619   case SK_ConstructorInitialization:
2620   case SK_ZeroInitialization:
2621   case SK_CAssignment:
2622   case SK_StringInit:
2623   case SK_ObjCObjectConversion:
2624   case SK_ArrayInit:
2625   case SK_ParenthesizedArrayInit:
2626   case SK_PassByIndirectCopyRestore:
2627   case SK_PassByIndirectRestore:
2628   case SK_ProduceObjCObject:
2629   case SK_StdInitializerList:
2630   case SK_OCLSamplerInit:
2631   case SK_OCLZeroEvent:
2632     break;
2633 
2634   case SK_ConversionSequence:
2635     delete ICS;
2636   }
2637 }
2638 
2639 bool InitializationSequence::isDirectReferenceBinding() const {
2640   return !Steps.empty() && Steps.back().Kind == SK_BindReference;
2641 }
2642 
2643 bool InitializationSequence::isAmbiguous() const {
2644   if (!Failed())
2645     return false;
2646 
2647   switch (getFailureKind()) {
2648   case FK_TooManyInitsForReference:
2649   case FK_ArrayNeedsInitList:
2650   case FK_ArrayNeedsInitListOrStringLiteral:
2651   case FK_ArrayNeedsInitListOrWideStringLiteral:
2652   case FK_NarrowStringIntoWideCharArray:
2653   case FK_WideStringIntoCharArray:
2654   case FK_IncompatWideStringIntoWideChar:
2655   case FK_AddressOfOverloadFailed: // FIXME: Could do better
2656   case FK_NonConstLValueReferenceBindingToTemporary:
2657   case FK_NonConstLValueReferenceBindingToUnrelated:
2658   case FK_RValueReferenceBindingToLValue:
2659   case FK_ReferenceInitDropsQualifiers:
2660   case FK_ReferenceInitFailed:
2661   case FK_ConversionFailed:
2662   case FK_ConversionFromPropertyFailed:
2663   case FK_TooManyInitsForScalar:
2664   case FK_ReferenceBindingToInitList:
2665   case FK_InitListBadDestinationType:
2666   case FK_DefaultInitOfConst:
2667   case FK_Incomplete:
2668   case FK_ArrayTypeMismatch:
2669   case FK_NonConstantArrayInit:
2670   case FK_ListInitializationFailed:
2671   case FK_VariableLengthArrayHasInitializer:
2672   case FK_PlaceholderType:
2673   case FK_ExplicitConstructor:
2674     return false;
2675 
2676   case FK_ReferenceInitOverloadFailed:
2677   case FK_UserConversionOverloadFailed:
2678   case FK_ConstructorOverloadFailed:
2679   case FK_ListConstructorOverloadFailed:
2680     return FailedOverloadResult == OR_Ambiguous;
2681   }
2682 
2683   llvm_unreachable("Invalid EntityKind!");
2684 }
2685 
2686 bool InitializationSequence::isConstructorInitialization() const {
2687   return !Steps.empty() && Steps.back().Kind == SK_ConstructorInitialization;
2688 }
2689 
2690 void
2691 InitializationSequence
2692 ::AddAddressOverloadResolutionStep(FunctionDecl *Function,
2693                                    DeclAccessPair Found,
2694                                    bool HadMultipleCandidates) {
2695   Step S;
2696   S.Kind = SK_ResolveAddressOfOverloadedFunction;
2697   S.Type = Function->getType();
2698   S.Function.HadMultipleCandidates = HadMultipleCandidates;
2699   S.Function.Function = Function;
2700   S.Function.FoundDecl = Found;
2701   Steps.push_back(S);
2702 }
2703 
2704 void InitializationSequence::AddDerivedToBaseCastStep(QualType BaseType,
2705                                                       ExprValueKind VK) {
2706   Step S;
2707   switch (VK) {
2708   case VK_RValue: S.Kind = SK_CastDerivedToBaseRValue; break;
2709   case VK_XValue: S.Kind = SK_CastDerivedToBaseXValue; break;
2710   case VK_LValue: S.Kind = SK_CastDerivedToBaseLValue; break;
2711   }
2712   S.Type = BaseType;
2713   Steps.push_back(S);
2714 }
2715 
2716 void InitializationSequence::AddReferenceBindingStep(QualType T,
2717                                                      bool BindingTemporary) {
2718   Step S;
2719   S.Kind = BindingTemporary? SK_BindReferenceToTemporary : SK_BindReference;
2720   S.Type = T;
2721   Steps.push_back(S);
2722 }
2723 
2724 void InitializationSequence::AddExtraneousCopyToTemporary(QualType T) {
2725   Step S;
2726   S.Kind = SK_ExtraneousCopyToTemporary;
2727   S.Type = T;
2728   Steps.push_back(S);
2729 }
2730 
2731 void
2732 InitializationSequence::AddUserConversionStep(FunctionDecl *Function,
2733                                               DeclAccessPair FoundDecl,
2734                                               QualType T,
2735                                               bool HadMultipleCandidates) {
2736   Step S;
2737   S.Kind = SK_UserConversion;
2738   S.Type = T;
2739   S.Function.HadMultipleCandidates = HadMultipleCandidates;
2740   S.Function.Function = Function;
2741   S.Function.FoundDecl = FoundDecl;
2742   Steps.push_back(S);
2743 }
2744 
2745 void InitializationSequence::AddQualificationConversionStep(QualType Ty,
2746                                                             ExprValueKind VK) {
2747   Step S;
2748   S.Kind = SK_QualificationConversionRValue; // work around a gcc warning
2749   switch (VK) {
2750   case VK_RValue:
2751     S.Kind = SK_QualificationConversionRValue;
2752     break;
2753   case VK_XValue:
2754     S.Kind = SK_QualificationConversionXValue;
2755     break;
2756   case VK_LValue:
2757     S.Kind = SK_QualificationConversionLValue;
2758     break;
2759   }
2760   S.Type = Ty;
2761   Steps.push_back(S);
2762 }
2763 
2764 void InitializationSequence::AddLValueToRValueStep(QualType Ty) {
2765   assert(!Ty.hasQualifiers() && "rvalues may not have qualifiers");
2766 
2767   Step S;
2768   S.Kind = SK_LValueToRValue;
2769   S.Type = Ty;
2770   Steps.push_back(S);
2771 }
2772 
2773 void InitializationSequence::AddConversionSequenceStep(
2774                                        const ImplicitConversionSequence &ICS,
2775                                                        QualType T) {
2776   Step S;
2777   S.Kind = SK_ConversionSequence;
2778   S.Type = T;
2779   S.ICS = new ImplicitConversionSequence(ICS);
2780   Steps.push_back(S);
2781 }
2782 
2783 void InitializationSequence::AddListInitializationStep(QualType T) {
2784   Step S;
2785   S.Kind = SK_ListInitialization;
2786   S.Type = T;
2787   Steps.push_back(S);
2788 }
2789 
2790 void
2791 InitializationSequence
2792 ::AddConstructorInitializationStep(CXXConstructorDecl *Constructor,
2793                                    AccessSpecifier Access,
2794                                    QualType T,
2795                                    bool HadMultipleCandidates,
2796                                    bool FromInitList, bool AsInitList) {
2797   Step S;
2798   S.Kind = FromInitList && !AsInitList ? SK_ListConstructorCall
2799                                        : SK_ConstructorInitialization;
2800   S.Type = T;
2801   S.Function.HadMultipleCandidates = HadMultipleCandidates;
2802   S.Function.Function = Constructor;
2803   S.Function.FoundDecl = DeclAccessPair::make(Constructor, Access);
2804   Steps.push_back(S);
2805 }
2806 
2807 void InitializationSequence::AddZeroInitializationStep(QualType T) {
2808   Step S;
2809   S.Kind = SK_ZeroInitialization;
2810   S.Type = T;
2811   Steps.push_back(S);
2812 }
2813 
2814 void InitializationSequence::AddCAssignmentStep(QualType T) {
2815   Step S;
2816   S.Kind = SK_CAssignment;
2817   S.Type = T;
2818   Steps.push_back(S);
2819 }
2820 
2821 void InitializationSequence::AddStringInitStep(QualType T) {
2822   Step S;
2823   S.Kind = SK_StringInit;
2824   S.Type = T;
2825   Steps.push_back(S);
2826 }
2827 
2828 void InitializationSequence::AddObjCObjectConversionStep(QualType T) {
2829   Step S;
2830   S.Kind = SK_ObjCObjectConversion;
2831   S.Type = T;
2832   Steps.push_back(S);
2833 }
2834 
2835 void InitializationSequence::AddArrayInitStep(QualType T) {
2836   Step S;
2837   S.Kind = SK_ArrayInit;
2838   S.Type = T;
2839   Steps.push_back(S);
2840 }
2841 
2842 void InitializationSequence::AddParenthesizedArrayInitStep(QualType T) {
2843   Step S;
2844   S.Kind = SK_ParenthesizedArrayInit;
2845   S.Type = T;
2846   Steps.push_back(S);
2847 }
2848 
2849 void InitializationSequence::AddPassByIndirectCopyRestoreStep(QualType type,
2850                                                               bool shouldCopy) {
2851   Step s;
2852   s.Kind = (shouldCopy ? SK_PassByIndirectCopyRestore
2853                        : SK_PassByIndirectRestore);
2854   s.Type = type;
2855   Steps.push_back(s);
2856 }
2857 
2858 void InitializationSequence::AddProduceObjCObjectStep(QualType T) {
2859   Step S;
2860   S.Kind = SK_ProduceObjCObject;
2861   S.Type = T;
2862   Steps.push_back(S);
2863 }
2864 
2865 void InitializationSequence::AddStdInitializerListConstructionStep(QualType T) {
2866   Step S;
2867   S.Kind = SK_StdInitializerList;
2868   S.Type = T;
2869   Steps.push_back(S);
2870 }
2871 
2872 void InitializationSequence::AddOCLSamplerInitStep(QualType T) {
2873   Step S;
2874   S.Kind = SK_OCLSamplerInit;
2875   S.Type = T;
2876   Steps.push_back(S);
2877 }
2878 
2879 void InitializationSequence::AddOCLZeroEventStep(QualType T) {
2880   Step S;
2881   S.Kind = SK_OCLZeroEvent;
2882   S.Type = T;
2883   Steps.push_back(S);
2884 }
2885 
2886 void InitializationSequence::RewrapReferenceInitList(QualType T,
2887                                                      InitListExpr *Syntactic) {
2888   assert(Syntactic->getNumInits() == 1 &&
2889          "Can only rewrap trivial init lists.");
2890   Step S;
2891   S.Kind = SK_UnwrapInitList;
2892   S.Type = Syntactic->getInit(0)->getType();
2893   Steps.insert(Steps.begin(), S);
2894 
2895   S.Kind = SK_RewrapInitList;
2896   S.Type = T;
2897   S.WrappingSyntacticList = Syntactic;
2898   Steps.push_back(S);
2899 }
2900 
2901 void InitializationSequence::SetOverloadFailure(FailureKind Failure,
2902                                                 OverloadingResult Result) {
2903   setSequenceKind(FailedSequence);
2904   this->Failure = Failure;
2905   this->FailedOverloadResult = Result;
2906 }
2907 
2908 //===----------------------------------------------------------------------===//
2909 // Attempt initialization
2910 //===----------------------------------------------------------------------===//
2911 
2912 static void MaybeProduceObjCObject(Sema &S,
2913                                    InitializationSequence &Sequence,
2914                                    const InitializedEntity &Entity) {
2915   if (!S.getLangOpts().ObjCAutoRefCount) return;
2916 
2917   /// When initializing a parameter, produce the value if it's marked
2918   /// __attribute__((ns_consumed)).
2919   if (Entity.getKind() == InitializedEntity::EK_Parameter) {
2920     if (!Entity.isParameterConsumed())
2921       return;
2922 
2923     assert(Entity.getType()->isObjCRetainableType() &&
2924            "consuming an object of unretainable type?");
2925     Sequence.AddProduceObjCObjectStep(Entity.getType());
2926 
2927   /// When initializing a return value, if the return type is a
2928   /// retainable type, then returns need to immediately retain the
2929   /// object.  If an autorelease is required, it will be done at the
2930   /// last instant.
2931   } else if (Entity.getKind() == InitializedEntity::EK_Result) {
2932     if (!Entity.getType()->isObjCRetainableType())
2933       return;
2934 
2935     Sequence.AddProduceObjCObjectStep(Entity.getType());
2936   }
2937 }
2938 
2939 static void TryListInitialization(Sema &S,
2940                                   const InitializedEntity &Entity,
2941                                   const InitializationKind &Kind,
2942                                   InitListExpr *InitList,
2943                                   InitializationSequence &Sequence);
2944 
2945 /// \brief When initializing from init list via constructor, handle
2946 /// initialization of an object of type std::initializer_list<T>.
2947 ///
2948 /// \return true if we have handled initialization of an object of type
2949 /// std::initializer_list<T>, false otherwise.
2950 static bool TryInitializerListConstruction(Sema &S,
2951                                            InitListExpr *List,
2952                                            QualType DestType,
2953                                            InitializationSequence &Sequence) {
2954   QualType E;
2955   if (!S.isStdInitializerList(DestType, &E))
2956     return false;
2957 
2958   if (S.RequireCompleteType(List->getExprLoc(), E, 0)) {
2959     Sequence.setIncompleteTypeFailure(E);
2960     return true;
2961   }
2962 
2963   // Try initializing a temporary array from the init list.
2964   QualType ArrayType = S.Context.getConstantArrayType(
2965       E.withConst(), llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()),
2966                                  List->getNumInits()),
2967       clang::ArrayType::Normal, 0);
2968   InitializedEntity HiddenArray =
2969       InitializedEntity::InitializeTemporary(ArrayType);
2970   InitializationKind Kind =
2971       InitializationKind::CreateDirectList(List->getExprLoc());
2972   TryListInitialization(S, HiddenArray, Kind, List, Sequence);
2973   if (Sequence)
2974     Sequence.AddStdInitializerListConstructionStep(DestType);
2975   return true;
2976 }
2977 
2978 static OverloadingResult
2979 ResolveConstructorOverload(Sema &S, SourceLocation DeclLoc,
2980                            MultiExprArg Args,
2981                            OverloadCandidateSet &CandidateSet,
2982                            ArrayRef<NamedDecl *> Ctors,
2983                            OverloadCandidateSet::iterator &Best,
2984                            bool CopyInitializing, bool AllowExplicit,
2985                            bool OnlyListConstructors, bool InitListSyntax) {
2986   CandidateSet.clear();
2987 
2988   for (ArrayRef<NamedDecl *>::iterator
2989          Con = Ctors.begin(), ConEnd = Ctors.end(); Con != ConEnd; ++Con) {
2990     NamedDecl *D = *Con;
2991     DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
2992     bool SuppressUserConversions = false;
2993 
2994     // Find the constructor (which may be a template).
2995     CXXConstructorDecl *Constructor = 0;
2996     FunctionTemplateDecl *ConstructorTmpl = dyn_cast<FunctionTemplateDecl>(D);
2997     if (ConstructorTmpl)
2998       Constructor = cast<CXXConstructorDecl>(
2999                                            ConstructorTmpl->getTemplatedDecl());
3000     else {
3001       Constructor = cast<CXXConstructorDecl>(D);
3002 
3003       // If we're performing copy initialization using a copy constructor, we
3004       // suppress user-defined conversions on the arguments. We do the same for
3005       // move constructors.
3006       if ((CopyInitializing || (InitListSyntax && Args.size() == 1)) &&
3007           Constructor->isCopyOrMoveConstructor())
3008         SuppressUserConversions = true;
3009     }
3010 
3011     if (!Constructor->isInvalidDecl() &&
3012         (AllowExplicit || !Constructor->isExplicit()) &&
3013         (!OnlyListConstructors || S.isInitListConstructor(Constructor))) {
3014       if (ConstructorTmpl)
3015         S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
3016                                        /*ExplicitArgs*/ 0, Args,
3017                                        CandidateSet, SuppressUserConversions);
3018       else {
3019         // C++ [over.match.copy]p1:
3020         //   - When initializing a temporary to be bound to the first parameter
3021         //     of a constructor that takes a reference to possibly cv-qualified
3022         //     T as its first argument, called with a single argument in the
3023         //     context of direct-initialization, explicit conversion functions
3024         //     are also considered.
3025         bool AllowExplicitConv = AllowExplicit && !CopyInitializing &&
3026                                  Args.size() == 1 &&
3027                                  Constructor->isCopyOrMoveConstructor();
3028         S.AddOverloadCandidate(Constructor, FoundDecl, Args, CandidateSet,
3029                                SuppressUserConversions,
3030                                /*PartialOverloading=*/false,
3031                                /*AllowExplicit=*/AllowExplicitConv);
3032       }
3033     }
3034   }
3035 
3036   // Perform overload resolution and return the result.
3037   return CandidateSet.BestViableFunction(S, DeclLoc, Best);
3038 }
3039 
3040 /// \brief Attempt initialization by constructor (C++ [dcl.init]), which
3041 /// enumerates the constructors of the initialized entity and performs overload
3042 /// resolution to select the best.
3043 /// If InitListSyntax is true, this is list-initialization of a non-aggregate
3044 /// class type.
3045 static void TryConstructorInitialization(Sema &S,
3046                                          const InitializedEntity &Entity,
3047                                          const InitializationKind &Kind,
3048                                          MultiExprArg Args, QualType DestType,
3049                                          InitializationSequence &Sequence,
3050                                          bool InitListSyntax = false) {
3051   assert((!InitListSyntax || (Args.size() == 1 && isa<InitListExpr>(Args[0]))) &&
3052          "InitListSyntax must come with a single initializer list argument.");
3053 
3054   // The type we're constructing needs to be complete.
3055   if (S.RequireCompleteType(Kind.getLocation(), DestType, 0)) {
3056     Sequence.setIncompleteTypeFailure(DestType);
3057     return;
3058   }
3059 
3060   const RecordType *DestRecordType = DestType->getAs<RecordType>();
3061   assert(DestRecordType && "Constructor initialization requires record type");
3062   CXXRecordDecl *DestRecordDecl
3063     = cast<CXXRecordDecl>(DestRecordType->getDecl());
3064 
3065   // Build the candidate set directly in the initialization sequence
3066   // structure, so that it will persist if we fail.
3067   OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
3068 
3069   // Determine whether we are allowed to call explicit constructors or
3070   // explicit conversion operators.
3071   bool AllowExplicit = Kind.AllowExplicit() || InitListSyntax;
3072   bool CopyInitialization = Kind.getKind() == InitializationKind::IK_Copy;
3073 
3074   //   - Otherwise, if T is a class type, constructors are considered. The
3075   //     applicable constructors are enumerated, and the best one is chosen
3076   //     through overload resolution.
3077   DeclContext::lookup_result R = S.LookupConstructors(DestRecordDecl);
3078   // The container holding the constructors can under certain conditions
3079   // be changed while iterating (e.g. because of deserialization).
3080   // To be safe we copy the lookup results to a new container.
3081   SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end());
3082 
3083   OverloadingResult Result = OR_No_Viable_Function;
3084   OverloadCandidateSet::iterator Best;
3085   bool AsInitializerList = false;
3086 
3087   // C++11 [over.match.list]p1:
3088   //   When objects of non-aggregate type T are list-initialized, overload
3089   //   resolution selects the constructor in two phases:
3090   //   - Initially, the candidate functions are the initializer-list
3091   //     constructors of the class T and the argument list consists of the
3092   //     initializer list as a single argument.
3093   if (InitListSyntax) {
3094     InitListExpr *ILE = cast<InitListExpr>(Args[0]);
3095     AsInitializerList = true;
3096 
3097     // If the initializer list has no elements and T has a default constructor,
3098     // the first phase is omitted.
3099     if (ILE->getNumInits() != 0 || !DestRecordDecl->hasDefaultConstructor())
3100       Result = ResolveConstructorOverload(S, Kind.getLocation(), Args,
3101                                           CandidateSet, Ctors, Best,
3102                                           CopyInitialization, AllowExplicit,
3103                                           /*OnlyListConstructor=*/true,
3104                                           InitListSyntax);
3105 
3106     // Time to unwrap the init list.
3107     Args = MultiExprArg(ILE->getInits(), ILE->getNumInits());
3108   }
3109 
3110   // C++11 [over.match.list]p1:
3111   //   - If no viable initializer-list constructor is found, overload resolution
3112   //     is performed again, where the candidate functions are all the
3113   //     constructors of the class T and the argument list consists of the
3114   //     elements of the initializer list.
3115   if (Result == OR_No_Viable_Function) {
3116     AsInitializerList = false;
3117     Result = ResolveConstructorOverload(S, Kind.getLocation(), Args,
3118                                         CandidateSet, Ctors, Best,
3119                                         CopyInitialization, AllowExplicit,
3120                                         /*OnlyListConstructors=*/false,
3121                                         InitListSyntax);
3122   }
3123   if (Result) {
3124     Sequence.SetOverloadFailure(InitListSyntax ?
3125                       InitializationSequence::FK_ListConstructorOverloadFailed :
3126                       InitializationSequence::FK_ConstructorOverloadFailed,
3127                                 Result);
3128     return;
3129   }
3130 
3131   // C++11 [dcl.init]p6:
3132   //   If a program calls for the default initialization of an object
3133   //   of a const-qualified type T, T shall be a class type with a
3134   //   user-provided default constructor.
3135   if (Kind.getKind() == InitializationKind::IK_Default &&
3136       Entity.getType().isConstQualified() &&
3137       !cast<CXXConstructorDecl>(Best->Function)->isUserProvided()) {
3138     Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst);
3139     return;
3140   }
3141 
3142   // C++11 [over.match.list]p1:
3143   //   In copy-list-initialization, if an explicit constructor is chosen, the
3144   //   initializer is ill-formed.
3145   CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
3146   if (InitListSyntax && !Kind.AllowExplicit() && CtorDecl->isExplicit()) {
3147     Sequence.SetFailed(InitializationSequence::FK_ExplicitConstructor);
3148     return;
3149   }
3150 
3151   // Add the constructor initialization step. Any cv-qualification conversion is
3152   // subsumed by the initialization.
3153   bool HadMultipleCandidates = (CandidateSet.size() > 1);
3154   Sequence.AddConstructorInitializationStep(CtorDecl,
3155                                             Best->FoundDecl.getAccess(),
3156                                             DestType, HadMultipleCandidates,
3157                                             InitListSyntax, AsInitializerList);
3158 }
3159 
3160 static bool
3161 ResolveOverloadedFunctionForReferenceBinding(Sema &S,
3162                                              Expr *Initializer,
3163                                              QualType &SourceType,
3164                                              QualType &UnqualifiedSourceType,
3165                                              QualType UnqualifiedTargetType,
3166                                              InitializationSequence &Sequence) {
3167   if (S.Context.getCanonicalType(UnqualifiedSourceType) ==
3168         S.Context.OverloadTy) {
3169     DeclAccessPair Found;
3170     bool HadMultipleCandidates = false;
3171     if (FunctionDecl *Fn
3172         = S.ResolveAddressOfOverloadedFunction(Initializer,
3173                                                UnqualifiedTargetType,
3174                                                false, Found,
3175                                                &HadMultipleCandidates)) {
3176       Sequence.AddAddressOverloadResolutionStep(Fn, Found,
3177                                                 HadMultipleCandidates);
3178       SourceType = Fn->getType();
3179       UnqualifiedSourceType = SourceType.getUnqualifiedType();
3180     } else if (!UnqualifiedTargetType->isRecordType()) {
3181       Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
3182       return true;
3183     }
3184   }
3185   return false;
3186 }
3187 
3188 static void TryReferenceInitializationCore(Sema &S,
3189                                            const InitializedEntity &Entity,
3190                                            const InitializationKind &Kind,
3191                                            Expr *Initializer,
3192                                            QualType cv1T1, QualType T1,
3193                                            Qualifiers T1Quals,
3194                                            QualType cv2T2, QualType T2,
3195                                            Qualifiers T2Quals,
3196                                            InitializationSequence &Sequence);
3197 
3198 static void TryValueInitialization(Sema &S,
3199                                    const InitializedEntity &Entity,
3200                                    const InitializationKind &Kind,
3201                                    InitializationSequence &Sequence,
3202                                    InitListExpr *InitList = 0);
3203 
3204 /// \brief Attempt list initialization of a reference.
3205 static void TryReferenceListInitialization(Sema &S,
3206                                            const InitializedEntity &Entity,
3207                                            const InitializationKind &Kind,
3208                                            InitListExpr *InitList,
3209                                            InitializationSequence &Sequence) {
3210   // First, catch C++03 where this isn't possible.
3211   if (!S.getLangOpts().CPlusPlus11) {
3212     Sequence.SetFailed(InitializationSequence::FK_ReferenceBindingToInitList);
3213     return;
3214   }
3215 
3216   QualType DestType = Entity.getType();
3217   QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
3218   Qualifiers T1Quals;
3219   QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals);
3220 
3221   // Reference initialization via an initializer list works thus:
3222   // If the initializer list consists of a single element that is
3223   // reference-related to the referenced type, bind directly to that element
3224   // (possibly creating temporaries).
3225   // Otherwise, initialize a temporary with the initializer list and
3226   // bind to that.
3227   if (InitList->getNumInits() == 1) {
3228     Expr *Initializer = InitList->getInit(0);
3229     QualType cv2T2 = Initializer->getType();
3230     Qualifiers T2Quals;
3231     QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals);
3232 
3233     // If this fails, creating a temporary wouldn't work either.
3234     if (ResolveOverloadedFunctionForReferenceBinding(S, Initializer, cv2T2, T2,
3235                                                      T1, Sequence))
3236       return;
3237 
3238     SourceLocation DeclLoc = Initializer->getLocStart();
3239     bool dummy1, dummy2, dummy3;
3240     Sema::ReferenceCompareResult RefRelationship
3241       = S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, dummy1,
3242                                        dummy2, dummy3);
3243     if (RefRelationship >= Sema::Ref_Related) {
3244       // Try to bind the reference here.
3245       TryReferenceInitializationCore(S, Entity, Kind, Initializer, cv1T1, T1,
3246                                      T1Quals, cv2T2, T2, T2Quals, Sequence);
3247       if (Sequence)
3248         Sequence.RewrapReferenceInitList(cv1T1, InitList);
3249       return;
3250     }
3251 
3252     // Update the initializer if we've resolved an overloaded function.
3253     if (Sequence.step_begin() != Sequence.step_end())
3254       Sequence.RewrapReferenceInitList(cv1T1, InitList);
3255   }
3256 
3257   // Not reference-related. Create a temporary and bind to that.
3258   InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(cv1T1);
3259 
3260   TryListInitialization(S, TempEntity, Kind, InitList, Sequence);
3261   if (Sequence) {
3262     if (DestType->isRValueReferenceType() ||
3263         (T1Quals.hasConst() && !T1Quals.hasVolatile()))
3264       Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true);
3265     else
3266       Sequence.SetFailed(
3267           InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary);
3268   }
3269 }
3270 
3271 /// \brief Attempt list initialization (C++0x [dcl.init.list])
3272 static void TryListInitialization(Sema &S,
3273                                   const InitializedEntity &Entity,
3274                                   const InitializationKind &Kind,
3275                                   InitListExpr *InitList,
3276                                   InitializationSequence &Sequence) {
3277   QualType DestType = Entity.getType();
3278 
3279   // C++ doesn't allow scalar initialization with more than one argument.
3280   // But C99 complex numbers are scalars and it makes sense there.
3281   if (S.getLangOpts().CPlusPlus && DestType->isScalarType() &&
3282       !DestType->isAnyComplexType() && InitList->getNumInits() > 1) {
3283     Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForScalar);
3284     return;
3285   }
3286   if (DestType->isReferenceType()) {
3287     TryReferenceListInitialization(S, Entity, Kind, InitList, Sequence);
3288     return;
3289   }
3290   if (DestType->isRecordType()) {
3291     if (S.RequireCompleteType(InitList->getLocStart(), DestType, 0)) {
3292       Sequence.setIncompleteTypeFailure(DestType);
3293       return;
3294     }
3295 
3296     // C++11 [dcl.init.list]p3:
3297     //   - If T is an aggregate, aggregate initialization is performed.
3298     if (!DestType->isAggregateType()) {
3299       if (S.getLangOpts().CPlusPlus11) {
3300         //   - Otherwise, if the initializer list has no elements and T is a
3301         //     class type with a default constructor, the object is
3302         //     value-initialized.
3303         if (InitList->getNumInits() == 0) {
3304           CXXRecordDecl *RD = DestType->getAsCXXRecordDecl();
3305           if (RD->hasDefaultConstructor()) {
3306             TryValueInitialization(S, Entity, Kind, Sequence, InitList);
3307             return;
3308           }
3309         }
3310 
3311         //   - Otherwise, if T is a specialization of std::initializer_list<E>,
3312         //     an initializer_list object constructed [...]
3313         if (TryInitializerListConstruction(S, InitList, DestType, Sequence))
3314           return;
3315 
3316         //   - Otherwise, if T is a class type, constructors are considered.
3317         Expr *InitListAsExpr = InitList;
3318         TryConstructorInitialization(S, Entity, Kind, InitListAsExpr, DestType,
3319                                      Sequence, /*InitListSyntax*/true);
3320       } else
3321         Sequence.SetFailed(
3322             InitializationSequence::FK_InitListBadDestinationType);
3323       return;
3324     }
3325   }
3326 
3327   InitListChecker CheckInitList(S, Entity, InitList,
3328           DestType, /*VerifyOnly=*/true);
3329   if (CheckInitList.HadError()) {
3330     Sequence.SetFailed(InitializationSequence::FK_ListInitializationFailed);
3331     return;
3332   }
3333 
3334   // Add the list initialization step with the built init list.
3335   Sequence.AddListInitializationStep(DestType);
3336 }
3337 
3338 /// \brief Try a reference initialization that involves calling a conversion
3339 /// function.
3340 static OverloadingResult TryRefInitWithConversionFunction(Sema &S,
3341                                              const InitializedEntity &Entity,
3342                                              const InitializationKind &Kind,
3343                                              Expr *Initializer,
3344                                              bool AllowRValues,
3345                                              InitializationSequence &Sequence) {
3346   QualType DestType = Entity.getType();
3347   QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
3348   QualType T1 = cv1T1.getUnqualifiedType();
3349   QualType cv2T2 = Initializer->getType();
3350   QualType T2 = cv2T2.getUnqualifiedType();
3351 
3352   bool DerivedToBase;
3353   bool ObjCConversion;
3354   bool ObjCLifetimeConversion;
3355   assert(!S.CompareReferenceRelationship(Initializer->getLocStart(),
3356                                          T1, T2, DerivedToBase,
3357                                          ObjCConversion,
3358                                          ObjCLifetimeConversion) &&
3359          "Must have incompatible references when binding via conversion");
3360   (void)DerivedToBase;
3361   (void)ObjCConversion;
3362   (void)ObjCLifetimeConversion;
3363 
3364   // Build the candidate set directly in the initialization sequence
3365   // structure, so that it will persist if we fail.
3366   OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
3367   CandidateSet.clear();
3368 
3369   // Determine whether we are allowed to call explicit constructors or
3370   // explicit conversion operators.
3371   bool AllowExplicit = Kind.AllowExplicit();
3372   bool AllowExplicitConvs = Kind.allowExplicitConversionFunctions();
3373 
3374   const RecordType *T1RecordType = 0;
3375   if (AllowRValues && (T1RecordType = T1->getAs<RecordType>()) &&
3376       !S.RequireCompleteType(Kind.getLocation(), T1, 0)) {
3377     // The type we're converting to is a class type. Enumerate its constructors
3378     // to see if there is a suitable conversion.
3379     CXXRecordDecl *T1RecordDecl = cast<CXXRecordDecl>(T1RecordType->getDecl());
3380 
3381     DeclContext::lookup_result R = S.LookupConstructors(T1RecordDecl);
3382     // The container holding the constructors can under certain conditions
3383     // be changed while iterating (e.g. because of deserialization).
3384     // To be safe we copy the lookup results to a new container.
3385     SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end());
3386     for (SmallVector<NamedDecl*, 16>::iterator
3387            CI = Ctors.begin(), CE = Ctors.end(); CI != CE; ++CI) {
3388       NamedDecl *D = *CI;
3389       DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
3390 
3391       // Find the constructor (which may be a template).
3392       CXXConstructorDecl *Constructor = 0;
3393       FunctionTemplateDecl *ConstructorTmpl = dyn_cast<FunctionTemplateDecl>(D);
3394       if (ConstructorTmpl)
3395         Constructor = cast<CXXConstructorDecl>(
3396                                          ConstructorTmpl->getTemplatedDecl());
3397       else
3398         Constructor = cast<CXXConstructorDecl>(D);
3399 
3400       if (!Constructor->isInvalidDecl() &&
3401           Constructor->isConvertingConstructor(AllowExplicit)) {
3402         if (ConstructorTmpl)
3403           S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
3404                                          /*ExplicitArgs*/ 0,
3405                                          Initializer, CandidateSet,
3406                                          /*SuppressUserConversions=*/true);
3407         else
3408           S.AddOverloadCandidate(Constructor, FoundDecl,
3409                                  Initializer, CandidateSet,
3410                                  /*SuppressUserConversions=*/true);
3411       }
3412     }
3413   }
3414   if (T1RecordType && T1RecordType->getDecl()->isInvalidDecl())
3415     return OR_No_Viable_Function;
3416 
3417   const RecordType *T2RecordType = 0;
3418   if ((T2RecordType = T2->getAs<RecordType>()) &&
3419       !S.RequireCompleteType(Kind.getLocation(), T2, 0)) {
3420     // The type we're converting from is a class type, enumerate its conversion
3421     // functions.
3422     CXXRecordDecl *T2RecordDecl = cast<CXXRecordDecl>(T2RecordType->getDecl());
3423 
3424     std::pair<CXXRecordDecl::conversion_iterator,
3425               CXXRecordDecl::conversion_iterator>
3426       Conversions = T2RecordDecl->getVisibleConversionFunctions();
3427     for (CXXRecordDecl::conversion_iterator
3428            I = Conversions.first, E = Conversions.second; I != E; ++I) {
3429       NamedDecl *D = *I;
3430       CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
3431       if (isa<UsingShadowDecl>(D))
3432         D = cast<UsingShadowDecl>(D)->getTargetDecl();
3433 
3434       FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D);
3435       CXXConversionDecl *Conv;
3436       if (ConvTemplate)
3437         Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
3438       else
3439         Conv = cast<CXXConversionDecl>(D);
3440 
3441       // If the conversion function doesn't return a reference type,
3442       // it can't be considered for this conversion unless we're allowed to
3443       // consider rvalues.
3444       // FIXME: Do we need to make sure that we only consider conversion
3445       // candidates with reference-compatible results? That might be needed to
3446       // break recursion.
3447       if ((AllowExplicitConvs || !Conv->isExplicit()) &&
3448           (AllowRValues || Conv->getConversionType()->isLValueReferenceType())){
3449         if (ConvTemplate)
3450           S.AddTemplateConversionCandidate(ConvTemplate, I.getPair(),
3451                                            ActingDC, Initializer,
3452                                            DestType, CandidateSet);
3453         else
3454           S.AddConversionCandidate(Conv, I.getPair(), ActingDC,
3455                                    Initializer, DestType, CandidateSet);
3456       }
3457     }
3458   }
3459   if (T2RecordType && T2RecordType->getDecl()->isInvalidDecl())
3460     return OR_No_Viable_Function;
3461 
3462   SourceLocation DeclLoc = Initializer->getLocStart();
3463 
3464   // Perform overload resolution. If it fails, return the failed result.
3465   OverloadCandidateSet::iterator Best;
3466   if (OverloadingResult Result
3467         = CandidateSet.BestViableFunction(S, DeclLoc, Best, true))
3468     return Result;
3469 
3470   FunctionDecl *Function = Best->Function;
3471   // This is the overload that will be used for this initialization step if we
3472   // use this initialization. Mark it as referenced.
3473   Function->setReferenced();
3474 
3475   // Compute the returned type of the conversion.
3476   if (isa<CXXConversionDecl>(Function))
3477     T2 = Function->getResultType();
3478   else
3479     T2 = cv1T1;
3480 
3481   // Add the user-defined conversion step.
3482   bool HadMultipleCandidates = (CandidateSet.size() > 1);
3483   Sequence.AddUserConversionStep(Function, Best->FoundDecl,
3484                                  T2.getNonLValueExprType(S.Context),
3485                                  HadMultipleCandidates);
3486 
3487   // Determine whether we need to perform derived-to-base or
3488   // cv-qualification adjustments.
3489   ExprValueKind VK = VK_RValue;
3490   if (T2->isLValueReferenceType())
3491     VK = VK_LValue;
3492   else if (const RValueReferenceType *RRef = T2->getAs<RValueReferenceType>())
3493     VK = RRef->getPointeeType()->isFunctionType() ? VK_LValue : VK_XValue;
3494 
3495   bool NewDerivedToBase = false;
3496   bool NewObjCConversion = false;
3497   bool NewObjCLifetimeConversion = false;
3498   Sema::ReferenceCompareResult NewRefRelationship
3499     = S.CompareReferenceRelationship(DeclLoc, T1,
3500                                      T2.getNonLValueExprType(S.Context),
3501                                      NewDerivedToBase, NewObjCConversion,
3502                                      NewObjCLifetimeConversion);
3503   if (NewRefRelationship == Sema::Ref_Incompatible) {
3504     // If the type we've converted to is not reference-related to the
3505     // type we're looking for, then there is another conversion step
3506     // we need to perform to produce a temporary of the right type
3507     // that we'll be binding to.
3508     ImplicitConversionSequence ICS;
3509     ICS.setStandard();
3510     ICS.Standard = Best->FinalConversion;
3511     T2 = ICS.Standard.getToType(2);
3512     Sequence.AddConversionSequenceStep(ICS, T2);
3513   } else if (NewDerivedToBase)
3514     Sequence.AddDerivedToBaseCastStep(
3515                                 S.Context.getQualifiedType(T1,
3516                                   T2.getNonReferenceType().getQualifiers()),
3517                                       VK);
3518   else if (NewObjCConversion)
3519     Sequence.AddObjCObjectConversionStep(
3520                                 S.Context.getQualifiedType(T1,
3521                                   T2.getNonReferenceType().getQualifiers()));
3522 
3523   if (cv1T1.getQualifiers() != T2.getNonReferenceType().getQualifiers())
3524     Sequence.AddQualificationConversionStep(cv1T1, VK);
3525 
3526   Sequence.AddReferenceBindingStep(cv1T1, !T2->isReferenceType());
3527   return OR_Success;
3528 }
3529 
3530 static void CheckCXX98CompatAccessibleCopy(Sema &S,
3531                                            const InitializedEntity &Entity,
3532                                            Expr *CurInitExpr);
3533 
3534 /// \brief Attempt reference initialization (C++0x [dcl.init.ref])
3535 static void TryReferenceInitialization(Sema &S,
3536                                        const InitializedEntity &Entity,
3537                                        const InitializationKind &Kind,
3538                                        Expr *Initializer,
3539                                        InitializationSequence &Sequence) {
3540   QualType DestType = Entity.getType();
3541   QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
3542   Qualifiers T1Quals;
3543   QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals);
3544   QualType cv2T2 = Initializer->getType();
3545   Qualifiers T2Quals;
3546   QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals);
3547 
3548   // If the initializer is the address of an overloaded function, try
3549   // to resolve the overloaded function. If all goes well, T2 is the
3550   // type of the resulting function.
3551   if (ResolveOverloadedFunctionForReferenceBinding(S, Initializer, cv2T2, T2,
3552                                                    T1, Sequence))
3553     return;
3554 
3555   // Delegate everything else to a subfunction.
3556   TryReferenceInitializationCore(S, Entity, Kind, Initializer, cv1T1, T1,
3557                                  T1Quals, cv2T2, T2, T2Quals, Sequence);
3558 }
3559 
3560 /// Converts the target of reference initialization so that it has the
3561 /// appropriate qualifiers and value kind.
3562 ///
3563 /// In this case, 'x' is an 'int' lvalue, but it needs to be 'const int'.
3564 /// \code
3565 ///   int x;
3566 ///   const int &r = x;
3567 /// \endcode
3568 ///
3569 /// In this case the reference is binding to a bitfield lvalue, which isn't
3570 /// valid. Perform a load to create a lifetime-extended temporary instead.
3571 /// \code
3572 ///   const int &r = someStruct.bitfield;
3573 /// \endcode
3574 static ExprValueKind
3575 convertQualifiersAndValueKindIfNecessary(Sema &S,
3576                                          InitializationSequence &Sequence,
3577                                          Expr *Initializer,
3578                                          QualType cv1T1,
3579                                          Qualifiers T1Quals,
3580                                          Qualifiers T2Quals,
3581                                          bool IsLValueRef) {
3582   bool IsNonAddressableType = Initializer->refersToBitField() ||
3583                               Initializer->refersToVectorElement();
3584 
3585   if (IsNonAddressableType) {
3586     // C++11 [dcl.init.ref]p5: [...] Otherwise, the reference shall be an
3587     // lvalue reference to a non-volatile const type, or the reference shall be
3588     // an rvalue reference.
3589     //
3590     // If not, we can't make a temporary and bind to that. Give up and allow the
3591     // error to be diagnosed later.
3592     if (IsLValueRef && (!T1Quals.hasConst() || T1Quals.hasVolatile())) {
3593       assert(Initializer->isGLValue());
3594       return Initializer->getValueKind();
3595     }
3596 
3597     // Force a load so we can materialize a temporary.
3598     Sequence.AddLValueToRValueStep(cv1T1.getUnqualifiedType());
3599     return VK_RValue;
3600   }
3601 
3602   if (T1Quals != T2Quals) {
3603     Sequence.AddQualificationConversionStep(cv1T1,
3604                                             Initializer->getValueKind());
3605   }
3606 
3607   return Initializer->getValueKind();
3608 }
3609 
3610 
3611 /// \brief Reference initialization without resolving overloaded functions.
3612 static void TryReferenceInitializationCore(Sema &S,
3613                                            const InitializedEntity &Entity,
3614                                            const InitializationKind &Kind,
3615                                            Expr *Initializer,
3616                                            QualType cv1T1, QualType T1,
3617                                            Qualifiers T1Quals,
3618                                            QualType cv2T2, QualType T2,
3619                                            Qualifiers T2Quals,
3620                                            InitializationSequence &Sequence) {
3621   QualType DestType = Entity.getType();
3622   SourceLocation DeclLoc = Initializer->getLocStart();
3623   // Compute some basic properties of the types and the initializer.
3624   bool isLValueRef = DestType->isLValueReferenceType();
3625   bool isRValueRef = !isLValueRef;
3626   bool DerivedToBase = false;
3627   bool ObjCConversion = false;
3628   bool ObjCLifetimeConversion = false;
3629   Expr::Classification InitCategory = Initializer->Classify(S.Context);
3630   Sema::ReferenceCompareResult RefRelationship
3631     = S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, DerivedToBase,
3632                                      ObjCConversion, ObjCLifetimeConversion);
3633 
3634   // C++0x [dcl.init.ref]p5:
3635   //   A reference to type "cv1 T1" is initialized by an expression of type
3636   //   "cv2 T2" as follows:
3637   //
3638   //     - If the reference is an lvalue reference and the initializer
3639   //       expression
3640   // Note the analogous bullet points for rvlaue refs to functions. Because
3641   // there are no function rvalues in C++, rvalue refs to functions are treated
3642   // like lvalue refs.
3643   OverloadingResult ConvOvlResult = OR_Success;
3644   bool T1Function = T1->isFunctionType();
3645   if (isLValueRef || T1Function) {
3646     if (InitCategory.isLValue() &&
3647         (RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification ||
3648          (Kind.isCStyleOrFunctionalCast() &&
3649           RefRelationship == Sema::Ref_Related))) {
3650       //   - is an lvalue (but is not a bit-field), and "cv1 T1" is
3651       //     reference-compatible with "cv2 T2," or
3652       //
3653       // Per C++ [over.best.ics]p2, we don't diagnose whether the lvalue is a
3654       // bit-field when we're determining whether the reference initialization
3655       // can occur. However, we do pay attention to whether it is a bit-field
3656       // to decide whether we're actually binding to a temporary created from
3657       // the bit-field.
3658       if (DerivedToBase)
3659         Sequence.AddDerivedToBaseCastStep(
3660                          S.Context.getQualifiedType(T1, T2Quals),
3661                          VK_LValue);
3662       else if (ObjCConversion)
3663         Sequence.AddObjCObjectConversionStep(
3664                                      S.Context.getQualifiedType(T1, T2Quals));
3665 
3666       ExprValueKind ValueKind =
3667         convertQualifiersAndValueKindIfNecessary(S, Sequence, Initializer,
3668                                                  cv1T1, T1Quals, T2Quals,
3669                                                  isLValueRef);
3670       Sequence.AddReferenceBindingStep(cv1T1, ValueKind == VK_RValue);
3671       return;
3672     }
3673 
3674     //     - has a class type (i.e., T2 is a class type), where T1 is not
3675     //       reference-related to T2, and can be implicitly converted to an
3676     //       lvalue of type "cv3 T3," where "cv1 T1" is reference-compatible
3677     //       with "cv3 T3" (this conversion is selected by enumerating the
3678     //       applicable conversion functions (13.3.1.6) and choosing the best
3679     //       one through overload resolution (13.3)),
3680     // If we have an rvalue ref to function type here, the rhs must be
3681     // an rvalue.
3682     if (RefRelationship == Sema::Ref_Incompatible && T2->isRecordType() &&
3683         (isLValueRef || InitCategory.isRValue())) {
3684       ConvOvlResult = TryRefInitWithConversionFunction(S, Entity, Kind,
3685                                                        Initializer,
3686                                                    /*AllowRValues=*/isRValueRef,
3687                                                        Sequence);
3688       if (ConvOvlResult == OR_Success)
3689         return;
3690       if (ConvOvlResult != OR_No_Viable_Function) {
3691         Sequence.SetOverloadFailure(
3692                       InitializationSequence::FK_ReferenceInitOverloadFailed,
3693                                     ConvOvlResult);
3694       }
3695     }
3696   }
3697 
3698   //     - Otherwise, the reference shall be an lvalue reference to a
3699   //       non-volatile const type (i.e., cv1 shall be const), or the reference
3700   //       shall be an rvalue reference.
3701   if (isLValueRef && !(T1Quals.hasConst() && !T1Quals.hasVolatile())) {
3702     if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy)
3703       Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
3704     else if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty())
3705       Sequence.SetOverloadFailure(
3706                         InitializationSequence::FK_ReferenceInitOverloadFailed,
3707                                   ConvOvlResult);
3708     else
3709       Sequence.SetFailed(InitCategory.isLValue()
3710         ? (RefRelationship == Sema::Ref_Related
3711              ? InitializationSequence::FK_ReferenceInitDropsQualifiers
3712              : InitializationSequence::FK_NonConstLValueReferenceBindingToUnrelated)
3713         : InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary);
3714 
3715     return;
3716   }
3717 
3718   //    - If the initializer expression
3719   //      - is an xvalue, class prvalue, array prvalue, or function lvalue and
3720   //        "cv1 T1" is reference-compatible with "cv2 T2"
3721   // Note: functions are handled below.
3722   if (!T1Function &&
3723       (RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification ||
3724        (Kind.isCStyleOrFunctionalCast() &&
3725         RefRelationship == Sema::Ref_Related)) &&
3726       (InitCategory.isXValue() ||
3727        (InitCategory.isPRValue() && T2->isRecordType()) ||
3728        (InitCategory.isPRValue() && T2->isArrayType()))) {
3729     ExprValueKind ValueKind = InitCategory.isXValue()? VK_XValue : VK_RValue;
3730     if (InitCategory.isPRValue() && T2->isRecordType()) {
3731       // The corresponding bullet in C++03 [dcl.init.ref]p5 gives the
3732       // compiler the freedom to perform a copy here or bind to the
3733       // object, while C++0x requires that we bind directly to the
3734       // object. Hence, we always bind to the object without making an
3735       // extra copy. However, in C++03 requires that we check for the
3736       // presence of a suitable copy constructor:
3737       //
3738       //   The constructor that would be used to make the copy shall
3739       //   be callable whether or not the copy is actually done.
3740       if (!S.getLangOpts().CPlusPlus11 && !S.getLangOpts().MicrosoftExt)
3741         Sequence.AddExtraneousCopyToTemporary(cv2T2);
3742       else if (S.getLangOpts().CPlusPlus11)
3743         CheckCXX98CompatAccessibleCopy(S, Entity, Initializer);
3744     }
3745 
3746     if (DerivedToBase)
3747       Sequence.AddDerivedToBaseCastStep(S.Context.getQualifiedType(T1, T2Quals),
3748                                         ValueKind);
3749     else if (ObjCConversion)
3750       Sequence.AddObjCObjectConversionStep(
3751                                        S.Context.getQualifiedType(T1, T2Quals));
3752 
3753     ValueKind = convertQualifiersAndValueKindIfNecessary(S, Sequence,
3754                                                          Initializer, cv1T1,
3755                                                          T1Quals, T2Quals,
3756                                                          isLValueRef);
3757 
3758     Sequence.AddReferenceBindingStep(cv1T1, ValueKind == VK_RValue);
3759     return;
3760   }
3761 
3762   //       - has a class type (i.e., T2 is a class type), where T1 is not
3763   //         reference-related to T2, and can be implicitly converted to an
3764   //         xvalue, class prvalue, or function lvalue of type "cv3 T3",
3765   //         where "cv1 T1" is reference-compatible with "cv3 T3",
3766   if (T2->isRecordType()) {
3767     if (RefRelationship == Sema::Ref_Incompatible) {
3768       ConvOvlResult = TryRefInitWithConversionFunction(S, Entity,
3769                                                        Kind, Initializer,
3770                                                        /*AllowRValues=*/true,
3771                                                        Sequence);
3772       if (ConvOvlResult)
3773         Sequence.SetOverloadFailure(
3774                       InitializationSequence::FK_ReferenceInitOverloadFailed,
3775                                     ConvOvlResult);
3776 
3777       return;
3778     }
3779 
3780     if ((RefRelationship == Sema::Ref_Compatible ||
3781          RefRelationship == Sema::Ref_Compatible_With_Added_Qualification) &&
3782         isRValueRef && InitCategory.isLValue()) {
3783       Sequence.SetFailed(
3784         InitializationSequence::FK_RValueReferenceBindingToLValue);
3785       return;
3786     }
3787 
3788     Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers);
3789     return;
3790   }
3791 
3792   //      - Otherwise, a temporary of type "cv1 T1" is created and initialized
3793   //        from the initializer expression using the rules for a non-reference
3794   //        copy-initialization (8.5). The reference is then bound to the
3795   //        temporary. [...]
3796 
3797   InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(cv1T1);
3798 
3799   // FIXME: Why do we use an implicit conversion here rather than trying
3800   // copy-initialization?
3801   ImplicitConversionSequence ICS
3802     = S.TryImplicitConversion(Initializer, TempEntity.getType(),
3803                               /*SuppressUserConversions=*/false,
3804                               /*AllowExplicit=*/false,
3805                               /*FIXME:InOverloadResolution=*/false,
3806                               /*CStyle=*/Kind.isCStyleOrFunctionalCast(),
3807                               /*AllowObjCWritebackConversion=*/false);
3808 
3809   if (ICS.isBad()) {
3810     // FIXME: Use the conversion function set stored in ICS to turn
3811     // this into an overloading ambiguity diagnostic. However, we need
3812     // to keep that set as an OverloadCandidateSet rather than as some
3813     // other kind of set.
3814     if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty())
3815       Sequence.SetOverloadFailure(
3816                         InitializationSequence::FK_ReferenceInitOverloadFailed,
3817                                   ConvOvlResult);
3818     else if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy)
3819       Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
3820     else
3821       Sequence.SetFailed(InitializationSequence::FK_ReferenceInitFailed);
3822     return;
3823   } else {
3824     Sequence.AddConversionSequenceStep(ICS, TempEntity.getType());
3825   }
3826 
3827   //        [...] If T1 is reference-related to T2, cv1 must be the
3828   //        same cv-qualification as, or greater cv-qualification
3829   //        than, cv2; otherwise, the program is ill-formed.
3830   unsigned T1CVRQuals = T1Quals.getCVRQualifiers();
3831   unsigned T2CVRQuals = T2Quals.getCVRQualifiers();
3832   if (RefRelationship == Sema::Ref_Related &&
3833       (T1CVRQuals | T2CVRQuals) != T1CVRQuals) {
3834     Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers);
3835     return;
3836   }
3837 
3838   //   [...] If T1 is reference-related to T2 and the reference is an rvalue
3839   //   reference, the initializer expression shall not be an lvalue.
3840   if (RefRelationship >= Sema::Ref_Related && !isLValueRef &&
3841       InitCategory.isLValue()) {
3842     Sequence.SetFailed(
3843                     InitializationSequence::FK_RValueReferenceBindingToLValue);
3844     return;
3845   }
3846 
3847   Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true);
3848   return;
3849 }
3850 
3851 /// \brief Attempt character array initialization from a string literal
3852 /// (C++ [dcl.init.string], C99 6.7.8).
3853 static void TryStringLiteralInitialization(Sema &S,
3854                                            const InitializedEntity &Entity,
3855                                            const InitializationKind &Kind,
3856                                            Expr *Initializer,
3857                                        InitializationSequence &Sequence) {
3858   Sequence.AddStringInitStep(Entity.getType());
3859 }
3860 
3861 /// \brief Attempt value initialization (C++ [dcl.init]p7).
3862 static void TryValueInitialization(Sema &S,
3863                                    const InitializedEntity &Entity,
3864                                    const InitializationKind &Kind,
3865                                    InitializationSequence &Sequence,
3866                                    InitListExpr *InitList) {
3867   assert((!InitList || InitList->getNumInits() == 0) &&
3868          "Shouldn't use value-init for non-empty init lists");
3869 
3870   // C++98 [dcl.init]p5, C++11 [dcl.init]p7:
3871   //
3872   //   To value-initialize an object of type T means:
3873   QualType T = Entity.getType();
3874 
3875   //     -- if T is an array type, then each element is value-initialized;
3876   T = S.Context.getBaseElementType(T);
3877 
3878   if (const RecordType *RT = T->getAs<RecordType>()) {
3879     if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
3880       bool NeedZeroInitialization = true;
3881       if (!S.getLangOpts().CPlusPlus11) {
3882         // C++98:
3883         // -- if T is a class type (clause 9) with a user-declared constructor
3884         //    (12.1), then the default constructor for T is called (and the
3885         //    initialization is ill-formed if T has no accessible default
3886         //    constructor);
3887         if (ClassDecl->hasUserDeclaredConstructor())
3888           NeedZeroInitialization = false;
3889       } else {
3890         // C++11:
3891         // -- if T is a class type (clause 9) with either no default constructor
3892         //    (12.1 [class.ctor]) or a default constructor that is user-provided
3893         //    or deleted, then the object is default-initialized;
3894         CXXConstructorDecl *CD = S.LookupDefaultConstructor(ClassDecl);
3895         if (!CD || !CD->getCanonicalDecl()->isDefaulted() || CD->isDeleted())
3896           NeedZeroInitialization = false;
3897       }
3898 
3899       // -- if T is a (possibly cv-qualified) non-union class type without a
3900       //    user-provided or deleted default constructor, then the object is
3901       //    zero-initialized and, if T has a non-trivial default constructor,
3902       //    default-initialized;
3903       // The 'non-union' here was removed by DR1502. The 'non-trivial default
3904       // constructor' part was removed by DR1507.
3905       if (NeedZeroInitialization)
3906         Sequence.AddZeroInitializationStep(Entity.getType());
3907 
3908       // C++03:
3909       // -- if T is a non-union class type without a user-declared constructor,
3910       //    then every non-static data member and base class component of T is
3911       //    value-initialized;
3912       // [...] A program that calls for [...] value-initialization of an
3913       // entity of reference type is ill-formed.
3914       //
3915       // C++11 doesn't need this handling, because value-initialization does not
3916       // occur recursively there, and the implicit default constructor is
3917       // defined as deleted in the problematic cases.
3918       if (!S.getLangOpts().CPlusPlus11 &&
3919           ClassDecl->hasUninitializedReferenceMember()) {
3920         Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForReference);
3921         return;
3922       }
3923 
3924       // If this is list-value-initialization, pass the empty init list on when
3925       // building the constructor call. This affects the semantics of a few
3926       // things (such as whether an explicit default constructor can be called).
3927       Expr *InitListAsExpr = InitList;
3928       MultiExprArg Args(&InitListAsExpr, InitList ? 1 : 0);
3929       bool InitListSyntax = InitList;
3930 
3931       return TryConstructorInitialization(S, Entity, Kind, Args, T, Sequence,
3932                                           InitListSyntax);
3933     }
3934   }
3935 
3936   Sequence.AddZeroInitializationStep(Entity.getType());
3937 }
3938 
3939 /// \brief Attempt default initialization (C++ [dcl.init]p6).
3940 static void TryDefaultInitialization(Sema &S,
3941                                      const InitializedEntity &Entity,
3942                                      const InitializationKind &Kind,
3943                                      InitializationSequence &Sequence) {
3944   assert(Kind.getKind() == InitializationKind::IK_Default);
3945 
3946   // C++ [dcl.init]p6:
3947   //   To default-initialize an object of type T means:
3948   //     - if T is an array type, each element is default-initialized;
3949   QualType DestType = S.Context.getBaseElementType(Entity.getType());
3950 
3951   //     - if T is a (possibly cv-qualified) class type (Clause 9), the default
3952   //       constructor for T is called (and the initialization is ill-formed if
3953   //       T has no accessible default constructor);
3954   if (DestType->isRecordType() && S.getLangOpts().CPlusPlus) {
3955     TryConstructorInitialization(S, Entity, Kind, None, DestType, Sequence);
3956     return;
3957   }
3958 
3959   //     - otherwise, no initialization is performed.
3960 
3961   //   If a program calls for the default initialization of an object of
3962   //   a const-qualified type T, T shall be a class type with a user-provided
3963   //   default constructor.
3964   if (DestType.isConstQualified() && S.getLangOpts().CPlusPlus) {
3965     Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst);
3966     return;
3967   }
3968 
3969   // If the destination type has a lifetime property, zero-initialize it.
3970   if (DestType.getQualifiers().hasObjCLifetime()) {
3971     Sequence.AddZeroInitializationStep(Entity.getType());
3972     return;
3973   }
3974 }
3975 
3976 /// \brief Attempt a user-defined conversion between two types (C++ [dcl.init]),
3977 /// which enumerates all conversion functions and performs overload resolution
3978 /// to select the best.
3979 static void TryUserDefinedConversion(Sema &S,
3980                                      const InitializedEntity &Entity,
3981                                      const InitializationKind &Kind,
3982                                      Expr *Initializer,
3983                                      InitializationSequence &Sequence) {
3984   QualType DestType = Entity.getType();
3985   assert(!DestType->isReferenceType() && "References are handled elsewhere");
3986   QualType SourceType = Initializer->getType();
3987   assert((DestType->isRecordType() || SourceType->isRecordType()) &&
3988          "Must have a class type to perform a user-defined conversion");
3989 
3990   // Build the candidate set directly in the initialization sequence
3991   // structure, so that it will persist if we fail.
3992   OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
3993   CandidateSet.clear();
3994 
3995   // Determine whether we are allowed to call explicit constructors or
3996   // explicit conversion operators.
3997   bool AllowExplicit = Kind.AllowExplicit();
3998 
3999   if (const RecordType *DestRecordType = DestType->getAs<RecordType>()) {
4000     // The type we're converting to is a class type. Enumerate its constructors
4001     // to see if there is a suitable conversion.
4002     CXXRecordDecl *DestRecordDecl
4003       = cast<CXXRecordDecl>(DestRecordType->getDecl());
4004 
4005     // Try to complete the type we're converting to.
4006     if (!S.RequireCompleteType(Kind.getLocation(), DestType, 0)) {
4007       DeclContext::lookup_result R = S.LookupConstructors(DestRecordDecl);
4008       // The container holding the constructors can under certain conditions
4009       // be changed while iterating. To be safe we copy the lookup results
4010       // to a new container.
4011       SmallVector<NamedDecl*, 8> CopyOfCon(R.begin(), R.end());
4012       for (SmallVector<NamedDecl*, 8>::iterator
4013              Con = CopyOfCon.begin(), ConEnd = CopyOfCon.end();
4014            Con != ConEnd; ++Con) {
4015         NamedDecl *D = *Con;
4016         DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
4017 
4018         // Find the constructor (which may be a template).
4019         CXXConstructorDecl *Constructor = 0;
4020         FunctionTemplateDecl *ConstructorTmpl
4021           = dyn_cast<FunctionTemplateDecl>(D);
4022         if (ConstructorTmpl)
4023           Constructor = cast<CXXConstructorDecl>(
4024                                            ConstructorTmpl->getTemplatedDecl());
4025         else
4026           Constructor = cast<CXXConstructorDecl>(D);
4027 
4028         if (!Constructor->isInvalidDecl() &&
4029             Constructor->isConvertingConstructor(AllowExplicit)) {
4030           if (ConstructorTmpl)
4031             S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
4032                                            /*ExplicitArgs*/ 0,
4033                                            Initializer, CandidateSet,
4034                                            /*SuppressUserConversions=*/true);
4035           else
4036             S.AddOverloadCandidate(Constructor, FoundDecl,
4037                                    Initializer, CandidateSet,
4038                                    /*SuppressUserConversions=*/true);
4039         }
4040       }
4041     }
4042   }
4043 
4044   SourceLocation DeclLoc = Initializer->getLocStart();
4045 
4046   if (const RecordType *SourceRecordType = SourceType->getAs<RecordType>()) {
4047     // The type we're converting from is a class type, enumerate its conversion
4048     // functions.
4049 
4050     // We can only enumerate the conversion functions for a complete type; if
4051     // the type isn't complete, simply skip this step.
4052     if (!S.RequireCompleteType(DeclLoc, SourceType, 0)) {
4053       CXXRecordDecl *SourceRecordDecl
4054         = cast<CXXRecordDecl>(SourceRecordType->getDecl());
4055 
4056       std::pair<CXXRecordDecl::conversion_iterator,
4057                 CXXRecordDecl::conversion_iterator>
4058         Conversions = SourceRecordDecl->getVisibleConversionFunctions();
4059       for (CXXRecordDecl::conversion_iterator
4060              I = Conversions.first, E = Conversions.second; I != E; ++I) {
4061         NamedDecl *D = *I;
4062         CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
4063         if (isa<UsingShadowDecl>(D))
4064           D = cast<UsingShadowDecl>(D)->getTargetDecl();
4065 
4066         FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D);
4067         CXXConversionDecl *Conv;
4068         if (ConvTemplate)
4069           Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
4070         else
4071           Conv = cast<CXXConversionDecl>(D);
4072 
4073         if (AllowExplicit || !Conv->isExplicit()) {
4074           if (ConvTemplate)
4075             S.AddTemplateConversionCandidate(ConvTemplate, I.getPair(),
4076                                              ActingDC, Initializer, DestType,
4077                                              CandidateSet);
4078           else
4079             S.AddConversionCandidate(Conv, I.getPair(), ActingDC,
4080                                      Initializer, DestType, CandidateSet);
4081         }
4082       }
4083     }
4084   }
4085 
4086   // Perform overload resolution. If it fails, return the failed result.
4087   OverloadCandidateSet::iterator Best;
4088   if (OverloadingResult Result
4089         = CandidateSet.BestViableFunction(S, DeclLoc, Best, true)) {
4090     Sequence.SetOverloadFailure(
4091                         InitializationSequence::FK_UserConversionOverloadFailed,
4092                                 Result);
4093     return;
4094   }
4095 
4096   FunctionDecl *Function = Best->Function;
4097   Function->setReferenced();
4098   bool HadMultipleCandidates = (CandidateSet.size() > 1);
4099 
4100   if (isa<CXXConstructorDecl>(Function)) {
4101     // Add the user-defined conversion step. Any cv-qualification conversion is
4102     // subsumed by the initialization. Per DR5, the created temporary is of the
4103     // cv-unqualified type of the destination.
4104     Sequence.AddUserConversionStep(Function, Best->FoundDecl,
4105                                    DestType.getUnqualifiedType(),
4106                                    HadMultipleCandidates);
4107     return;
4108   }
4109 
4110   // Add the user-defined conversion step that calls the conversion function.
4111   QualType ConvType = Function->getCallResultType();
4112   if (ConvType->getAs<RecordType>()) {
4113     // If we're converting to a class type, there may be an copy of
4114     // the resulting temporary object (possible to create an object of
4115     // a base class type). That copy is not a separate conversion, so
4116     // we just make a note of the actual destination type (possibly a
4117     // base class of the type returned by the conversion function) and
4118     // let the user-defined conversion step handle the conversion.
4119     Sequence.AddUserConversionStep(Function, Best->FoundDecl, DestType,
4120                                    HadMultipleCandidates);
4121     return;
4122   }
4123 
4124   Sequence.AddUserConversionStep(Function, Best->FoundDecl, ConvType,
4125                                  HadMultipleCandidates);
4126 
4127   // If the conversion following the call to the conversion function
4128   // is interesting, add it as a separate step.
4129   if (Best->FinalConversion.First || Best->FinalConversion.Second ||
4130       Best->FinalConversion.Third) {
4131     ImplicitConversionSequence ICS;
4132     ICS.setStandard();
4133     ICS.Standard = Best->FinalConversion;
4134     Sequence.AddConversionSequenceStep(ICS, DestType);
4135   }
4136 }
4137 
4138 /// An egregious hack for compatibility with libstdc++-4.2: in <tr1/hashtable>,
4139 /// a function with a pointer return type contains a 'return false;' statement.
4140 /// In C++11, 'false' is not a null pointer, so this breaks the build of any
4141 /// code using that header.
4142 ///
4143 /// Work around this by treating 'return false;' as zero-initializing the result
4144 /// if it's used in a pointer-returning function in a system header.
4145 static bool isLibstdcxxPointerReturnFalseHack(Sema &S,
4146                                               const InitializedEntity &Entity,
4147                                               const Expr *Init) {
4148   return S.getLangOpts().CPlusPlus11 &&
4149          Entity.getKind() == InitializedEntity::EK_Result &&
4150          Entity.getType()->isPointerType() &&
4151          isa<CXXBoolLiteralExpr>(Init) &&
4152          !cast<CXXBoolLiteralExpr>(Init)->getValue() &&
4153          S.getSourceManager().isInSystemHeader(Init->getExprLoc());
4154 }
4155 
4156 /// The non-zero enum values here are indexes into diagnostic alternatives.
4157 enum InvalidICRKind { IIK_okay, IIK_nonlocal, IIK_nonscalar };
4158 
4159 /// Determines whether this expression is an acceptable ICR source.
4160 static InvalidICRKind isInvalidICRSource(ASTContext &C, Expr *e,
4161                                          bool isAddressOf, bool &isWeakAccess) {
4162   // Skip parens.
4163   e = e->IgnoreParens();
4164 
4165   // Skip address-of nodes.
4166   if (UnaryOperator *op = dyn_cast<UnaryOperator>(e)) {
4167     if (op->getOpcode() == UO_AddrOf)
4168       return isInvalidICRSource(C, op->getSubExpr(), /*addressof*/ true,
4169                                 isWeakAccess);
4170 
4171   // Skip certain casts.
4172   } else if (CastExpr *ce = dyn_cast<CastExpr>(e)) {
4173     switch (ce->getCastKind()) {
4174     case CK_Dependent:
4175     case CK_BitCast:
4176     case CK_LValueBitCast:
4177     case CK_NoOp:
4178       return isInvalidICRSource(C, ce->getSubExpr(), isAddressOf, isWeakAccess);
4179 
4180     case CK_ArrayToPointerDecay:
4181       return IIK_nonscalar;
4182 
4183     case CK_NullToPointer:
4184       return IIK_okay;
4185 
4186     default:
4187       break;
4188     }
4189 
4190   // If we have a declaration reference, it had better be a local variable.
4191   } else if (isa<DeclRefExpr>(e)) {
4192     // set isWeakAccess to true, to mean that there will be an implicit
4193     // load which requires a cleanup.
4194     if (e->getType().getObjCLifetime() == Qualifiers::OCL_Weak)
4195       isWeakAccess = true;
4196 
4197     if (!isAddressOf) return IIK_nonlocal;
4198 
4199     VarDecl *var = dyn_cast<VarDecl>(cast<DeclRefExpr>(e)->getDecl());
4200     if (!var) return IIK_nonlocal;
4201 
4202     return (var->hasLocalStorage() ? IIK_okay : IIK_nonlocal);
4203 
4204   // If we have a conditional operator, check both sides.
4205   } else if (ConditionalOperator *cond = dyn_cast<ConditionalOperator>(e)) {
4206     if (InvalidICRKind iik = isInvalidICRSource(C, cond->getLHS(), isAddressOf,
4207                                                 isWeakAccess))
4208       return iik;
4209 
4210     return isInvalidICRSource(C, cond->getRHS(), isAddressOf, isWeakAccess);
4211 
4212   // These are never scalar.
4213   } else if (isa<ArraySubscriptExpr>(e)) {
4214     return IIK_nonscalar;
4215 
4216   // Otherwise, it needs to be a null pointer constant.
4217   } else {
4218     return (e->isNullPointerConstant(C, Expr::NPC_ValueDependentIsNull)
4219             ? IIK_okay : IIK_nonlocal);
4220   }
4221 
4222   return IIK_nonlocal;
4223 }
4224 
4225 /// Check whether the given expression is a valid operand for an
4226 /// indirect copy/restore.
4227 static void checkIndirectCopyRestoreSource(Sema &S, Expr *src) {
4228   assert(src->isRValue());
4229   bool isWeakAccess = false;
4230   InvalidICRKind iik = isInvalidICRSource(S.Context, src, false, isWeakAccess);
4231   // If isWeakAccess to true, there will be an implicit
4232   // load which requires a cleanup.
4233   if (S.getLangOpts().ObjCAutoRefCount && isWeakAccess)
4234     S.ExprNeedsCleanups = true;
4235 
4236   if (iik == IIK_okay) return;
4237 
4238   S.Diag(src->getExprLoc(), diag::err_arc_nonlocal_writeback)
4239     << ((unsigned) iik - 1)  // shift index into diagnostic explanations
4240     << src->getSourceRange();
4241 }
4242 
4243 /// \brief Determine whether we have compatible array types for the
4244 /// purposes of GNU by-copy array initialization.
4245 static bool hasCompatibleArrayTypes(ASTContext &Context,
4246                                     const ArrayType *Dest,
4247                                     const ArrayType *Source) {
4248   // If the source and destination array types are equivalent, we're
4249   // done.
4250   if (Context.hasSameType(QualType(Dest, 0), QualType(Source, 0)))
4251     return true;
4252 
4253   // Make sure that the element types are the same.
4254   if (!Context.hasSameType(Dest->getElementType(), Source->getElementType()))
4255     return false;
4256 
4257   // The only mismatch we allow is when the destination is an
4258   // incomplete array type and the source is a constant array type.
4259   return Source->isConstantArrayType() && Dest->isIncompleteArrayType();
4260 }
4261 
4262 static bool tryObjCWritebackConversion(Sema &S,
4263                                        InitializationSequence &Sequence,
4264                                        const InitializedEntity &Entity,
4265                                        Expr *Initializer) {
4266   bool ArrayDecay = false;
4267   QualType ArgType = Initializer->getType();
4268   QualType ArgPointee;
4269   if (const ArrayType *ArgArrayType = S.Context.getAsArrayType(ArgType)) {
4270     ArrayDecay = true;
4271     ArgPointee = ArgArrayType->getElementType();
4272     ArgType = S.Context.getPointerType(ArgPointee);
4273   }
4274 
4275   // Handle write-back conversion.
4276   QualType ConvertedArgType;
4277   if (!S.isObjCWritebackConversion(ArgType, Entity.getType(),
4278                                    ConvertedArgType))
4279     return false;
4280 
4281   // We should copy unless we're passing to an argument explicitly
4282   // marked 'out'.
4283   bool ShouldCopy = true;
4284   if (ParmVarDecl *param = cast_or_null<ParmVarDecl>(Entity.getDecl()))
4285     ShouldCopy = (param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out);
4286 
4287   // Do we need an lvalue conversion?
4288   if (ArrayDecay || Initializer->isGLValue()) {
4289     ImplicitConversionSequence ICS;
4290     ICS.setStandard();
4291     ICS.Standard.setAsIdentityConversion();
4292 
4293     QualType ResultType;
4294     if (ArrayDecay) {
4295       ICS.Standard.First = ICK_Array_To_Pointer;
4296       ResultType = S.Context.getPointerType(ArgPointee);
4297     } else {
4298       ICS.Standard.First = ICK_Lvalue_To_Rvalue;
4299       ResultType = Initializer->getType().getNonLValueExprType(S.Context);
4300     }
4301 
4302     Sequence.AddConversionSequenceStep(ICS, ResultType);
4303   }
4304 
4305   Sequence.AddPassByIndirectCopyRestoreStep(Entity.getType(), ShouldCopy);
4306   return true;
4307 }
4308 
4309 static bool TryOCLSamplerInitialization(Sema &S,
4310                                         InitializationSequence &Sequence,
4311                                         QualType DestType,
4312                                         Expr *Initializer) {
4313   if (!S.getLangOpts().OpenCL || !DestType->isSamplerT() ||
4314     !Initializer->isIntegerConstantExpr(S.getASTContext()))
4315     return false;
4316 
4317   Sequence.AddOCLSamplerInitStep(DestType);
4318   return true;
4319 }
4320 
4321 //
4322 // OpenCL 1.2 spec, s6.12.10
4323 //
4324 // The event argument can also be used to associate the
4325 // async_work_group_copy with a previous async copy allowing
4326 // an event to be shared by multiple async copies; otherwise
4327 // event should be zero.
4328 //
4329 static bool TryOCLZeroEventInitialization(Sema &S,
4330                                           InitializationSequence &Sequence,
4331                                           QualType DestType,
4332                                           Expr *Initializer) {
4333   if (!S.getLangOpts().OpenCL || !DestType->isEventT() ||
4334       !Initializer->isIntegerConstantExpr(S.getASTContext()) ||
4335       (Initializer->EvaluateKnownConstInt(S.getASTContext()) != 0))
4336     return false;
4337 
4338   Sequence.AddOCLZeroEventStep(DestType);
4339   return true;
4340 }
4341 
4342 InitializationSequence::InitializationSequence(Sema &S,
4343                                                const InitializedEntity &Entity,
4344                                                const InitializationKind &Kind,
4345                                                MultiExprArg Args)
4346     : FailedCandidateSet(Kind.getLocation()) {
4347   ASTContext &Context = S.Context;
4348 
4349   // Eliminate non-overload placeholder types in the arguments.  We
4350   // need to do this before checking whether types are dependent
4351   // because lowering a pseudo-object expression might well give us
4352   // something of dependent type.
4353   for (unsigned I = 0, E = Args.size(); I != E; ++I)
4354     if (Args[I]->getType()->isNonOverloadPlaceholderType()) {
4355       // FIXME: should we be doing this here?
4356       ExprResult result = S.CheckPlaceholderExpr(Args[I]);
4357       if (result.isInvalid()) {
4358         SetFailed(FK_PlaceholderType);
4359         return;
4360       }
4361       Args[I] = result.take();
4362     }
4363 
4364   // C++0x [dcl.init]p16:
4365   //   The semantics of initializers are as follows. The destination type is
4366   //   the type of the object or reference being initialized and the source
4367   //   type is the type of the initializer expression. The source type is not
4368   //   defined when the initializer is a braced-init-list or when it is a
4369   //   parenthesized list of expressions.
4370   QualType DestType = Entity.getType();
4371 
4372   if (DestType->isDependentType() ||
4373       Expr::hasAnyTypeDependentArguments(Args)) {
4374     SequenceKind = DependentSequence;
4375     return;
4376   }
4377 
4378   // Almost everything is a normal sequence.
4379   setSequenceKind(NormalSequence);
4380 
4381   QualType SourceType;
4382   Expr *Initializer = 0;
4383   if (Args.size() == 1) {
4384     Initializer = Args[0];
4385     if (!isa<InitListExpr>(Initializer))
4386       SourceType = Initializer->getType();
4387   }
4388 
4389   //     - If the initializer is a (non-parenthesized) braced-init-list, the
4390   //       object is list-initialized (8.5.4).
4391   if (Kind.getKind() != InitializationKind::IK_Direct) {
4392     if (InitListExpr *InitList = dyn_cast_or_null<InitListExpr>(Initializer)) {
4393       TryListInitialization(S, Entity, Kind, InitList, *this);
4394       return;
4395     }
4396   }
4397 
4398   //     - If the destination type is a reference type, see 8.5.3.
4399   if (DestType->isReferenceType()) {
4400     // C++0x [dcl.init.ref]p1:
4401     //   A variable declared to be a T& or T&&, that is, "reference to type T"
4402     //   (8.3.2), shall be initialized by an object, or function, of type T or
4403     //   by an object that can be converted into a T.
4404     // (Therefore, multiple arguments are not permitted.)
4405     if (Args.size() != 1)
4406       SetFailed(FK_TooManyInitsForReference);
4407     else
4408       TryReferenceInitialization(S, Entity, Kind, Args[0], *this);
4409     return;
4410   }
4411 
4412   //     - If the initializer is (), the object is value-initialized.
4413   if (Kind.getKind() == InitializationKind::IK_Value ||
4414       (Kind.getKind() == InitializationKind::IK_Direct && Args.empty())) {
4415     TryValueInitialization(S, Entity, Kind, *this);
4416     return;
4417   }
4418 
4419   // Handle default initialization.
4420   if (Kind.getKind() == InitializationKind::IK_Default) {
4421     TryDefaultInitialization(S, Entity, Kind, *this);
4422     return;
4423   }
4424 
4425   //     - If the destination type is an array of characters, an array of
4426   //       char16_t, an array of char32_t, or an array of wchar_t, and the
4427   //       initializer is a string literal, see 8.5.2.
4428   //     - Otherwise, if the destination type is an array, the program is
4429   //       ill-formed.
4430   if (const ArrayType *DestAT = Context.getAsArrayType(DestType)) {
4431     if (Initializer && isa<VariableArrayType>(DestAT)) {
4432       SetFailed(FK_VariableLengthArrayHasInitializer);
4433       return;
4434     }
4435 
4436     if (Initializer) {
4437       switch (IsStringInit(Initializer, DestAT, Context)) {
4438       case SIF_None:
4439         TryStringLiteralInitialization(S, Entity, Kind, Initializer, *this);
4440         return;
4441       case SIF_NarrowStringIntoWideChar:
4442         SetFailed(FK_NarrowStringIntoWideCharArray);
4443         return;
4444       case SIF_WideStringIntoChar:
4445         SetFailed(FK_WideStringIntoCharArray);
4446         return;
4447       case SIF_IncompatWideStringIntoWideChar:
4448         SetFailed(FK_IncompatWideStringIntoWideChar);
4449         return;
4450       case SIF_Other:
4451         break;
4452       }
4453     }
4454 
4455     // Note: as an GNU C extension, we allow initialization of an
4456     // array from a compound literal that creates an array of the same
4457     // type, so long as the initializer has no side effects.
4458     if (!S.getLangOpts().CPlusPlus && Initializer &&
4459         isa<CompoundLiteralExpr>(Initializer->IgnoreParens()) &&
4460         Initializer->getType()->isArrayType()) {
4461       const ArrayType *SourceAT
4462         = Context.getAsArrayType(Initializer->getType());
4463       if (!hasCompatibleArrayTypes(S.Context, DestAT, SourceAT))
4464         SetFailed(FK_ArrayTypeMismatch);
4465       else if (Initializer->HasSideEffects(S.Context))
4466         SetFailed(FK_NonConstantArrayInit);
4467       else {
4468         AddArrayInitStep(DestType);
4469       }
4470     }
4471     // Note: as a GNU C++ extension, we allow list-initialization of a
4472     // class member of array type from a parenthesized initializer list.
4473     else if (S.getLangOpts().CPlusPlus &&
4474              Entity.getKind() == InitializedEntity::EK_Member &&
4475              Initializer && isa<InitListExpr>(Initializer)) {
4476       TryListInitialization(S, Entity, Kind, cast<InitListExpr>(Initializer),
4477                             *this);
4478       AddParenthesizedArrayInitStep(DestType);
4479     } else if (DestAT->getElementType()->isCharType())
4480       SetFailed(FK_ArrayNeedsInitListOrStringLiteral);
4481     else if (IsWideCharCompatible(DestAT->getElementType(), Context))
4482       SetFailed(FK_ArrayNeedsInitListOrWideStringLiteral);
4483     else
4484       SetFailed(FK_ArrayNeedsInitList);
4485 
4486     return;
4487   }
4488 
4489   // Determine whether we should consider writeback conversions for
4490   // Objective-C ARC.
4491   bool allowObjCWritebackConversion = S.getLangOpts().ObjCAutoRefCount &&
4492     Entity.getKind() == InitializedEntity::EK_Parameter;
4493 
4494   // We're at the end of the line for C: it's either a write-back conversion
4495   // or it's a C assignment. There's no need to check anything else.
4496   if (!S.getLangOpts().CPlusPlus) {
4497     // If allowed, check whether this is an Objective-C writeback conversion.
4498     if (allowObjCWritebackConversion &&
4499         tryObjCWritebackConversion(S, *this, Entity, Initializer)) {
4500       return;
4501     }
4502 
4503     if (TryOCLSamplerInitialization(S, *this, DestType, Initializer))
4504       return;
4505 
4506     if (TryOCLZeroEventInitialization(S, *this, DestType, Initializer))
4507       return;
4508 
4509     // Handle initialization in C
4510     AddCAssignmentStep(DestType);
4511     MaybeProduceObjCObject(S, *this, Entity);
4512     return;
4513   }
4514 
4515   assert(S.getLangOpts().CPlusPlus);
4516 
4517   //     - If the destination type is a (possibly cv-qualified) class type:
4518   if (DestType->isRecordType()) {
4519     //     - If the initialization is direct-initialization, or if it is
4520     //       copy-initialization where the cv-unqualified version of the
4521     //       source type is the same class as, or a derived class of, the
4522     //       class of the destination, constructors are considered. [...]
4523     if (Kind.getKind() == InitializationKind::IK_Direct ||
4524         (Kind.getKind() == InitializationKind::IK_Copy &&
4525          (Context.hasSameUnqualifiedType(SourceType, DestType) ||
4526           S.IsDerivedFrom(SourceType, DestType))))
4527       TryConstructorInitialization(S, Entity, Kind, Args,
4528                                    Entity.getType(), *this);
4529     //     - Otherwise (i.e., for the remaining copy-initialization cases),
4530     //       user-defined conversion sequences that can convert from the source
4531     //       type to the destination type or (when a conversion function is
4532     //       used) to a derived class thereof are enumerated as described in
4533     //       13.3.1.4, and the best one is chosen through overload resolution
4534     //       (13.3).
4535     else
4536       TryUserDefinedConversion(S, Entity, Kind, Initializer, *this);
4537     return;
4538   }
4539 
4540   if (Args.size() > 1) {
4541     SetFailed(FK_TooManyInitsForScalar);
4542     return;
4543   }
4544   assert(Args.size() == 1 && "Zero-argument case handled above");
4545 
4546   //    - Otherwise, if the source type is a (possibly cv-qualified) class
4547   //      type, conversion functions are considered.
4548   if (!SourceType.isNull() && SourceType->isRecordType()) {
4549     TryUserDefinedConversion(S, Entity, Kind, Initializer, *this);
4550     MaybeProduceObjCObject(S, *this, Entity);
4551     return;
4552   }
4553 
4554   //    - Otherwise, the initial value of the object being initialized is the
4555   //      (possibly converted) value of the initializer expression. Standard
4556   //      conversions (Clause 4) will be used, if necessary, to convert the
4557   //      initializer expression to the cv-unqualified version of the
4558   //      destination type; no user-defined conversions are considered.
4559 
4560   ImplicitConversionSequence ICS
4561     = S.TryImplicitConversion(Initializer, Entity.getType(),
4562                               /*SuppressUserConversions*/true,
4563                               /*AllowExplicitConversions*/ false,
4564                               /*InOverloadResolution*/ false,
4565                               /*CStyle=*/Kind.isCStyleOrFunctionalCast(),
4566                               allowObjCWritebackConversion);
4567 
4568   if (ICS.isStandard() &&
4569       ICS.Standard.Second == ICK_Writeback_Conversion) {
4570     // Objective-C ARC writeback conversion.
4571 
4572     // We should copy unless we're passing to an argument explicitly
4573     // marked 'out'.
4574     bool ShouldCopy = true;
4575     if (ParmVarDecl *Param = cast_or_null<ParmVarDecl>(Entity.getDecl()))
4576       ShouldCopy = (Param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out);
4577 
4578     // If there was an lvalue adjustment, add it as a separate conversion.
4579     if (ICS.Standard.First == ICK_Array_To_Pointer ||
4580         ICS.Standard.First == ICK_Lvalue_To_Rvalue) {
4581       ImplicitConversionSequence LvalueICS;
4582       LvalueICS.setStandard();
4583       LvalueICS.Standard.setAsIdentityConversion();
4584       LvalueICS.Standard.setAllToTypes(ICS.Standard.getToType(0));
4585       LvalueICS.Standard.First = ICS.Standard.First;
4586       AddConversionSequenceStep(LvalueICS, ICS.Standard.getToType(0));
4587     }
4588 
4589     AddPassByIndirectCopyRestoreStep(Entity.getType(), ShouldCopy);
4590   } else if (ICS.isBad()) {
4591     DeclAccessPair dap;
4592     if (isLibstdcxxPointerReturnFalseHack(S, Entity, Initializer)) {
4593       AddZeroInitializationStep(Entity.getType());
4594     } else if (Initializer->getType() == Context.OverloadTy &&
4595                !S.ResolveAddressOfOverloadedFunction(Initializer, DestType,
4596                                                      false, dap))
4597       SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
4598     else
4599       SetFailed(InitializationSequence::FK_ConversionFailed);
4600   } else {
4601     AddConversionSequenceStep(ICS, Entity.getType());
4602 
4603     MaybeProduceObjCObject(S, *this, Entity);
4604   }
4605 }
4606 
4607 InitializationSequence::~InitializationSequence() {
4608   for (SmallVectorImpl<Step>::iterator Step = Steps.begin(),
4609                                           StepEnd = Steps.end();
4610        Step != StepEnd; ++Step)
4611     Step->Destroy();
4612 }
4613 
4614 //===----------------------------------------------------------------------===//
4615 // Perform initialization
4616 //===----------------------------------------------------------------------===//
4617 static Sema::AssignmentAction
4618 getAssignmentAction(const InitializedEntity &Entity) {
4619   switch(Entity.getKind()) {
4620   case InitializedEntity::EK_Variable:
4621   case InitializedEntity::EK_New:
4622   case InitializedEntity::EK_Exception:
4623   case InitializedEntity::EK_Base:
4624   case InitializedEntity::EK_Delegating:
4625     return Sema::AA_Initializing;
4626 
4627   case InitializedEntity::EK_Parameter:
4628     if (Entity.getDecl() &&
4629         isa<ObjCMethodDecl>(Entity.getDecl()->getDeclContext()))
4630       return Sema::AA_Sending;
4631 
4632     return Sema::AA_Passing;
4633 
4634   case InitializedEntity::EK_Result:
4635     return Sema::AA_Returning;
4636 
4637   case InitializedEntity::EK_Temporary:
4638     // FIXME: Can we tell apart casting vs. converting?
4639     return Sema::AA_Casting;
4640 
4641   case InitializedEntity::EK_Member:
4642   case InitializedEntity::EK_ArrayElement:
4643   case InitializedEntity::EK_VectorElement:
4644   case InitializedEntity::EK_ComplexElement:
4645   case InitializedEntity::EK_BlockElement:
4646   case InitializedEntity::EK_LambdaCapture:
4647   case InitializedEntity::EK_CompoundLiteralInit:
4648     return Sema::AA_Initializing;
4649   }
4650 
4651   llvm_unreachable("Invalid EntityKind!");
4652 }
4653 
4654 /// \brief Whether we should bind a created object as a temporary when
4655 /// initializing the given entity.
4656 static bool shouldBindAsTemporary(const InitializedEntity &Entity) {
4657   switch (Entity.getKind()) {
4658   case InitializedEntity::EK_ArrayElement:
4659   case InitializedEntity::EK_Member:
4660   case InitializedEntity::EK_Result:
4661   case InitializedEntity::EK_New:
4662   case InitializedEntity::EK_Variable:
4663   case InitializedEntity::EK_Base:
4664   case InitializedEntity::EK_Delegating:
4665   case InitializedEntity::EK_VectorElement:
4666   case InitializedEntity::EK_ComplexElement:
4667   case InitializedEntity::EK_Exception:
4668   case InitializedEntity::EK_BlockElement:
4669   case InitializedEntity::EK_LambdaCapture:
4670   case InitializedEntity::EK_CompoundLiteralInit:
4671     return false;
4672 
4673   case InitializedEntity::EK_Parameter:
4674   case InitializedEntity::EK_Temporary:
4675     return true;
4676   }
4677 
4678   llvm_unreachable("missed an InitializedEntity kind?");
4679 }
4680 
4681 /// \brief Whether the given entity, when initialized with an object
4682 /// created for that initialization, requires destruction.
4683 static bool shouldDestroyTemporary(const InitializedEntity &Entity) {
4684   switch (Entity.getKind()) {
4685     case InitializedEntity::EK_Result:
4686     case InitializedEntity::EK_New:
4687     case InitializedEntity::EK_Base:
4688     case InitializedEntity::EK_Delegating:
4689     case InitializedEntity::EK_VectorElement:
4690     case InitializedEntity::EK_ComplexElement:
4691     case InitializedEntity::EK_BlockElement:
4692     case InitializedEntity::EK_LambdaCapture:
4693       return false;
4694 
4695     case InitializedEntity::EK_Member:
4696     case InitializedEntity::EK_Variable:
4697     case InitializedEntity::EK_Parameter:
4698     case InitializedEntity::EK_Temporary:
4699     case InitializedEntity::EK_ArrayElement:
4700     case InitializedEntity::EK_Exception:
4701     case InitializedEntity::EK_CompoundLiteralInit:
4702       return true;
4703   }
4704 
4705   llvm_unreachable("missed an InitializedEntity kind?");
4706 }
4707 
4708 /// \brief Look for copy and move constructors and constructor templates, for
4709 /// copying an object via direct-initialization (per C++11 [dcl.init]p16).
4710 static void LookupCopyAndMoveConstructors(Sema &S,
4711                                           OverloadCandidateSet &CandidateSet,
4712                                           CXXRecordDecl *Class,
4713                                           Expr *CurInitExpr) {
4714   DeclContext::lookup_result R = S.LookupConstructors(Class);
4715   // The container holding the constructors can under certain conditions
4716   // be changed while iterating (e.g. because of deserialization).
4717   // To be safe we copy the lookup results to a new container.
4718   SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end());
4719   for (SmallVector<NamedDecl*, 16>::iterator
4720          CI = Ctors.begin(), CE = Ctors.end(); CI != CE; ++CI) {
4721     NamedDecl *D = *CI;
4722     CXXConstructorDecl *Constructor = 0;
4723 
4724     if ((Constructor = dyn_cast<CXXConstructorDecl>(D))) {
4725       // Handle copy/moveconstructors, only.
4726       if (!Constructor || Constructor->isInvalidDecl() ||
4727           !Constructor->isCopyOrMoveConstructor() ||
4728           !Constructor->isConvertingConstructor(/*AllowExplicit=*/true))
4729         continue;
4730 
4731       DeclAccessPair FoundDecl
4732         = DeclAccessPair::make(Constructor, Constructor->getAccess());
4733       S.AddOverloadCandidate(Constructor, FoundDecl,
4734                              CurInitExpr, CandidateSet);
4735       continue;
4736     }
4737 
4738     // Handle constructor templates.
4739     FunctionTemplateDecl *ConstructorTmpl = cast<FunctionTemplateDecl>(D);
4740     if (ConstructorTmpl->isInvalidDecl())
4741       continue;
4742 
4743     Constructor = cast<CXXConstructorDecl>(
4744                                          ConstructorTmpl->getTemplatedDecl());
4745     if (!Constructor->isConvertingConstructor(/*AllowExplicit=*/true))
4746       continue;
4747 
4748     // FIXME: Do we need to limit this to copy-constructor-like
4749     // candidates?
4750     DeclAccessPair FoundDecl
4751       = DeclAccessPair::make(ConstructorTmpl, ConstructorTmpl->getAccess());
4752     S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl, 0,
4753                                    CurInitExpr, CandidateSet, true);
4754   }
4755 }
4756 
4757 /// \brief Get the location at which initialization diagnostics should appear.
4758 static SourceLocation getInitializationLoc(const InitializedEntity &Entity,
4759                                            Expr *Initializer) {
4760   switch (Entity.getKind()) {
4761   case InitializedEntity::EK_Result:
4762     return Entity.getReturnLoc();
4763 
4764   case InitializedEntity::EK_Exception:
4765     return Entity.getThrowLoc();
4766 
4767   case InitializedEntity::EK_Variable:
4768     return Entity.getDecl()->getLocation();
4769 
4770   case InitializedEntity::EK_LambdaCapture:
4771     return Entity.getCaptureLoc();
4772 
4773   case InitializedEntity::EK_ArrayElement:
4774   case InitializedEntity::EK_Member:
4775   case InitializedEntity::EK_Parameter:
4776   case InitializedEntity::EK_Temporary:
4777   case InitializedEntity::EK_New:
4778   case InitializedEntity::EK_Base:
4779   case InitializedEntity::EK_Delegating:
4780   case InitializedEntity::EK_VectorElement:
4781   case InitializedEntity::EK_ComplexElement:
4782   case InitializedEntity::EK_BlockElement:
4783   case InitializedEntity::EK_CompoundLiteralInit:
4784     return Initializer->getLocStart();
4785   }
4786   llvm_unreachable("missed an InitializedEntity kind?");
4787 }
4788 
4789 /// \brief Make a (potentially elidable) temporary copy of the object
4790 /// provided by the given initializer by calling the appropriate copy
4791 /// constructor.
4792 ///
4793 /// \param S The Sema object used for type-checking.
4794 ///
4795 /// \param T The type of the temporary object, which must either be
4796 /// the type of the initializer expression or a superclass thereof.
4797 ///
4798 /// \param Entity The entity being initialized.
4799 ///
4800 /// \param CurInit The initializer expression.
4801 ///
4802 /// \param IsExtraneousCopy Whether this is an "extraneous" copy that
4803 /// is permitted in C++03 (but not C++0x) when binding a reference to
4804 /// an rvalue.
4805 ///
4806 /// \returns An expression that copies the initializer expression into
4807 /// a temporary object, or an error expression if a copy could not be
4808 /// created.
4809 static ExprResult CopyObject(Sema &S,
4810                              QualType T,
4811                              const InitializedEntity &Entity,
4812                              ExprResult CurInit,
4813                              bool IsExtraneousCopy) {
4814   // Determine which class type we're copying to.
4815   Expr *CurInitExpr = (Expr *)CurInit.get();
4816   CXXRecordDecl *Class = 0;
4817   if (const RecordType *Record = T->getAs<RecordType>())
4818     Class = cast<CXXRecordDecl>(Record->getDecl());
4819   if (!Class)
4820     return CurInit;
4821 
4822   // C++0x [class.copy]p32:
4823   //   When certain criteria are met, an implementation is allowed to
4824   //   omit the copy/move construction of a class object, even if the
4825   //   copy/move constructor and/or destructor for the object have
4826   //   side effects. [...]
4827   //     - when a temporary class object that has not been bound to a
4828   //       reference (12.2) would be copied/moved to a class object
4829   //       with the same cv-unqualified type, the copy/move operation
4830   //       can be omitted by constructing the temporary object
4831   //       directly into the target of the omitted copy/move
4832   //
4833   // Note that the other three bullets are handled elsewhere. Copy
4834   // elision for return statements and throw expressions are handled as part
4835   // of constructor initialization, while copy elision for exception handlers
4836   // is handled by the run-time.
4837   bool Elidable = CurInitExpr->isTemporaryObject(S.Context, Class);
4838   SourceLocation Loc = getInitializationLoc(Entity, CurInit.get());
4839 
4840   // Make sure that the type we are copying is complete.
4841   if (S.RequireCompleteType(Loc, T, diag::err_temp_copy_incomplete))
4842     return CurInit;
4843 
4844   // Perform overload resolution using the class's copy/move constructors.
4845   // Only consider constructors and constructor templates. Per
4846   // C++0x [dcl.init]p16, second bullet to class types, this initialization
4847   // is direct-initialization.
4848   OverloadCandidateSet CandidateSet(Loc);
4849   LookupCopyAndMoveConstructors(S, CandidateSet, Class, CurInitExpr);
4850 
4851   bool HadMultipleCandidates = (CandidateSet.size() > 1);
4852 
4853   OverloadCandidateSet::iterator Best;
4854   switch (CandidateSet.BestViableFunction(S, Loc, Best)) {
4855   case OR_Success:
4856     break;
4857 
4858   case OR_No_Viable_Function:
4859     S.Diag(Loc, IsExtraneousCopy && !S.isSFINAEContext()
4860            ? diag::ext_rvalue_to_reference_temp_copy_no_viable
4861            : diag::err_temp_copy_no_viable)
4862       << (int)Entity.getKind() << CurInitExpr->getType()
4863       << CurInitExpr->getSourceRange();
4864     CandidateSet.NoteCandidates(S, OCD_AllCandidates, CurInitExpr);
4865     if (!IsExtraneousCopy || S.isSFINAEContext())
4866       return ExprError();
4867     return CurInit;
4868 
4869   case OR_Ambiguous:
4870     S.Diag(Loc, diag::err_temp_copy_ambiguous)
4871       << (int)Entity.getKind() << CurInitExpr->getType()
4872       << CurInitExpr->getSourceRange();
4873     CandidateSet.NoteCandidates(S, OCD_ViableCandidates, CurInitExpr);
4874     return ExprError();
4875 
4876   case OR_Deleted:
4877     S.Diag(Loc, diag::err_temp_copy_deleted)
4878       << (int)Entity.getKind() << CurInitExpr->getType()
4879       << CurInitExpr->getSourceRange();
4880     S.NoteDeletedFunction(Best->Function);
4881     return ExprError();
4882   }
4883 
4884   CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Best->Function);
4885   SmallVector<Expr*, 8> ConstructorArgs;
4886   CurInit.release(); // Ownership transferred into MultiExprArg, below.
4887 
4888   S.CheckConstructorAccess(Loc, Constructor, Entity,
4889                            Best->FoundDecl.getAccess(), IsExtraneousCopy);
4890 
4891   if (IsExtraneousCopy) {
4892     // If this is a totally extraneous copy for C++03 reference
4893     // binding purposes, just return the original initialization
4894     // expression. We don't generate an (elided) copy operation here
4895     // because doing so would require us to pass down a flag to avoid
4896     // infinite recursion, where each step adds another extraneous,
4897     // elidable copy.
4898 
4899     // Instantiate the default arguments of any extra parameters in
4900     // the selected copy constructor, as if we were going to create a
4901     // proper call to the copy constructor.
4902     for (unsigned I = 1, N = Constructor->getNumParams(); I != N; ++I) {
4903       ParmVarDecl *Parm = Constructor->getParamDecl(I);
4904       if (S.RequireCompleteType(Loc, Parm->getType(),
4905                                 diag::err_call_incomplete_argument))
4906         break;
4907 
4908       // Build the default argument expression; we don't actually care
4909       // if this succeeds or not, because this routine will complain
4910       // if there was a problem.
4911       S.BuildCXXDefaultArgExpr(Loc, Constructor, Parm);
4912     }
4913 
4914     return S.Owned(CurInitExpr);
4915   }
4916 
4917   // Determine the arguments required to actually perform the
4918   // constructor call (we might have derived-to-base conversions, or
4919   // the copy constructor may have default arguments).
4920   if (S.CompleteConstructorCall(Constructor, CurInitExpr, Loc, ConstructorArgs))
4921     return ExprError();
4922 
4923   // Actually perform the constructor call.
4924   CurInit = S.BuildCXXConstructExpr(Loc, T, Constructor, Elidable,
4925                                     ConstructorArgs,
4926                                     HadMultipleCandidates,
4927                                     /*ListInit*/ false,
4928                                     /*ZeroInit*/ false,
4929                                     CXXConstructExpr::CK_Complete,
4930                                     SourceRange());
4931 
4932   // If we're supposed to bind temporaries, do so.
4933   if (!CurInit.isInvalid() && shouldBindAsTemporary(Entity))
4934     CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>());
4935   return CurInit;
4936 }
4937 
4938 /// \brief Check whether elidable copy construction for binding a reference to
4939 /// a temporary would have succeeded if we were building in C++98 mode, for
4940 /// -Wc++98-compat.
4941 static void CheckCXX98CompatAccessibleCopy(Sema &S,
4942                                            const InitializedEntity &Entity,
4943                                            Expr *CurInitExpr) {
4944   assert(S.getLangOpts().CPlusPlus11);
4945 
4946   const RecordType *Record = CurInitExpr->getType()->getAs<RecordType>();
4947   if (!Record)
4948     return;
4949 
4950   SourceLocation Loc = getInitializationLoc(Entity, CurInitExpr);
4951   if (S.Diags.getDiagnosticLevel(diag::warn_cxx98_compat_temp_copy, Loc)
4952         == DiagnosticsEngine::Ignored)
4953     return;
4954 
4955   // Find constructors which would have been considered.
4956   OverloadCandidateSet CandidateSet(Loc);
4957   LookupCopyAndMoveConstructors(
4958       S, CandidateSet, cast<CXXRecordDecl>(Record->getDecl()), CurInitExpr);
4959 
4960   // Perform overload resolution.
4961   OverloadCandidateSet::iterator Best;
4962   OverloadingResult OR = CandidateSet.BestViableFunction(S, Loc, Best);
4963 
4964   PartialDiagnostic Diag = S.PDiag(diag::warn_cxx98_compat_temp_copy)
4965     << OR << (int)Entity.getKind() << CurInitExpr->getType()
4966     << CurInitExpr->getSourceRange();
4967 
4968   switch (OR) {
4969   case OR_Success:
4970     S.CheckConstructorAccess(Loc, cast<CXXConstructorDecl>(Best->Function),
4971                              Entity, Best->FoundDecl.getAccess(), Diag);
4972     // FIXME: Check default arguments as far as that's possible.
4973     break;
4974 
4975   case OR_No_Viable_Function:
4976     S.Diag(Loc, Diag);
4977     CandidateSet.NoteCandidates(S, OCD_AllCandidates, CurInitExpr);
4978     break;
4979 
4980   case OR_Ambiguous:
4981     S.Diag(Loc, Diag);
4982     CandidateSet.NoteCandidates(S, OCD_ViableCandidates, CurInitExpr);
4983     break;
4984 
4985   case OR_Deleted:
4986     S.Diag(Loc, Diag);
4987     S.NoteDeletedFunction(Best->Function);
4988     break;
4989   }
4990 }
4991 
4992 void InitializationSequence::PrintInitLocationNote(Sema &S,
4993                                               const InitializedEntity &Entity) {
4994   if (Entity.getKind() == InitializedEntity::EK_Parameter && Entity.getDecl()) {
4995     if (Entity.getDecl()->getLocation().isInvalid())
4996       return;
4997 
4998     if (Entity.getDecl()->getDeclName())
4999       S.Diag(Entity.getDecl()->getLocation(), diag::note_parameter_named_here)
5000         << Entity.getDecl()->getDeclName();
5001     else
5002       S.Diag(Entity.getDecl()->getLocation(), diag::note_parameter_here);
5003   }
5004 }
5005 
5006 static bool isReferenceBinding(const InitializationSequence::Step &s) {
5007   return s.Kind == InitializationSequence::SK_BindReference ||
5008          s.Kind == InitializationSequence::SK_BindReferenceToTemporary;
5009 }
5010 
5011 /// Returns true if the parameters describe a constructor initialization of
5012 /// an explicit temporary object, e.g. "Point(x, y)".
5013 static bool isExplicitTemporary(const InitializedEntity &Entity,
5014                                 const InitializationKind &Kind,
5015                                 unsigned NumArgs) {
5016   switch (Entity.getKind()) {
5017   case InitializedEntity::EK_Temporary:
5018   case InitializedEntity::EK_CompoundLiteralInit:
5019     break;
5020   default:
5021     return false;
5022   }
5023 
5024   switch (Kind.getKind()) {
5025   case InitializationKind::IK_DirectList:
5026     return true;
5027   // FIXME: Hack to work around cast weirdness.
5028   case InitializationKind::IK_Direct:
5029   case InitializationKind::IK_Value:
5030     return NumArgs != 1;
5031   default:
5032     return false;
5033   }
5034 }
5035 
5036 static ExprResult
5037 PerformConstructorInitialization(Sema &S,
5038                                  const InitializedEntity &Entity,
5039                                  const InitializationKind &Kind,
5040                                  MultiExprArg Args,
5041                                  const InitializationSequence::Step& Step,
5042                                  bool &ConstructorInitRequiresZeroInit,
5043                                  bool IsListInitialization) {
5044   unsigned NumArgs = Args.size();
5045   CXXConstructorDecl *Constructor
5046     = cast<CXXConstructorDecl>(Step.Function.Function);
5047   bool HadMultipleCandidates = Step.Function.HadMultipleCandidates;
5048 
5049   // Build a call to the selected constructor.
5050   SmallVector<Expr*, 8> ConstructorArgs;
5051   SourceLocation Loc = (Kind.isCopyInit() && Kind.getEqualLoc().isValid())
5052                          ? Kind.getEqualLoc()
5053                          : Kind.getLocation();
5054 
5055   if (Kind.getKind() == InitializationKind::IK_Default) {
5056     // Force even a trivial, implicit default constructor to be
5057     // semantically checked. We do this explicitly because we don't build
5058     // the definition for completely trivial constructors.
5059     assert(Constructor->getParent() && "No parent class for constructor.");
5060     if (Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
5061         Constructor->isTrivial() && !Constructor->isUsed(false))
5062       S.DefineImplicitDefaultConstructor(Loc, Constructor);
5063   }
5064 
5065   ExprResult CurInit = S.Owned((Expr *)0);
5066 
5067   // C++ [over.match.copy]p1:
5068   //   - When initializing a temporary to be bound to the first parameter
5069   //     of a constructor that takes a reference to possibly cv-qualified
5070   //     T as its first argument, called with a single argument in the
5071   //     context of direct-initialization, explicit conversion functions
5072   //     are also considered.
5073   bool AllowExplicitConv = Kind.AllowExplicit() && !Kind.isCopyInit() &&
5074                            Args.size() == 1 &&
5075                            Constructor->isCopyOrMoveConstructor();
5076 
5077   // Determine the arguments required to actually perform the constructor
5078   // call.
5079   if (S.CompleteConstructorCall(Constructor, Args,
5080                                 Loc, ConstructorArgs,
5081                                 AllowExplicitConv,
5082                                 IsListInitialization))
5083     return ExprError();
5084 
5085 
5086   if (isExplicitTemporary(Entity, Kind, NumArgs)) {
5087     // An explicitly-constructed temporary, e.g., X(1, 2).
5088     S.MarkFunctionReferenced(Loc, Constructor);
5089     if (S.DiagnoseUseOfDecl(Constructor, Loc))
5090       return ExprError();
5091 
5092     TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo();
5093     if (!TSInfo)
5094       TSInfo = S.Context.getTrivialTypeSourceInfo(Entity.getType(), Loc);
5095     SourceRange ParenRange;
5096     if (Kind.getKind() != InitializationKind::IK_DirectList)
5097       ParenRange = Kind.getParenRange();
5098 
5099     CurInit = S.Owned(
5100       new (S.Context) CXXTemporaryObjectExpr(S.Context, Constructor,
5101                                              TSInfo, ConstructorArgs,
5102                                              ParenRange, IsListInitialization,
5103                                              HadMultipleCandidates,
5104                                              ConstructorInitRequiresZeroInit));
5105   } else {
5106     CXXConstructExpr::ConstructionKind ConstructKind =
5107       CXXConstructExpr::CK_Complete;
5108 
5109     if (Entity.getKind() == InitializedEntity::EK_Base) {
5110       ConstructKind = Entity.getBaseSpecifier()->isVirtual() ?
5111         CXXConstructExpr::CK_VirtualBase :
5112         CXXConstructExpr::CK_NonVirtualBase;
5113     } else if (Entity.getKind() == InitializedEntity::EK_Delegating) {
5114       ConstructKind = CXXConstructExpr::CK_Delegating;
5115     }
5116 
5117     // Only get the parenthesis range if it is a direct construction.
5118     SourceRange parenRange =
5119         Kind.getKind() == InitializationKind::IK_Direct ?
5120         Kind.getParenRange() : SourceRange();
5121 
5122     // If the entity allows NRVO, mark the construction as elidable
5123     // unconditionally.
5124     if (Entity.allowsNRVO())
5125       CurInit = S.BuildCXXConstructExpr(Loc, Entity.getType(),
5126                                         Constructor, /*Elidable=*/true,
5127                                         ConstructorArgs,
5128                                         HadMultipleCandidates,
5129                                         IsListInitialization,
5130                                         ConstructorInitRequiresZeroInit,
5131                                         ConstructKind,
5132                                         parenRange);
5133     else
5134       CurInit = S.BuildCXXConstructExpr(Loc, Entity.getType(),
5135                                         Constructor,
5136                                         ConstructorArgs,
5137                                         HadMultipleCandidates,
5138                                         IsListInitialization,
5139                                         ConstructorInitRequiresZeroInit,
5140                                         ConstructKind,
5141                                         parenRange);
5142   }
5143   if (CurInit.isInvalid())
5144     return ExprError();
5145 
5146   // Only check access if all of that succeeded.
5147   S.CheckConstructorAccess(Loc, Constructor, Entity,
5148                            Step.Function.FoundDecl.getAccess());
5149   if (S.DiagnoseUseOfDecl(Step.Function.FoundDecl, Loc))
5150     return ExprError();
5151 
5152   if (shouldBindAsTemporary(Entity))
5153     CurInit = S.MaybeBindToTemporary(CurInit.take());
5154 
5155   return CurInit;
5156 }
5157 
5158 /// Determine whether the specified InitializedEntity definitely has a lifetime
5159 /// longer than the current full-expression. Conservatively returns false if
5160 /// it's unclear.
5161 static bool
5162 InitializedEntityOutlivesFullExpression(const InitializedEntity &Entity) {
5163   const InitializedEntity *Top = &Entity;
5164   while (Top->getParent())
5165     Top = Top->getParent();
5166 
5167   switch (Top->getKind()) {
5168   case InitializedEntity::EK_Variable:
5169   case InitializedEntity::EK_Result:
5170   case InitializedEntity::EK_Exception:
5171   case InitializedEntity::EK_Member:
5172   case InitializedEntity::EK_New:
5173   case InitializedEntity::EK_Base:
5174   case InitializedEntity::EK_Delegating:
5175     return true;
5176 
5177   case InitializedEntity::EK_ArrayElement:
5178   case InitializedEntity::EK_VectorElement:
5179   case InitializedEntity::EK_BlockElement:
5180   case InitializedEntity::EK_ComplexElement:
5181     // Could not determine what the full initialization is. Assume it might not
5182     // outlive the full-expression.
5183     return false;
5184 
5185   case InitializedEntity::EK_Parameter:
5186   case InitializedEntity::EK_Temporary:
5187   case InitializedEntity::EK_LambdaCapture:
5188   case InitializedEntity::EK_CompoundLiteralInit:
5189     // The entity being initialized might not outlive the full-expression.
5190     return false;
5191   }
5192 
5193   llvm_unreachable("unknown entity kind");
5194 }
5195 
5196 /// Determine the declaration which an initialized entity ultimately refers to,
5197 /// for the purpose of lifetime-extending a temporary bound to a reference in
5198 /// the initialization of \p Entity.
5199 static const ValueDecl *
5200 getDeclForTemporaryLifetimeExtension(const InitializedEntity &Entity,
5201                                      const ValueDecl *FallbackDecl = 0) {
5202   // C++11 [class.temporary]p5:
5203   switch (Entity.getKind()) {
5204   case InitializedEntity::EK_Variable:
5205     //   The temporary [...] persists for the lifetime of the reference
5206     return Entity.getDecl();
5207 
5208   case InitializedEntity::EK_Member:
5209     // For subobjects, we look at the complete object.
5210     if (Entity.getParent())
5211       return getDeclForTemporaryLifetimeExtension(*Entity.getParent(),
5212                                                   Entity.getDecl());
5213 
5214     //   except:
5215     //   -- A temporary bound to a reference member in a constructor's
5216     //      ctor-initializer persists until the constructor exits.
5217     return Entity.getDecl();
5218 
5219   case InitializedEntity::EK_Parameter:
5220     //   -- A temporary bound to a reference parameter in a function call
5221     //      persists until the completion of the full-expression containing
5222     //      the call.
5223   case InitializedEntity::EK_Result:
5224     //   -- The lifetime of a temporary bound to the returned value in a
5225     //      function return statement is not extended; the temporary is
5226     //      destroyed at the end of the full-expression in the return statement.
5227   case InitializedEntity::EK_New:
5228     //   -- A temporary bound to a reference in a new-initializer persists
5229     //      until the completion of the full-expression containing the
5230     //      new-initializer.
5231     return 0;
5232 
5233   case InitializedEntity::EK_Temporary:
5234   case InitializedEntity::EK_CompoundLiteralInit:
5235     // We don't yet know the storage duration of the surrounding temporary.
5236     // Assume it's got full-expression duration for now, it will patch up our
5237     // storage duration if that's not correct.
5238     return 0;
5239 
5240   case InitializedEntity::EK_ArrayElement:
5241     // For subobjects, we look at the complete object.
5242     return getDeclForTemporaryLifetimeExtension(*Entity.getParent(),
5243                                                 FallbackDecl);
5244 
5245   case InitializedEntity::EK_Base:
5246   case InitializedEntity::EK_Delegating:
5247     // We can reach this case for aggregate initialization in a constructor:
5248     //   struct A { int &&r; };
5249     //   struct B : A { B() : A{0} {} };
5250     // In this case, use the innermost field decl as the context.
5251     return FallbackDecl;
5252 
5253   case InitializedEntity::EK_BlockElement:
5254   case InitializedEntity::EK_LambdaCapture:
5255   case InitializedEntity::EK_Exception:
5256   case InitializedEntity::EK_VectorElement:
5257   case InitializedEntity::EK_ComplexElement:
5258     return 0;
5259   }
5260   llvm_unreachable("unknown entity kind");
5261 }
5262 
5263 static void performLifetimeExtension(Expr *Init, const ValueDecl *ExtendingD);
5264 
5265 /// Update a glvalue expression that is used as the initializer of a reference
5266 /// to note that its lifetime is extended.
5267 /// \return \c true if any temporary had its lifetime extended.
5268 static bool performReferenceExtension(Expr *Init, const ValueDecl *ExtendingD) {
5269   if (InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) {
5270     if (ILE->getNumInits() == 1 && ILE->isGLValue()) {
5271       // This is just redundant braces around an initializer. Step over it.
5272       Init = ILE->getInit(0);
5273     }
5274   }
5275 
5276   // Walk past any constructs which we can lifetime-extend across.
5277   Expr *Old;
5278   do {
5279     Old = Init;
5280 
5281     // Step over any subobject adjustments; we may have a materialized
5282     // temporary inside them.
5283     SmallVector<const Expr *, 2> CommaLHSs;
5284     SmallVector<SubobjectAdjustment, 2> Adjustments;
5285     Init = const_cast<Expr *>(
5286         Init->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments));
5287 
5288     // Per current approach for DR1376, look through casts to reference type
5289     // when performing lifetime extension.
5290     if (CastExpr *CE = dyn_cast<CastExpr>(Init))
5291       if (CE->getSubExpr()->isGLValue())
5292         Init = CE->getSubExpr();
5293 
5294     // FIXME: Per DR1213, subscripting on an array temporary produces an xvalue.
5295     // It's unclear if binding a reference to that xvalue extends the array
5296     // temporary.
5297   } while (Init != Old);
5298 
5299   if (MaterializeTemporaryExpr *ME = dyn_cast<MaterializeTemporaryExpr>(Init)) {
5300     // Update the storage duration of the materialized temporary.
5301     // FIXME: Rebuild the expression instead of mutating it.
5302     ME->setExtendingDecl(ExtendingD);
5303     performLifetimeExtension(ME->GetTemporaryExpr(), ExtendingD);
5304     return true;
5305   }
5306 
5307   return false;
5308 }
5309 
5310 /// Update a prvalue expression that is going to be materialized as a
5311 /// lifetime-extended temporary.
5312 static void performLifetimeExtension(Expr *Init, const ValueDecl *ExtendingD) {
5313   // Dig out the expression which constructs the extended temporary.
5314   SmallVector<const Expr *, 2> CommaLHSs;
5315   SmallVector<SubobjectAdjustment, 2> Adjustments;
5316   Init = const_cast<Expr *>(
5317       Init->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments));
5318 
5319   if (CXXBindTemporaryExpr *BTE = dyn_cast<CXXBindTemporaryExpr>(Init))
5320     Init = BTE->getSubExpr();
5321 
5322   if (CXXStdInitializerListExpr *ILE =
5323           dyn_cast<CXXStdInitializerListExpr>(Init)) {
5324     performReferenceExtension(ILE->getSubExpr(), ExtendingD);
5325     return;
5326   }
5327 
5328   if (InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) {
5329     if (ILE->getType()->isArrayType()) {
5330       for (unsigned I = 0, N = ILE->getNumInits(); I != N; ++I)
5331         performLifetimeExtension(ILE->getInit(I), ExtendingD);
5332       return;
5333     }
5334 
5335     if (CXXRecordDecl *RD = ILE->getType()->getAsCXXRecordDecl()) {
5336       assert(RD->isAggregate() && "aggregate init on non-aggregate");
5337 
5338       // If we lifetime-extend a braced initializer which is initializing an
5339       // aggregate, and that aggregate contains reference members which are
5340       // bound to temporaries, those temporaries are also lifetime-extended.
5341       if (RD->isUnion() && ILE->getInitializedFieldInUnion() &&
5342           ILE->getInitializedFieldInUnion()->getType()->isReferenceType())
5343         performReferenceExtension(ILE->getInit(0), ExtendingD);
5344       else {
5345         unsigned Index = 0;
5346         for (RecordDecl::field_iterator I = RD->field_begin(),
5347                                         E = RD->field_end();
5348              I != E; ++I) {
5349           if (I->isUnnamedBitfield())
5350             continue;
5351           if (I->getType()->isReferenceType())
5352             performReferenceExtension(ILE->getInit(Index), ExtendingD);
5353           else if (isa<InitListExpr>(ILE->getInit(Index)))
5354             // This may be either aggregate-initialization of a member or
5355             // initialization of a std::initializer_list object. Either way,
5356             // we should recursively lifetime-extend that initializer.
5357             performLifetimeExtension(ILE->getInit(Index), ExtendingD);
5358           ++Index;
5359         }
5360       }
5361     }
5362   }
5363 }
5364 
5365 static void warnOnLifetimeExtension(Sema &S, const InitializedEntity &Entity,
5366                                     const Expr *Init, bool IsInitializerList,
5367                                     const ValueDecl *ExtendingDecl) {
5368   // Warn if a field lifetime-extends a temporary.
5369   if (isa<FieldDecl>(ExtendingDecl)) {
5370     if (IsInitializerList) {
5371       S.Diag(Init->getExprLoc(), diag::warn_dangling_std_initializer_list)
5372         << /*at end of constructor*/true;
5373       return;
5374     }
5375 
5376     bool IsSubobjectMember = false;
5377     for (const InitializedEntity *Ent = Entity.getParent(); Ent;
5378          Ent = Ent->getParent()) {
5379       if (Ent->getKind() != InitializedEntity::EK_Base) {
5380         IsSubobjectMember = true;
5381         break;
5382       }
5383     }
5384     S.Diag(Init->getExprLoc(),
5385            diag::warn_bind_ref_member_to_temporary)
5386       << ExtendingDecl << Init->getSourceRange()
5387       << IsSubobjectMember << IsInitializerList;
5388     if (IsSubobjectMember)
5389       S.Diag(ExtendingDecl->getLocation(),
5390              diag::note_ref_subobject_of_member_declared_here);
5391     else
5392       S.Diag(ExtendingDecl->getLocation(),
5393              diag::note_ref_or_ptr_member_declared_here)
5394         << /*is pointer*/false;
5395   }
5396 }
5397 
5398 ExprResult
5399 InitializationSequence::Perform(Sema &S,
5400                                 const InitializedEntity &Entity,
5401                                 const InitializationKind &Kind,
5402                                 MultiExprArg Args,
5403                                 QualType *ResultType) {
5404   if (Failed()) {
5405     Diagnose(S, Entity, Kind, Args);
5406     return ExprError();
5407   }
5408 
5409   if (getKind() == DependentSequence) {
5410     // If the declaration is a non-dependent, incomplete array type
5411     // that has an initializer, then its type will be completed once
5412     // the initializer is instantiated.
5413     if (ResultType && !Entity.getType()->isDependentType() &&
5414         Args.size() == 1) {
5415       QualType DeclType = Entity.getType();
5416       if (const IncompleteArrayType *ArrayT
5417                            = S.Context.getAsIncompleteArrayType(DeclType)) {
5418         // FIXME: We don't currently have the ability to accurately
5419         // compute the length of an initializer list without
5420         // performing full type-checking of the initializer list
5421         // (since we have to determine where braces are implicitly
5422         // introduced and such).  So, we fall back to making the array
5423         // type a dependently-sized array type with no specified
5424         // bound.
5425         if (isa<InitListExpr>((Expr *)Args[0])) {
5426           SourceRange Brackets;
5427 
5428           // Scavange the location of the brackets from the entity, if we can.
5429           if (DeclaratorDecl *DD = Entity.getDecl()) {
5430             if (TypeSourceInfo *TInfo = DD->getTypeSourceInfo()) {
5431               TypeLoc TL = TInfo->getTypeLoc();
5432               if (IncompleteArrayTypeLoc ArrayLoc =
5433                       TL.getAs<IncompleteArrayTypeLoc>())
5434                 Brackets = ArrayLoc.getBracketsRange();
5435             }
5436           }
5437 
5438           *ResultType
5439             = S.Context.getDependentSizedArrayType(ArrayT->getElementType(),
5440                                                    /*NumElts=*/0,
5441                                                    ArrayT->getSizeModifier(),
5442                                        ArrayT->getIndexTypeCVRQualifiers(),
5443                                                    Brackets);
5444         }
5445 
5446       }
5447     }
5448     if (Kind.getKind() == InitializationKind::IK_Direct &&
5449         !Kind.isExplicitCast()) {
5450       // Rebuild the ParenListExpr.
5451       SourceRange ParenRange = Kind.getParenRange();
5452       return S.ActOnParenListExpr(ParenRange.getBegin(), ParenRange.getEnd(),
5453                                   Args);
5454     }
5455     assert(Kind.getKind() == InitializationKind::IK_Copy ||
5456            Kind.isExplicitCast() ||
5457            Kind.getKind() == InitializationKind::IK_DirectList);
5458     return ExprResult(Args[0]);
5459   }
5460 
5461   // No steps means no initialization.
5462   if (Steps.empty())
5463     return S.Owned((Expr *)0);
5464 
5465   if (S.getLangOpts().CPlusPlus11 && Entity.getType()->isReferenceType() &&
5466       Args.size() == 1 && isa<InitListExpr>(Args[0]) &&
5467       Entity.getKind() != InitializedEntity::EK_Parameter) {
5468     // Produce a C++98 compatibility warning if we are initializing a reference
5469     // from an initializer list. For parameters, we produce a better warning
5470     // elsewhere.
5471     Expr *Init = Args[0];
5472     S.Diag(Init->getLocStart(), diag::warn_cxx98_compat_reference_list_init)
5473       << Init->getSourceRange();
5474   }
5475 
5476   // Diagnose cases where we initialize a pointer to an array temporary, and the
5477   // pointer obviously outlives the temporary.
5478   if (Args.size() == 1 && Args[0]->getType()->isArrayType() &&
5479       Entity.getType()->isPointerType() &&
5480       InitializedEntityOutlivesFullExpression(Entity)) {
5481     Expr *Init = Args[0];
5482     Expr::LValueClassification Kind = Init->ClassifyLValue(S.Context);
5483     if (Kind == Expr::LV_ClassTemporary || Kind == Expr::LV_ArrayTemporary)
5484       S.Diag(Init->getLocStart(), diag::warn_temporary_array_to_pointer_decay)
5485         << Init->getSourceRange();
5486   }
5487 
5488   QualType DestType = Entity.getType().getNonReferenceType();
5489   // FIXME: Ugly hack around the fact that Entity.getType() is not
5490   // the same as Entity.getDecl()->getType() in cases involving type merging,
5491   //  and we want latter when it makes sense.
5492   if (ResultType)
5493     *ResultType = Entity.getDecl() ? Entity.getDecl()->getType() :
5494                                      Entity.getType();
5495 
5496   ExprResult CurInit = S.Owned((Expr *)0);
5497 
5498   // For initialization steps that start with a single initializer,
5499   // grab the only argument out the Args and place it into the "current"
5500   // initializer.
5501   switch (Steps.front().Kind) {
5502   case SK_ResolveAddressOfOverloadedFunction:
5503   case SK_CastDerivedToBaseRValue:
5504   case SK_CastDerivedToBaseXValue:
5505   case SK_CastDerivedToBaseLValue:
5506   case SK_BindReference:
5507   case SK_BindReferenceToTemporary:
5508   case SK_ExtraneousCopyToTemporary:
5509   case SK_UserConversion:
5510   case SK_QualificationConversionLValue:
5511   case SK_QualificationConversionXValue:
5512   case SK_QualificationConversionRValue:
5513   case SK_LValueToRValue:
5514   case SK_ConversionSequence:
5515   case SK_ListInitialization:
5516   case SK_UnwrapInitList:
5517   case SK_RewrapInitList:
5518   case SK_CAssignment:
5519   case SK_StringInit:
5520   case SK_ObjCObjectConversion:
5521   case SK_ArrayInit:
5522   case SK_ParenthesizedArrayInit:
5523   case SK_PassByIndirectCopyRestore:
5524   case SK_PassByIndirectRestore:
5525   case SK_ProduceObjCObject:
5526   case SK_StdInitializerList:
5527   case SK_OCLSamplerInit:
5528   case SK_OCLZeroEvent: {
5529     assert(Args.size() == 1);
5530     CurInit = Args[0];
5531     if (!CurInit.get()) return ExprError();
5532     break;
5533   }
5534 
5535   case SK_ConstructorInitialization:
5536   case SK_ListConstructorCall:
5537   case SK_ZeroInitialization:
5538     break;
5539   }
5540 
5541   // Walk through the computed steps for the initialization sequence,
5542   // performing the specified conversions along the way.
5543   bool ConstructorInitRequiresZeroInit = false;
5544   for (step_iterator Step = step_begin(), StepEnd = step_end();
5545        Step != StepEnd; ++Step) {
5546     if (CurInit.isInvalid())
5547       return ExprError();
5548 
5549     QualType SourceType = CurInit.get() ? CurInit.get()->getType() : QualType();
5550 
5551     switch (Step->Kind) {
5552     case SK_ResolveAddressOfOverloadedFunction:
5553       // Overload resolution determined which function invoke; update the
5554       // initializer to reflect that choice.
5555       S.CheckAddressOfMemberAccess(CurInit.get(), Step->Function.FoundDecl);
5556       if (S.DiagnoseUseOfDecl(Step->Function.FoundDecl, Kind.getLocation()))
5557         return ExprError();
5558       CurInit = S.FixOverloadedFunctionReference(CurInit,
5559                                                  Step->Function.FoundDecl,
5560                                                  Step->Function.Function);
5561       break;
5562 
5563     case SK_CastDerivedToBaseRValue:
5564     case SK_CastDerivedToBaseXValue:
5565     case SK_CastDerivedToBaseLValue: {
5566       // We have a derived-to-base cast that produces either an rvalue or an
5567       // lvalue. Perform that cast.
5568 
5569       CXXCastPath BasePath;
5570 
5571       // Casts to inaccessible base classes are allowed with C-style casts.
5572       bool IgnoreBaseAccess = Kind.isCStyleOrFunctionalCast();
5573       if (S.CheckDerivedToBaseConversion(SourceType, Step->Type,
5574                                          CurInit.get()->getLocStart(),
5575                                          CurInit.get()->getSourceRange(),
5576                                          &BasePath, IgnoreBaseAccess))
5577         return ExprError();
5578 
5579       if (S.BasePathInvolvesVirtualBase(BasePath)) {
5580         QualType T = SourceType;
5581         if (const PointerType *Pointer = T->getAs<PointerType>())
5582           T = Pointer->getPointeeType();
5583         if (const RecordType *RecordTy = T->getAs<RecordType>())
5584           S.MarkVTableUsed(CurInit.get()->getLocStart(),
5585                            cast<CXXRecordDecl>(RecordTy->getDecl()));
5586       }
5587 
5588       ExprValueKind VK =
5589           Step->Kind == SK_CastDerivedToBaseLValue ?
5590               VK_LValue :
5591               (Step->Kind == SK_CastDerivedToBaseXValue ?
5592                    VK_XValue :
5593                    VK_RValue);
5594       CurInit = S.Owned(ImplicitCastExpr::Create(S.Context,
5595                                                  Step->Type,
5596                                                  CK_DerivedToBase,
5597                                                  CurInit.get(),
5598                                                  &BasePath, VK));
5599       break;
5600     }
5601 
5602     case SK_BindReference:
5603       // References cannot bind to bit-fields (C++ [dcl.init.ref]p5).
5604       if (CurInit.get()->refersToBitField()) {
5605         // We don't necessarily have an unambiguous source bit-field.
5606         FieldDecl *BitField = CurInit.get()->getSourceBitField();
5607         S.Diag(Kind.getLocation(), diag::err_reference_bind_to_bitfield)
5608           << Entity.getType().isVolatileQualified()
5609           << (BitField ? BitField->getDeclName() : DeclarationName())
5610           << (BitField != NULL)
5611           << CurInit.get()->getSourceRange();
5612         if (BitField)
5613           S.Diag(BitField->getLocation(), diag::note_bitfield_decl);
5614 
5615         return ExprError();
5616       }
5617 
5618       if (CurInit.get()->refersToVectorElement()) {
5619         // References cannot bind to vector elements.
5620         S.Diag(Kind.getLocation(), diag::err_reference_bind_to_vector_element)
5621           << Entity.getType().isVolatileQualified()
5622           << CurInit.get()->getSourceRange();
5623         PrintInitLocationNote(S, Entity);
5624         return ExprError();
5625       }
5626 
5627       // Reference binding does not have any corresponding ASTs.
5628 
5629       // Check exception specifications
5630       if (S.CheckExceptionSpecCompatibility(CurInit.get(), DestType))
5631         return ExprError();
5632 
5633       // Even though we didn't materialize a temporary, the binding may still
5634       // extend the lifetime of a temporary. This happens if we bind a reference
5635       // to the result of a cast to reference type.
5636       if (const ValueDecl *ExtendingDecl =
5637               getDeclForTemporaryLifetimeExtension(Entity)) {
5638         if (performReferenceExtension(CurInit.get(), ExtendingDecl))
5639           warnOnLifetimeExtension(S, Entity, CurInit.get(), false,
5640                                   ExtendingDecl);
5641       }
5642 
5643       break;
5644 
5645     case SK_BindReferenceToTemporary: {
5646       // Make sure the "temporary" is actually an rvalue.
5647       assert(CurInit.get()->isRValue() && "not a temporary");
5648 
5649       // Check exception specifications
5650       if (S.CheckExceptionSpecCompatibility(CurInit.get(), DestType))
5651         return ExprError();
5652 
5653       // Maybe lifetime-extend the temporary's subobjects to match the
5654       // entity's lifetime.
5655       const ValueDecl *ExtendingDecl =
5656           getDeclForTemporaryLifetimeExtension(Entity);
5657       if (ExtendingDecl) {
5658         performLifetimeExtension(CurInit.get(), ExtendingDecl);
5659         warnOnLifetimeExtension(S, Entity, CurInit.get(), false, ExtendingDecl);
5660       }
5661 
5662       // Materialize the temporary into memory.
5663       MaterializeTemporaryExpr *MTE = new (S.Context) MaterializeTemporaryExpr(
5664           Entity.getType().getNonReferenceType(), CurInit.get(),
5665           Entity.getType()->isLValueReferenceType(), ExtendingDecl);
5666 
5667       // If we're binding to an Objective-C object that has lifetime, we
5668       // need cleanups. Likewise if we're extending this temporary to automatic
5669       // storage duration -- we need to register its cleanup during the
5670       // full-expression's cleanups.
5671       if ((S.getLangOpts().ObjCAutoRefCount &&
5672            MTE->getType()->isObjCLifetimeType()) ||
5673           (MTE->getStorageDuration() == SD_Automatic &&
5674            MTE->getType().isDestructedType()))
5675         S.ExprNeedsCleanups = true;
5676 
5677       CurInit = S.Owned(MTE);
5678       break;
5679     }
5680 
5681     case SK_ExtraneousCopyToTemporary:
5682       CurInit = CopyObject(S, Step->Type, Entity, CurInit,
5683                            /*IsExtraneousCopy=*/true);
5684       break;
5685 
5686     case SK_UserConversion: {
5687       // We have a user-defined conversion that invokes either a constructor
5688       // or a conversion function.
5689       CastKind CastKind;
5690       bool IsCopy = false;
5691       FunctionDecl *Fn = Step->Function.Function;
5692       DeclAccessPair FoundFn = Step->Function.FoundDecl;
5693       bool HadMultipleCandidates = Step->Function.HadMultipleCandidates;
5694       bool CreatedObject = false;
5695       if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Fn)) {
5696         // Build a call to the selected constructor.
5697         SmallVector<Expr*, 8> ConstructorArgs;
5698         SourceLocation Loc = CurInit.get()->getLocStart();
5699         CurInit.release(); // Ownership transferred into MultiExprArg, below.
5700 
5701         // Determine the arguments required to actually perform the constructor
5702         // call.
5703         Expr *Arg = CurInit.get();
5704         if (S.CompleteConstructorCall(Constructor,
5705                                       MultiExprArg(&Arg, 1),
5706                                       Loc, ConstructorArgs))
5707           return ExprError();
5708 
5709         // Build an expression that constructs a temporary.
5710         CurInit = S.BuildCXXConstructExpr(Loc, Step->Type, Constructor,
5711                                           ConstructorArgs,
5712                                           HadMultipleCandidates,
5713                                           /*ListInit*/ false,
5714                                           /*ZeroInit*/ false,
5715                                           CXXConstructExpr::CK_Complete,
5716                                           SourceRange());
5717         if (CurInit.isInvalid())
5718           return ExprError();
5719 
5720         S.CheckConstructorAccess(Kind.getLocation(), Constructor, Entity,
5721                                  FoundFn.getAccess());
5722         if (S.DiagnoseUseOfDecl(FoundFn, Kind.getLocation()))
5723           return ExprError();
5724 
5725         CastKind = CK_ConstructorConversion;
5726         QualType Class = S.Context.getTypeDeclType(Constructor->getParent());
5727         if (S.Context.hasSameUnqualifiedType(SourceType, Class) ||
5728             S.IsDerivedFrom(SourceType, Class))
5729           IsCopy = true;
5730 
5731         CreatedObject = true;
5732       } else {
5733         // Build a call to the conversion function.
5734         CXXConversionDecl *Conversion = cast<CXXConversionDecl>(Fn);
5735         S.CheckMemberOperatorAccess(Kind.getLocation(), CurInit.get(), 0,
5736                                     FoundFn);
5737         if (S.DiagnoseUseOfDecl(FoundFn, Kind.getLocation()))
5738           return ExprError();
5739 
5740         // FIXME: Should we move this initialization into a separate
5741         // derived-to-base conversion? I believe the answer is "no", because
5742         // we don't want to turn off access control here for c-style casts.
5743         ExprResult CurInitExprRes =
5744           S.PerformObjectArgumentInitialization(CurInit.take(), /*Qualifier=*/0,
5745                                                 FoundFn, Conversion);
5746         if(CurInitExprRes.isInvalid())
5747           return ExprError();
5748         CurInit = CurInitExprRes;
5749 
5750         // Build the actual call to the conversion function.
5751         CurInit = S.BuildCXXMemberCallExpr(CurInit.get(), FoundFn, Conversion,
5752                                            HadMultipleCandidates);
5753         if (CurInit.isInvalid() || !CurInit.get())
5754           return ExprError();
5755 
5756         CastKind = CK_UserDefinedConversion;
5757 
5758         CreatedObject = Conversion->getResultType()->isRecordType();
5759       }
5760 
5761       bool RequiresCopy = !IsCopy && !isReferenceBinding(Steps.back());
5762       bool MaybeBindToTemp = RequiresCopy || shouldBindAsTemporary(Entity);
5763 
5764       if (!MaybeBindToTemp && CreatedObject && shouldDestroyTemporary(Entity)) {
5765         QualType T = CurInit.get()->getType();
5766         if (const RecordType *Record = T->getAs<RecordType>()) {
5767           CXXDestructorDecl *Destructor
5768             = S.LookupDestructor(cast<CXXRecordDecl>(Record->getDecl()));
5769           S.CheckDestructorAccess(CurInit.get()->getLocStart(), Destructor,
5770                                   S.PDiag(diag::err_access_dtor_temp) << T);
5771           S.MarkFunctionReferenced(CurInit.get()->getLocStart(), Destructor);
5772           if (S.DiagnoseUseOfDecl(Destructor, CurInit.get()->getLocStart()))
5773             return ExprError();
5774         }
5775       }
5776 
5777       CurInit = S.Owned(ImplicitCastExpr::Create(S.Context,
5778                                                  CurInit.get()->getType(),
5779                                                  CastKind, CurInit.get(), 0,
5780                                                 CurInit.get()->getValueKind()));
5781       if (MaybeBindToTemp)
5782         CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>());
5783       if (RequiresCopy)
5784         CurInit = CopyObject(S, Entity.getType().getNonReferenceType(), Entity,
5785                              CurInit, /*IsExtraneousCopy=*/false);
5786       break;
5787     }
5788 
5789     case SK_QualificationConversionLValue:
5790     case SK_QualificationConversionXValue:
5791     case SK_QualificationConversionRValue: {
5792       // Perform a qualification conversion; these can never go wrong.
5793       ExprValueKind VK =
5794           Step->Kind == SK_QualificationConversionLValue ?
5795               VK_LValue :
5796               (Step->Kind == SK_QualificationConversionXValue ?
5797                    VK_XValue :
5798                    VK_RValue);
5799       CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type, CK_NoOp, VK);
5800       break;
5801     }
5802 
5803     case SK_LValueToRValue: {
5804       assert(CurInit.get()->isGLValue() && "cannot load from a prvalue");
5805       CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, Step->Type,
5806                                                  CK_LValueToRValue,
5807                                                  CurInit.take(),
5808                                                  /*BasePath=*/0,
5809                                                  VK_RValue));
5810       break;
5811     }
5812 
5813     case SK_ConversionSequence: {
5814       Sema::CheckedConversionKind CCK
5815         = Kind.isCStyleCast()? Sema::CCK_CStyleCast
5816         : Kind.isFunctionalCast()? Sema::CCK_FunctionalCast
5817         : Kind.isExplicitCast()? Sema::CCK_OtherCast
5818         : Sema::CCK_ImplicitConversion;
5819       ExprResult CurInitExprRes =
5820         S.PerformImplicitConversion(CurInit.get(), Step->Type, *Step->ICS,
5821                                     getAssignmentAction(Entity), CCK);
5822       if (CurInitExprRes.isInvalid())
5823         return ExprError();
5824       CurInit = CurInitExprRes;
5825       break;
5826     }
5827 
5828     case SK_ListInitialization: {
5829       InitListExpr *InitList = cast<InitListExpr>(CurInit.get());
5830       // If we're not initializing the top-level entity, we need to create an
5831       // InitializeTemporary entity for our target type.
5832       QualType Ty = Step->Type;
5833       bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty);
5834       InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(Ty);
5835       InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity;
5836       InitListChecker PerformInitList(S, InitEntity,
5837           InitList, Ty, /*VerifyOnly=*/false);
5838       if (PerformInitList.HadError())
5839         return ExprError();
5840 
5841       // Hack: We must update *ResultType if available in order to set the
5842       // bounds of arrays, e.g. in 'int ar[] = {1, 2, 3};'.
5843       // Worst case: 'const int (&arref)[] = {1, 2, 3};'.
5844       if (ResultType &&
5845           ResultType->getNonReferenceType()->isIncompleteArrayType()) {
5846         if ((*ResultType)->isRValueReferenceType())
5847           Ty = S.Context.getRValueReferenceType(Ty);
5848         else if ((*ResultType)->isLValueReferenceType())
5849           Ty = S.Context.getLValueReferenceType(Ty,
5850             (*ResultType)->getAs<LValueReferenceType>()->isSpelledAsLValue());
5851         *ResultType = Ty;
5852       }
5853 
5854       InitListExpr *StructuredInitList =
5855           PerformInitList.getFullyStructuredList();
5856       CurInit.release();
5857       CurInit = shouldBindAsTemporary(InitEntity)
5858           ? S.MaybeBindToTemporary(StructuredInitList)
5859           : S.Owned(StructuredInitList);
5860       break;
5861     }
5862 
5863     case SK_ListConstructorCall: {
5864       // When an initializer list is passed for a parameter of type "reference
5865       // to object", we don't get an EK_Temporary entity, but instead an
5866       // EK_Parameter entity with reference type.
5867       // FIXME: This is a hack. What we really should do is create a user
5868       // conversion step for this case, but this makes it considerably more
5869       // complicated. For now, this will do.
5870       InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(
5871                                         Entity.getType().getNonReferenceType());
5872       bool UseTemporary = Entity.getType()->isReferenceType();
5873       assert(Args.size() == 1 && "expected a single argument for list init");
5874       InitListExpr *InitList = cast<InitListExpr>(Args[0]);
5875       S.Diag(InitList->getExprLoc(), diag::warn_cxx98_compat_ctor_list_init)
5876         << InitList->getSourceRange();
5877       MultiExprArg Arg(InitList->getInits(), InitList->getNumInits());
5878       CurInit = PerformConstructorInitialization(S, UseTemporary ? TempEntity :
5879                                                                    Entity,
5880                                                  Kind, Arg, *Step,
5881                                                ConstructorInitRequiresZeroInit,
5882                                                /*IsListInitialization*/ true);
5883       break;
5884     }
5885 
5886     case SK_UnwrapInitList:
5887       CurInit = S.Owned(cast<InitListExpr>(CurInit.take())->getInit(0));
5888       break;
5889 
5890     case SK_RewrapInitList: {
5891       Expr *E = CurInit.take();
5892       InitListExpr *Syntactic = Step->WrappingSyntacticList;
5893       InitListExpr *ILE = new (S.Context) InitListExpr(S.Context,
5894           Syntactic->getLBraceLoc(), E, Syntactic->getRBraceLoc());
5895       ILE->setSyntacticForm(Syntactic);
5896       ILE->setType(E->getType());
5897       ILE->setValueKind(E->getValueKind());
5898       CurInit = S.Owned(ILE);
5899       break;
5900     }
5901 
5902     case SK_ConstructorInitialization: {
5903       // When an initializer list is passed for a parameter of type "reference
5904       // to object", we don't get an EK_Temporary entity, but instead an
5905       // EK_Parameter entity with reference type.
5906       // FIXME: This is a hack. What we really should do is create a user
5907       // conversion step for this case, but this makes it considerably more
5908       // complicated. For now, this will do.
5909       InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(
5910                                         Entity.getType().getNonReferenceType());
5911       bool UseTemporary = Entity.getType()->isReferenceType();
5912       CurInit = PerformConstructorInitialization(S, UseTemporary ? TempEntity
5913                                                                  : Entity,
5914                                                  Kind, Args, *Step,
5915                                                ConstructorInitRequiresZeroInit,
5916                                                /*IsListInitialization*/ false);
5917       break;
5918     }
5919 
5920     case SK_ZeroInitialization: {
5921       step_iterator NextStep = Step;
5922       ++NextStep;
5923       if (NextStep != StepEnd &&
5924           (NextStep->Kind == SK_ConstructorInitialization ||
5925            NextStep->Kind == SK_ListConstructorCall)) {
5926         // The need for zero-initialization is recorded directly into
5927         // the call to the object's constructor within the next step.
5928         ConstructorInitRequiresZeroInit = true;
5929       } else if (Kind.getKind() == InitializationKind::IK_Value &&
5930                  S.getLangOpts().CPlusPlus &&
5931                  !Kind.isImplicitValueInit()) {
5932         TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo();
5933         if (!TSInfo)
5934           TSInfo = S.Context.getTrivialTypeSourceInfo(Step->Type,
5935                                                     Kind.getRange().getBegin());
5936 
5937         CurInit = S.Owned(new (S.Context) CXXScalarValueInitExpr(
5938                               TSInfo->getType().getNonLValueExprType(S.Context),
5939                                                                  TSInfo,
5940                                                     Kind.getRange().getEnd()));
5941       } else {
5942         CurInit = S.Owned(new (S.Context) ImplicitValueInitExpr(Step->Type));
5943       }
5944       break;
5945     }
5946 
5947     case SK_CAssignment: {
5948       QualType SourceType = CurInit.get()->getType();
5949       ExprResult Result = CurInit;
5950       Sema::AssignConvertType ConvTy =
5951         S.CheckSingleAssignmentConstraints(Step->Type, Result);
5952       if (Result.isInvalid())
5953         return ExprError();
5954       CurInit = Result;
5955 
5956       // If this is a call, allow conversion to a transparent union.
5957       ExprResult CurInitExprRes = CurInit;
5958       if (ConvTy != Sema::Compatible &&
5959           Entity.getKind() == InitializedEntity::EK_Parameter &&
5960           S.CheckTransparentUnionArgumentConstraints(Step->Type, CurInitExprRes)
5961             == Sema::Compatible)
5962         ConvTy = Sema::Compatible;
5963       if (CurInitExprRes.isInvalid())
5964         return ExprError();
5965       CurInit = CurInitExprRes;
5966 
5967       bool Complained;
5968       if (S.DiagnoseAssignmentResult(ConvTy, Kind.getLocation(),
5969                                      Step->Type, SourceType,
5970                                      CurInit.get(),
5971                                      getAssignmentAction(Entity),
5972                                      &Complained)) {
5973         PrintInitLocationNote(S, Entity);
5974         return ExprError();
5975       } else if (Complained)
5976         PrintInitLocationNote(S, Entity);
5977       break;
5978     }
5979 
5980     case SK_StringInit: {
5981       QualType Ty = Step->Type;
5982       CheckStringInit(CurInit.get(), ResultType ? *ResultType : Ty,
5983                       S.Context.getAsArrayType(Ty), S);
5984       break;
5985     }
5986 
5987     case SK_ObjCObjectConversion:
5988       CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type,
5989                           CK_ObjCObjectLValueCast,
5990                           CurInit.get()->getValueKind());
5991       break;
5992 
5993     case SK_ArrayInit:
5994       // Okay: we checked everything before creating this step. Note that
5995       // this is a GNU extension.
5996       S.Diag(Kind.getLocation(), diag::ext_array_init_copy)
5997         << Step->Type << CurInit.get()->getType()
5998         << CurInit.get()->getSourceRange();
5999 
6000       // If the destination type is an incomplete array type, update the
6001       // type accordingly.
6002       if (ResultType) {
6003         if (const IncompleteArrayType *IncompleteDest
6004                            = S.Context.getAsIncompleteArrayType(Step->Type)) {
6005           if (const ConstantArrayType *ConstantSource
6006                  = S.Context.getAsConstantArrayType(CurInit.get()->getType())) {
6007             *ResultType = S.Context.getConstantArrayType(
6008                                              IncompleteDest->getElementType(),
6009                                              ConstantSource->getSize(),
6010                                              ArrayType::Normal, 0);
6011           }
6012         }
6013       }
6014       break;
6015 
6016     case SK_ParenthesizedArrayInit:
6017       // Okay: we checked everything before creating this step. Note that
6018       // this is a GNU extension.
6019       S.Diag(Kind.getLocation(), diag::ext_array_init_parens)
6020         << CurInit.get()->getSourceRange();
6021       break;
6022 
6023     case SK_PassByIndirectCopyRestore:
6024     case SK_PassByIndirectRestore:
6025       checkIndirectCopyRestoreSource(S, CurInit.get());
6026       CurInit = S.Owned(new (S.Context)
6027                         ObjCIndirectCopyRestoreExpr(CurInit.take(), Step->Type,
6028                                 Step->Kind == SK_PassByIndirectCopyRestore));
6029       break;
6030 
6031     case SK_ProduceObjCObject:
6032       CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, Step->Type,
6033                                                  CK_ARCProduceObject,
6034                                                  CurInit.take(), 0, VK_RValue));
6035       break;
6036 
6037     case SK_StdInitializerList: {
6038       S.Diag(CurInit.get()->getExprLoc(),
6039              diag::warn_cxx98_compat_initializer_list_init)
6040         << CurInit.get()->getSourceRange();
6041 
6042       // Maybe lifetime-extend the array temporary's subobjects to match the
6043       // entity's lifetime.
6044       const ValueDecl *ExtendingDecl =
6045           getDeclForTemporaryLifetimeExtension(Entity);
6046       if (ExtendingDecl) {
6047         performLifetimeExtension(CurInit.get(), ExtendingDecl);
6048         warnOnLifetimeExtension(S, Entity, CurInit.get(), true, ExtendingDecl);
6049       }
6050 
6051       // Materialize the temporary into memory.
6052       MaterializeTemporaryExpr *MTE = new (S.Context)
6053           MaterializeTemporaryExpr(CurInit.get()->getType(), CurInit.get(),
6054                                    /*lvalue reference*/ false, ExtendingDecl);
6055 
6056       // Wrap it in a construction of a std::initializer_list<T>.
6057       CurInit = S.Owned(
6058           new (S.Context) CXXStdInitializerListExpr(Step->Type, MTE));
6059 
6060       // Bind the result, in case the library has given initializer_list a
6061       // non-trivial destructor.
6062       if (shouldBindAsTemporary(Entity))
6063         CurInit = S.MaybeBindToTemporary(CurInit.take());
6064       break;
6065     }
6066 
6067     case SK_OCLSamplerInit: {
6068       assert(Step->Type->isSamplerT() &&
6069              "Sampler initialization on non sampler type.");
6070 
6071       QualType SourceType = CurInit.get()->getType();
6072       InitializedEntity::EntityKind EntityKind = Entity.getKind();
6073 
6074       if (EntityKind == InitializedEntity::EK_Parameter) {
6075         if (!SourceType->isSamplerT())
6076           S.Diag(Kind.getLocation(), diag::err_sampler_argument_required)
6077             << SourceType;
6078       } else if (EntityKind != InitializedEntity::EK_Variable) {
6079         llvm_unreachable("Invalid EntityKind!");
6080       }
6081 
6082       break;
6083     }
6084     case SK_OCLZeroEvent: {
6085       assert(Step->Type->isEventT() &&
6086              "Event initialization on non event type.");
6087 
6088       CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type,
6089                                     CK_ZeroToOCLEvent,
6090                                     CurInit.get()->getValueKind());
6091       break;
6092     }
6093     }
6094   }
6095 
6096   // Diagnose non-fatal problems with the completed initialization.
6097   if (Entity.getKind() == InitializedEntity::EK_Member &&
6098       cast<FieldDecl>(Entity.getDecl())->isBitField())
6099     S.CheckBitFieldInitialization(Kind.getLocation(),
6100                                   cast<FieldDecl>(Entity.getDecl()),
6101                                   CurInit.get());
6102 
6103   return CurInit;
6104 }
6105 
6106 /// Somewhere within T there is an uninitialized reference subobject.
6107 /// Dig it out and diagnose it.
6108 static bool DiagnoseUninitializedReference(Sema &S, SourceLocation Loc,
6109                                            QualType T) {
6110   if (T->isReferenceType()) {
6111     S.Diag(Loc, diag::err_reference_without_init)
6112       << T.getNonReferenceType();
6113     return true;
6114   }
6115 
6116   CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
6117   if (!RD || !RD->hasUninitializedReferenceMember())
6118     return false;
6119 
6120   for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
6121                                      FE = RD->field_end(); FI != FE; ++FI) {
6122     if (FI->isUnnamedBitfield())
6123       continue;
6124 
6125     if (DiagnoseUninitializedReference(S, FI->getLocation(), FI->getType())) {
6126       S.Diag(Loc, diag::note_value_initialization_here) << RD;
6127       return true;
6128     }
6129   }
6130 
6131   for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
6132                                           BE = RD->bases_end();
6133        BI != BE; ++BI) {
6134     if (DiagnoseUninitializedReference(S, BI->getLocStart(), BI->getType())) {
6135       S.Diag(Loc, diag::note_value_initialization_here) << RD;
6136       return true;
6137     }
6138   }
6139 
6140   return false;
6141 }
6142 
6143 
6144 //===----------------------------------------------------------------------===//
6145 // Diagnose initialization failures
6146 //===----------------------------------------------------------------------===//
6147 
6148 /// Emit notes associated with an initialization that failed due to a
6149 /// "simple" conversion failure.
6150 static void emitBadConversionNotes(Sema &S, const InitializedEntity &entity,
6151                                    Expr *op) {
6152   QualType destType = entity.getType();
6153   if (destType.getNonReferenceType()->isObjCObjectPointerType() &&
6154       op->getType()->isObjCObjectPointerType()) {
6155 
6156     // Emit a possible note about the conversion failing because the
6157     // operand is a message send with a related result type.
6158     S.EmitRelatedResultTypeNote(op);
6159 
6160     // Emit a possible note about a return failing because we're
6161     // expecting a related result type.
6162     if (entity.getKind() == InitializedEntity::EK_Result)
6163       S.EmitRelatedResultTypeNoteForReturn(destType);
6164   }
6165 }
6166 
6167 bool InitializationSequence::Diagnose(Sema &S,
6168                                       const InitializedEntity &Entity,
6169                                       const InitializationKind &Kind,
6170                                       ArrayRef<Expr *> Args) {
6171   if (!Failed())
6172     return false;
6173 
6174   QualType DestType = Entity.getType();
6175   switch (Failure) {
6176   case FK_TooManyInitsForReference:
6177     // FIXME: Customize for the initialized entity?
6178     if (Args.empty()) {
6179       // Dig out the reference subobject which is uninitialized and diagnose it.
6180       // If this is value-initialization, this could be nested some way within
6181       // the target type.
6182       assert(Kind.getKind() == InitializationKind::IK_Value ||
6183              DestType->isReferenceType());
6184       bool Diagnosed =
6185         DiagnoseUninitializedReference(S, Kind.getLocation(), DestType);
6186       assert(Diagnosed && "couldn't find uninitialized reference to diagnose");
6187       (void)Diagnosed;
6188     } else  // FIXME: diagnostic below could be better!
6189       S.Diag(Kind.getLocation(), diag::err_reference_has_multiple_inits)
6190         << SourceRange(Args.front()->getLocStart(), Args.back()->getLocEnd());
6191     break;
6192 
6193   case FK_ArrayNeedsInitList:
6194     S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 0;
6195     break;
6196   case FK_ArrayNeedsInitListOrStringLiteral:
6197     S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 1;
6198     break;
6199   case FK_ArrayNeedsInitListOrWideStringLiteral:
6200     S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 2;
6201     break;
6202   case FK_NarrowStringIntoWideCharArray:
6203     S.Diag(Kind.getLocation(), diag::err_array_init_narrow_string_into_wchar);
6204     break;
6205   case FK_WideStringIntoCharArray:
6206     S.Diag(Kind.getLocation(), diag::err_array_init_wide_string_into_char);
6207     break;
6208   case FK_IncompatWideStringIntoWideChar:
6209     S.Diag(Kind.getLocation(),
6210            diag::err_array_init_incompat_wide_string_into_wchar);
6211     break;
6212   case FK_ArrayTypeMismatch:
6213   case FK_NonConstantArrayInit:
6214     S.Diag(Kind.getLocation(),
6215            (Failure == FK_ArrayTypeMismatch
6216               ? diag::err_array_init_different_type
6217               : diag::err_array_init_non_constant_array))
6218       << DestType.getNonReferenceType()
6219       << Args[0]->getType()
6220       << Args[0]->getSourceRange();
6221     break;
6222 
6223   case FK_VariableLengthArrayHasInitializer:
6224     S.Diag(Kind.getLocation(), diag::err_variable_object_no_init)
6225       << Args[0]->getSourceRange();
6226     break;
6227 
6228   case FK_AddressOfOverloadFailed: {
6229     DeclAccessPair Found;
6230     S.ResolveAddressOfOverloadedFunction(Args[0],
6231                                          DestType.getNonReferenceType(),
6232                                          true,
6233                                          Found);
6234     break;
6235   }
6236 
6237   case FK_ReferenceInitOverloadFailed:
6238   case FK_UserConversionOverloadFailed:
6239     switch (FailedOverloadResult) {
6240     case OR_Ambiguous:
6241       if (Failure == FK_UserConversionOverloadFailed)
6242         S.Diag(Kind.getLocation(), diag::err_typecheck_ambiguous_condition)
6243           << Args[0]->getType() << DestType
6244           << Args[0]->getSourceRange();
6245       else
6246         S.Diag(Kind.getLocation(), diag::err_ref_init_ambiguous)
6247           << DestType << Args[0]->getType()
6248           << Args[0]->getSourceRange();
6249 
6250       FailedCandidateSet.NoteCandidates(S, OCD_ViableCandidates, Args);
6251       break;
6252 
6253     case OR_No_Viable_Function:
6254       S.Diag(Kind.getLocation(), diag::err_typecheck_nonviable_condition)
6255         << Args[0]->getType() << DestType.getNonReferenceType()
6256         << Args[0]->getSourceRange();
6257       FailedCandidateSet.NoteCandidates(S, OCD_AllCandidates, Args);
6258       break;
6259 
6260     case OR_Deleted: {
6261       S.Diag(Kind.getLocation(), diag::err_typecheck_deleted_function)
6262         << Args[0]->getType() << DestType.getNonReferenceType()
6263         << Args[0]->getSourceRange();
6264       OverloadCandidateSet::iterator Best;
6265       OverloadingResult Ovl
6266         = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best,
6267                                                 true);
6268       if (Ovl == OR_Deleted) {
6269         S.NoteDeletedFunction(Best->Function);
6270       } else {
6271         llvm_unreachable("Inconsistent overload resolution?");
6272       }
6273       break;
6274     }
6275 
6276     case OR_Success:
6277       llvm_unreachable("Conversion did not fail!");
6278     }
6279     break;
6280 
6281   case FK_NonConstLValueReferenceBindingToTemporary:
6282     if (isa<InitListExpr>(Args[0])) {
6283       S.Diag(Kind.getLocation(),
6284              diag::err_lvalue_reference_bind_to_initlist)
6285       << DestType.getNonReferenceType().isVolatileQualified()
6286       << DestType.getNonReferenceType()
6287       << Args[0]->getSourceRange();
6288       break;
6289     }
6290     // Intentional fallthrough
6291 
6292   case FK_NonConstLValueReferenceBindingToUnrelated:
6293     S.Diag(Kind.getLocation(),
6294            Failure == FK_NonConstLValueReferenceBindingToTemporary
6295              ? diag::err_lvalue_reference_bind_to_temporary
6296              : diag::err_lvalue_reference_bind_to_unrelated)
6297       << DestType.getNonReferenceType().isVolatileQualified()
6298       << DestType.getNonReferenceType()
6299       << Args[0]->getType()
6300       << Args[0]->getSourceRange();
6301     break;
6302 
6303   case FK_RValueReferenceBindingToLValue:
6304     S.Diag(Kind.getLocation(), diag::err_lvalue_to_rvalue_ref)
6305       << DestType.getNonReferenceType() << Args[0]->getType()
6306       << Args[0]->getSourceRange();
6307     break;
6308 
6309   case FK_ReferenceInitDropsQualifiers:
6310     S.Diag(Kind.getLocation(), diag::err_reference_bind_drops_quals)
6311       << DestType.getNonReferenceType()
6312       << Args[0]->getType()
6313       << Args[0]->getSourceRange();
6314     break;
6315 
6316   case FK_ReferenceInitFailed:
6317     S.Diag(Kind.getLocation(), diag::err_reference_bind_failed)
6318       << DestType.getNonReferenceType()
6319       << Args[0]->isLValue()
6320       << Args[0]->getType()
6321       << Args[0]->getSourceRange();
6322     emitBadConversionNotes(S, Entity, Args[0]);
6323     break;
6324 
6325   case FK_ConversionFailed: {
6326     QualType FromType = Args[0]->getType();
6327     PartialDiagnostic PDiag = S.PDiag(diag::err_init_conversion_failed)
6328       << (int)Entity.getKind()
6329       << DestType
6330       << Args[0]->isLValue()
6331       << FromType
6332       << Args[0]->getSourceRange();
6333     S.HandleFunctionTypeMismatch(PDiag, FromType, DestType);
6334     S.Diag(Kind.getLocation(), PDiag);
6335     emitBadConversionNotes(S, Entity, Args[0]);
6336     break;
6337   }
6338 
6339   case FK_ConversionFromPropertyFailed:
6340     // No-op. This error has already been reported.
6341     break;
6342 
6343   case FK_TooManyInitsForScalar: {
6344     SourceRange R;
6345 
6346     if (InitListExpr *InitList = dyn_cast<InitListExpr>(Args[0]))
6347       R = SourceRange(InitList->getInit(0)->getLocEnd(),
6348                       InitList->getLocEnd());
6349     else
6350       R = SourceRange(Args.front()->getLocEnd(), Args.back()->getLocEnd());
6351 
6352     R.setBegin(S.PP.getLocForEndOfToken(R.getBegin()));
6353     if (Kind.isCStyleOrFunctionalCast())
6354       S.Diag(Kind.getLocation(), diag::err_builtin_func_cast_more_than_one_arg)
6355         << R;
6356     else
6357       S.Diag(Kind.getLocation(), diag::err_excess_initializers)
6358         << /*scalar=*/2 << R;
6359     break;
6360   }
6361 
6362   case FK_ReferenceBindingToInitList:
6363     S.Diag(Kind.getLocation(), diag::err_reference_bind_init_list)
6364       << DestType.getNonReferenceType() << Args[0]->getSourceRange();
6365     break;
6366 
6367   case FK_InitListBadDestinationType:
6368     S.Diag(Kind.getLocation(), diag::err_init_list_bad_dest_type)
6369       << (DestType->isRecordType()) << DestType << Args[0]->getSourceRange();
6370     break;
6371 
6372   case FK_ListConstructorOverloadFailed:
6373   case FK_ConstructorOverloadFailed: {
6374     SourceRange ArgsRange;
6375     if (Args.size())
6376       ArgsRange = SourceRange(Args.front()->getLocStart(),
6377                               Args.back()->getLocEnd());
6378 
6379     if (Failure == FK_ListConstructorOverloadFailed) {
6380       assert(Args.size() == 1 && "List construction from other than 1 argument.");
6381       InitListExpr *InitList = cast<InitListExpr>(Args[0]);
6382       Args = MultiExprArg(InitList->getInits(), InitList->getNumInits());
6383     }
6384 
6385     // FIXME: Using "DestType" for the entity we're printing is probably
6386     // bad.
6387     switch (FailedOverloadResult) {
6388       case OR_Ambiguous:
6389         S.Diag(Kind.getLocation(), diag::err_ovl_ambiguous_init)
6390           << DestType << ArgsRange;
6391         FailedCandidateSet.NoteCandidates(S, OCD_ViableCandidates, Args);
6392         break;
6393 
6394       case OR_No_Viable_Function:
6395         if (Kind.getKind() == InitializationKind::IK_Default &&
6396             (Entity.getKind() == InitializedEntity::EK_Base ||
6397              Entity.getKind() == InitializedEntity::EK_Member) &&
6398             isa<CXXConstructorDecl>(S.CurContext)) {
6399           // This is implicit default initialization of a member or
6400           // base within a constructor. If no viable function was
6401           // found, notify the user that she needs to explicitly
6402           // initialize this base/member.
6403           CXXConstructorDecl *Constructor
6404             = cast<CXXConstructorDecl>(S.CurContext);
6405           if (Entity.getKind() == InitializedEntity::EK_Base) {
6406             S.Diag(Kind.getLocation(), diag::err_missing_default_ctor)
6407               << (Constructor->getInheritedConstructor() ? 2 :
6408                   Constructor->isImplicit() ? 1 : 0)
6409               << S.Context.getTypeDeclType(Constructor->getParent())
6410               << /*base=*/0
6411               << Entity.getType();
6412 
6413             RecordDecl *BaseDecl
6414               = Entity.getBaseSpecifier()->getType()->getAs<RecordType>()
6415                                                                   ->getDecl();
6416             S.Diag(BaseDecl->getLocation(), diag::note_previous_decl)
6417               << S.Context.getTagDeclType(BaseDecl);
6418           } else {
6419             S.Diag(Kind.getLocation(), diag::err_missing_default_ctor)
6420               << (Constructor->getInheritedConstructor() ? 2 :
6421                   Constructor->isImplicit() ? 1 : 0)
6422               << S.Context.getTypeDeclType(Constructor->getParent())
6423               << /*member=*/1
6424               << Entity.getName();
6425             S.Diag(Entity.getDecl()->getLocation(), diag::note_field_decl);
6426 
6427             if (const RecordType *Record
6428                                  = Entity.getType()->getAs<RecordType>())
6429               S.Diag(Record->getDecl()->getLocation(),
6430                      diag::note_previous_decl)
6431                 << S.Context.getTagDeclType(Record->getDecl());
6432           }
6433           break;
6434         }
6435 
6436         S.Diag(Kind.getLocation(), diag::err_ovl_no_viable_function_in_init)
6437           << DestType << ArgsRange;
6438         FailedCandidateSet.NoteCandidates(S, OCD_AllCandidates, Args);
6439         break;
6440 
6441       case OR_Deleted: {
6442         OverloadCandidateSet::iterator Best;
6443         OverloadingResult Ovl
6444           = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best);
6445         if (Ovl != OR_Deleted) {
6446           S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init)
6447             << true << DestType << ArgsRange;
6448           llvm_unreachable("Inconsistent overload resolution?");
6449           break;
6450         }
6451 
6452         // If this is a defaulted or implicitly-declared function, then
6453         // it was implicitly deleted. Make it clear that the deletion was
6454         // implicit.
6455         if (S.isImplicitlyDeleted(Best->Function))
6456           S.Diag(Kind.getLocation(), diag::err_ovl_deleted_special_init)
6457             << S.getSpecialMember(cast<CXXMethodDecl>(Best->Function))
6458             << DestType << ArgsRange;
6459         else
6460           S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init)
6461             << true << DestType << ArgsRange;
6462 
6463         S.NoteDeletedFunction(Best->Function);
6464         break;
6465       }
6466 
6467       case OR_Success:
6468         llvm_unreachable("Conversion did not fail!");
6469     }
6470   }
6471   break;
6472 
6473   case FK_DefaultInitOfConst:
6474     if (Entity.getKind() == InitializedEntity::EK_Member &&
6475         isa<CXXConstructorDecl>(S.CurContext)) {
6476       // This is implicit default-initialization of a const member in
6477       // a constructor. Complain that it needs to be explicitly
6478       // initialized.
6479       CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(S.CurContext);
6480       S.Diag(Kind.getLocation(), diag::err_uninitialized_member_in_ctor)
6481         << (Constructor->getInheritedConstructor() ? 2 :
6482             Constructor->isImplicit() ? 1 : 0)
6483         << S.Context.getTypeDeclType(Constructor->getParent())
6484         << /*const=*/1
6485         << Entity.getName();
6486       S.Diag(Entity.getDecl()->getLocation(), diag::note_previous_decl)
6487         << Entity.getName();
6488     } else {
6489       S.Diag(Kind.getLocation(), diag::err_default_init_const)
6490         << DestType << (bool)DestType->getAs<RecordType>();
6491     }
6492     break;
6493 
6494   case FK_Incomplete:
6495     S.RequireCompleteType(Kind.getLocation(), FailedIncompleteType,
6496                           diag::err_init_incomplete_type);
6497     break;
6498 
6499   case FK_ListInitializationFailed: {
6500     // Run the init list checker again to emit diagnostics.
6501     InitListExpr* InitList = cast<InitListExpr>(Args[0]);
6502     QualType DestType = Entity.getType();
6503     InitListChecker DiagnoseInitList(S, Entity, InitList,
6504             DestType, /*VerifyOnly=*/false);
6505     assert(DiagnoseInitList.HadError() &&
6506            "Inconsistent init list check result.");
6507     break;
6508   }
6509 
6510   case FK_PlaceholderType: {
6511     // FIXME: Already diagnosed!
6512     break;
6513   }
6514 
6515   case FK_ExplicitConstructor: {
6516     S.Diag(Kind.getLocation(), diag::err_selected_explicit_constructor)
6517       << Args[0]->getSourceRange();
6518     OverloadCandidateSet::iterator Best;
6519     OverloadingResult Ovl
6520       = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best);
6521     (void)Ovl;
6522     assert(Ovl == OR_Success && "Inconsistent overload resolution");
6523     CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
6524     S.Diag(CtorDecl->getLocation(), diag::note_constructor_declared_here);
6525     break;
6526   }
6527   }
6528 
6529   PrintInitLocationNote(S, Entity);
6530   return true;
6531 }
6532 
6533 void InitializationSequence::dump(raw_ostream &OS) const {
6534   switch (SequenceKind) {
6535   case FailedSequence: {
6536     OS << "Failed sequence: ";
6537     switch (Failure) {
6538     case FK_TooManyInitsForReference:
6539       OS << "too many initializers for reference";
6540       break;
6541 
6542     case FK_ArrayNeedsInitList:
6543       OS << "array requires initializer list";
6544       break;
6545 
6546     case FK_ArrayNeedsInitListOrStringLiteral:
6547       OS << "array requires initializer list or string literal";
6548       break;
6549 
6550     case FK_ArrayNeedsInitListOrWideStringLiteral:
6551       OS << "array requires initializer list or wide string literal";
6552       break;
6553 
6554     case FK_NarrowStringIntoWideCharArray:
6555       OS << "narrow string into wide char array";
6556       break;
6557 
6558     case FK_WideStringIntoCharArray:
6559       OS << "wide string into char array";
6560       break;
6561 
6562     case FK_IncompatWideStringIntoWideChar:
6563       OS << "incompatible wide string into wide char array";
6564       break;
6565 
6566     case FK_ArrayTypeMismatch:
6567       OS << "array type mismatch";
6568       break;
6569 
6570     case FK_NonConstantArrayInit:
6571       OS << "non-constant array initializer";
6572       break;
6573 
6574     case FK_AddressOfOverloadFailed:
6575       OS << "address of overloaded function failed";
6576       break;
6577 
6578     case FK_ReferenceInitOverloadFailed:
6579       OS << "overload resolution for reference initialization failed";
6580       break;
6581 
6582     case FK_NonConstLValueReferenceBindingToTemporary:
6583       OS << "non-const lvalue reference bound to temporary";
6584       break;
6585 
6586     case FK_NonConstLValueReferenceBindingToUnrelated:
6587       OS << "non-const lvalue reference bound to unrelated type";
6588       break;
6589 
6590     case FK_RValueReferenceBindingToLValue:
6591       OS << "rvalue reference bound to an lvalue";
6592       break;
6593 
6594     case FK_ReferenceInitDropsQualifiers:
6595       OS << "reference initialization drops qualifiers";
6596       break;
6597 
6598     case FK_ReferenceInitFailed:
6599       OS << "reference initialization failed";
6600       break;
6601 
6602     case FK_ConversionFailed:
6603       OS << "conversion failed";
6604       break;
6605 
6606     case FK_ConversionFromPropertyFailed:
6607       OS << "conversion from property failed";
6608       break;
6609 
6610     case FK_TooManyInitsForScalar:
6611       OS << "too many initializers for scalar";
6612       break;
6613 
6614     case FK_ReferenceBindingToInitList:
6615       OS << "referencing binding to initializer list";
6616       break;
6617 
6618     case FK_InitListBadDestinationType:
6619       OS << "initializer list for non-aggregate, non-scalar type";
6620       break;
6621 
6622     case FK_UserConversionOverloadFailed:
6623       OS << "overloading failed for user-defined conversion";
6624       break;
6625 
6626     case FK_ConstructorOverloadFailed:
6627       OS << "constructor overloading failed";
6628       break;
6629 
6630     case FK_DefaultInitOfConst:
6631       OS << "default initialization of a const variable";
6632       break;
6633 
6634     case FK_Incomplete:
6635       OS << "initialization of incomplete type";
6636       break;
6637 
6638     case FK_ListInitializationFailed:
6639       OS << "list initialization checker failure";
6640       break;
6641 
6642     case FK_VariableLengthArrayHasInitializer:
6643       OS << "variable length array has an initializer";
6644       break;
6645 
6646     case FK_PlaceholderType:
6647       OS << "initializer expression isn't contextually valid";
6648       break;
6649 
6650     case FK_ListConstructorOverloadFailed:
6651       OS << "list constructor overloading failed";
6652       break;
6653 
6654     case FK_ExplicitConstructor:
6655       OS << "list copy initialization chose explicit constructor";
6656       break;
6657     }
6658     OS << '\n';
6659     return;
6660   }
6661 
6662   case DependentSequence:
6663     OS << "Dependent sequence\n";
6664     return;
6665 
6666   case NormalSequence:
6667     OS << "Normal sequence: ";
6668     break;
6669   }
6670 
6671   for (step_iterator S = step_begin(), SEnd = step_end(); S != SEnd; ++S) {
6672     if (S != step_begin()) {
6673       OS << " -> ";
6674     }
6675 
6676     switch (S->Kind) {
6677     case SK_ResolveAddressOfOverloadedFunction:
6678       OS << "resolve address of overloaded function";
6679       break;
6680 
6681     case SK_CastDerivedToBaseRValue:
6682       OS << "derived-to-base case (rvalue" << S->Type.getAsString() << ")";
6683       break;
6684 
6685     case SK_CastDerivedToBaseXValue:
6686       OS << "derived-to-base case (xvalue" << S->Type.getAsString() << ")";
6687       break;
6688 
6689     case SK_CastDerivedToBaseLValue:
6690       OS << "derived-to-base case (lvalue" << S->Type.getAsString() << ")";
6691       break;
6692 
6693     case SK_BindReference:
6694       OS << "bind reference to lvalue";
6695       break;
6696 
6697     case SK_BindReferenceToTemporary:
6698       OS << "bind reference to a temporary";
6699       break;
6700 
6701     case SK_ExtraneousCopyToTemporary:
6702       OS << "extraneous C++03 copy to temporary";
6703       break;
6704 
6705     case SK_UserConversion:
6706       OS << "user-defined conversion via " << *S->Function.Function;
6707       break;
6708 
6709     case SK_QualificationConversionRValue:
6710       OS << "qualification conversion (rvalue)";
6711       break;
6712 
6713     case SK_QualificationConversionXValue:
6714       OS << "qualification conversion (xvalue)";
6715       break;
6716 
6717     case SK_QualificationConversionLValue:
6718       OS << "qualification conversion (lvalue)";
6719       break;
6720 
6721     case SK_LValueToRValue:
6722       OS << "load (lvalue to rvalue)";
6723       break;
6724 
6725     case SK_ConversionSequence:
6726       OS << "implicit conversion sequence (";
6727       S->ICS->DebugPrint(); // FIXME: use OS
6728       OS << ")";
6729       break;
6730 
6731     case SK_ListInitialization:
6732       OS << "list aggregate initialization";
6733       break;
6734 
6735     case SK_ListConstructorCall:
6736       OS << "list initialization via constructor";
6737       break;
6738 
6739     case SK_UnwrapInitList:
6740       OS << "unwrap reference initializer list";
6741       break;
6742 
6743     case SK_RewrapInitList:
6744       OS << "rewrap reference initializer list";
6745       break;
6746 
6747     case SK_ConstructorInitialization:
6748       OS << "constructor initialization";
6749       break;
6750 
6751     case SK_ZeroInitialization:
6752       OS << "zero initialization";
6753       break;
6754 
6755     case SK_CAssignment:
6756       OS << "C assignment";
6757       break;
6758 
6759     case SK_StringInit:
6760       OS << "string initialization";
6761       break;
6762 
6763     case SK_ObjCObjectConversion:
6764       OS << "Objective-C object conversion";
6765       break;
6766 
6767     case SK_ArrayInit:
6768       OS << "array initialization";
6769       break;
6770 
6771     case SK_ParenthesizedArrayInit:
6772       OS << "parenthesized array initialization";
6773       break;
6774 
6775     case SK_PassByIndirectCopyRestore:
6776       OS << "pass by indirect copy and restore";
6777       break;
6778 
6779     case SK_PassByIndirectRestore:
6780       OS << "pass by indirect restore";
6781       break;
6782 
6783     case SK_ProduceObjCObject:
6784       OS << "Objective-C object retension";
6785       break;
6786 
6787     case SK_StdInitializerList:
6788       OS << "std::initializer_list from initializer list";
6789       break;
6790 
6791     case SK_OCLSamplerInit:
6792       OS << "OpenCL sampler_t from integer constant";
6793       break;
6794 
6795     case SK_OCLZeroEvent:
6796       OS << "OpenCL event_t from zero";
6797       break;
6798     }
6799 
6800     OS << " [" << S->Type.getAsString() << ']';
6801   }
6802 
6803   OS << '\n';
6804 }
6805 
6806 void InitializationSequence::dump() const {
6807   dump(llvm::errs());
6808 }
6809 
6810 static void DiagnoseNarrowingInInitList(Sema &S, InitializationSequence &Seq,
6811                                         QualType EntityType,
6812                                         const Expr *PreInit,
6813                                         const Expr *PostInit) {
6814   if (Seq.step_begin() == Seq.step_end() || PreInit->isValueDependent())
6815     return;
6816 
6817   // A narrowing conversion can only appear as the final implicit conversion in
6818   // an initialization sequence.
6819   const InitializationSequence::Step &LastStep = Seq.step_end()[-1];
6820   if (LastStep.Kind != InitializationSequence::SK_ConversionSequence)
6821     return;
6822 
6823   const ImplicitConversionSequence &ICS = *LastStep.ICS;
6824   const StandardConversionSequence *SCS = 0;
6825   switch (ICS.getKind()) {
6826   case ImplicitConversionSequence::StandardConversion:
6827     SCS = &ICS.Standard;
6828     break;
6829   case ImplicitConversionSequence::UserDefinedConversion:
6830     SCS = &ICS.UserDefined.After;
6831     break;
6832   case ImplicitConversionSequence::AmbiguousConversion:
6833   case ImplicitConversionSequence::EllipsisConversion:
6834   case ImplicitConversionSequence::BadConversion:
6835     return;
6836   }
6837 
6838   // Determine the type prior to the narrowing conversion. If a conversion
6839   // operator was used, this may be different from both the type of the entity
6840   // and of the pre-initialization expression.
6841   QualType PreNarrowingType = PreInit->getType();
6842   if (Seq.step_begin() + 1 != Seq.step_end())
6843     PreNarrowingType = Seq.step_end()[-2].Type;
6844 
6845   // C++11 [dcl.init.list]p7: Check whether this is a narrowing conversion.
6846   APValue ConstantValue;
6847   QualType ConstantType;
6848   switch (SCS->getNarrowingKind(S.Context, PostInit, ConstantValue,
6849                                 ConstantType)) {
6850   case NK_Not_Narrowing:
6851     // No narrowing occurred.
6852     return;
6853 
6854   case NK_Type_Narrowing:
6855     // This was a floating-to-integer conversion, which is always considered a
6856     // narrowing conversion even if the value is a constant and can be
6857     // represented exactly as an integer.
6858     S.Diag(PostInit->getLocStart(),
6859            S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11?
6860              diag::warn_init_list_type_narrowing
6861            : S.isSFINAEContext()?
6862              diag::err_init_list_type_narrowing_sfinae
6863            : diag::err_init_list_type_narrowing)
6864       << PostInit->getSourceRange()
6865       << PreNarrowingType.getLocalUnqualifiedType()
6866       << EntityType.getLocalUnqualifiedType();
6867     break;
6868 
6869   case NK_Constant_Narrowing:
6870     // A constant value was narrowed.
6871     S.Diag(PostInit->getLocStart(),
6872            S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11?
6873              diag::warn_init_list_constant_narrowing
6874            : S.isSFINAEContext()?
6875              diag::err_init_list_constant_narrowing_sfinae
6876            : diag::err_init_list_constant_narrowing)
6877       << PostInit->getSourceRange()
6878       << ConstantValue.getAsString(S.getASTContext(), ConstantType)
6879       << EntityType.getLocalUnqualifiedType();
6880     break;
6881 
6882   case NK_Variable_Narrowing:
6883     // A variable's value may have been narrowed.
6884     S.Diag(PostInit->getLocStart(),
6885            S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11?
6886              diag::warn_init_list_variable_narrowing
6887            : S.isSFINAEContext()?
6888              diag::err_init_list_variable_narrowing_sfinae
6889            : diag::err_init_list_variable_narrowing)
6890       << PostInit->getSourceRange()
6891       << PreNarrowingType.getLocalUnqualifiedType()
6892       << EntityType.getLocalUnqualifiedType();
6893     break;
6894   }
6895 
6896   SmallString<128> StaticCast;
6897   llvm::raw_svector_ostream OS(StaticCast);
6898   OS << "static_cast<";
6899   if (const TypedefType *TT = EntityType->getAs<TypedefType>()) {
6900     // It's important to use the typedef's name if there is one so that the
6901     // fixit doesn't break code using types like int64_t.
6902     //
6903     // FIXME: This will break if the typedef requires qualification.  But
6904     // getQualifiedNameAsString() includes non-machine-parsable components.
6905     OS << *TT->getDecl();
6906   } else if (const BuiltinType *BT = EntityType->getAs<BuiltinType>())
6907     OS << BT->getName(S.getLangOpts());
6908   else {
6909     // Oops, we didn't find the actual type of the variable.  Don't emit a fixit
6910     // with a broken cast.
6911     return;
6912   }
6913   OS << ">(";
6914   S.Diag(PostInit->getLocStart(), diag::note_init_list_narrowing_override)
6915     << PostInit->getSourceRange()
6916     << FixItHint::CreateInsertion(PostInit->getLocStart(), OS.str())
6917     << FixItHint::CreateInsertion(
6918       S.getPreprocessor().getLocForEndOfToken(PostInit->getLocEnd()), ")");
6919 }
6920 
6921 //===----------------------------------------------------------------------===//
6922 // Initialization helper functions
6923 //===----------------------------------------------------------------------===//
6924 bool
6925 Sema::CanPerformCopyInitialization(const InitializedEntity &Entity,
6926                                    ExprResult Init) {
6927   if (Init.isInvalid())
6928     return false;
6929 
6930   Expr *InitE = Init.get();
6931   assert(InitE && "No initialization expression");
6932 
6933   InitializationKind Kind
6934     = InitializationKind::CreateCopy(InitE->getLocStart(), SourceLocation());
6935   InitializationSequence Seq(*this, Entity, Kind, InitE);
6936   return !Seq.Failed();
6937 }
6938 
6939 ExprResult
6940 Sema::PerformCopyInitialization(const InitializedEntity &Entity,
6941                                 SourceLocation EqualLoc,
6942                                 ExprResult Init,
6943                                 bool TopLevelOfInitList,
6944                                 bool AllowExplicit) {
6945   if (Init.isInvalid())
6946     return ExprError();
6947 
6948   Expr *InitE = Init.get();
6949   assert(InitE && "No initialization expression?");
6950 
6951   if (EqualLoc.isInvalid())
6952     EqualLoc = InitE->getLocStart();
6953 
6954   InitializationKind Kind = InitializationKind::CreateCopy(InitE->getLocStart(),
6955                                                            EqualLoc,
6956                                                            AllowExplicit);
6957   InitializationSequence Seq(*this, Entity, Kind, InitE);
6958   Init.release();
6959 
6960   ExprResult Result = Seq.Perform(*this, Entity, Kind, InitE);
6961 
6962   if (!Result.isInvalid() && TopLevelOfInitList)
6963     DiagnoseNarrowingInInitList(*this, Seq, Entity.getType(),
6964                                 InitE, Result.get());
6965 
6966   return Result;
6967 }
6968