1 //===--- SemaInit.cpp - Semantic Analysis for Initializers ----------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements semantic analysis for initializers.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "clang/AST/ASTContext.h"
14 #include "clang/AST/DeclObjC.h"
15 #include "clang/AST/ExprCXX.h"
16 #include "clang/AST/ExprObjC.h"
17 #include "clang/AST/ExprOpenMP.h"
18 #include "clang/AST/TypeLoc.h"
19 #include "clang/Basic/TargetInfo.h"
20 #include "clang/Sema/Designator.h"
21 #include "clang/Sema/Initialization.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 
29 using namespace clang;
30 
31 //===----------------------------------------------------------------------===//
32 // Sema Initialization Checking
33 //===----------------------------------------------------------------------===//
34 
35 /// 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_UTF8StringIntoPlainChar,
53   SIF_PlainStringIntoUTF8Char,
54   SIF_Other
55 };
56 
57 /// Check whether the array of type AT can be initialized by the Init
58 /// expression by means of string initialization. Returns SIF_None if so,
59 /// otherwise returns a StringInitFailureKind that describes why the
60 /// initialization would not work.
61 static StringInitFailureKind IsStringInit(Expr *Init, const ArrayType *AT,
62                                           ASTContext &Context) {
63   if (!isa<ConstantArrayType>(AT) && !isa<IncompleteArrayType>(AT))
64     return SIF_Other;
65 
66   // See if this is a string literal or @encode.
67   Init = Init->IgnoreParens();
68 
69   // Handle @encode, which is a narrow string.
70   if (isa<ObjCEncodeExpr>(Init) && AT->getElementType()->isCharType())
71     return SIF_None;
72 
73   // Otherwise we can only handle string literals.
74   StringLiteral *SL = dyn_cast<StringLiteral>(Init);
75   if (!SL)
76     return SIF_Other;
77 
78   const QualType ElemTy =
79       Context.getCanonicalType(AT->getElementType()).getUnqualifiedType();
80 
81   switch (SL->getKind()) {
82   case StringLiteral::UTF8:
83     // char8_t array can be initialized with a UTF-8 string.
84     if (ElemTy->isChar8Type())
85       return SIF_None;
86     LLVM_FALLTHROUGH;
87   case StringLiteral::Ascii:
88     // char array can be initialized with a narrow string.
89     // Only allow char x[] = "foo";  not char x[] = L"foo";
90     if (ElemTy->isCharType())
91       return (SL->getKind() == StringLiteral::UTF8 &&
92               Context.getLangOpts().Char8)
93                  ? SIF_UTF8StringIntoPlainChar
94                  : SIF_None;
95     if (ElemTy->isChar8Type())
96       return SIF_PlainStringIntoUTF8Char;
97     if (IsWideCharCompatible(ElemTy, Context))
98       return SIF_NarrowStringIntoWideChar;
99     return SIF_Other;
100   // C99 6.7.8p15 (with correction from DR343), or C11 6.7.9p15:
101   // "An array with element type compatible with a qualified or unqualified
102   // version of wchar_t, char16_t, or char32_t may be initialized by a wide
103   // string literal with the corresponding encoding prefix (L, u, or U,
104   // respectively), optionally enclosed in braces.
105   case StringLiteral::UTF16:
106     if (Context.typesAreCompatible(Context.Char16Ty, ElemTy))
107       return SIF_None;
108     if (ElemTy->isCharType() || ElemTy->isChar8Type())
109       return SIF_WideStringIntoChar;
110     if (IsWideCharCompatible(ElemTy, Context))
111       return SIF_IncompatWideStringIntoWideChar;
112     return SIF_Other;
113   case StringLiteral::UTF32:
114     if (Context.typesAreCompatible(Context.Char32Ty, ElemTy))
115       return SIF_None;
116     if (ElemTy->isCharType() || ElemTy->isChar8Type())
117       return SIF_WideStringIntoChar;
118     if (IsWideCharCompatible(ElemTy, Context))
119       return SIF_IncompatWideStringIntoWideChar;
120     return SIF_Other;
121   case StringLiteral::Wide:
122     if (Context.typesAreCompatible(Context.getWideCharType(), ElemTy))
123       return SIF_None;
124     if (ElemTy->isCharType() || ElemTy->isChar8Type())
125       return SIF_WideStringIntoChar;
126     if (IsWideCharCompatible(ElemTy, Context))
127       return SIF_IncompatWideStringIntoWideChar;
128     return SIF_Other;
129   }
130 
131   llvm_unreachable("missed a StringLiteral kind?");
132 }
133 
134 static StringInitFailureKind IsStringInit(Expr *init, QualType declType,
135                                           ASTContext &Context) {
136   const ArrayType *arrayType = Context.getAsArrayType(declType);
137   if (!arrayType)
138     return SIF_Other;
139   return IsStringInit(init, arrayType, Context);
140 }
141 
142 /// Update the type of a string literal, including any surrounding parentheses,
143 /// to match the type of the object which it is initializing.
144 static void updateStringLiteralType(Expr *E, QualType Ty) {
145   while (true) {
146     E->setType(Ty);
147     E->setValueKind(VK_RValue);
148     if (isa<StringLiteral>(E) || isa<ObjCEncodeExpr>(E)) {
149       break;
150     } else if (ParenExpr *PE = dyn_cast<ParenExpr>(E)) {
151       E = PE->getSubExpr();
152     } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
153       assert(UO->getOpcode() == UO_Extension);
154       E = UO->getSubExpr();
155     } else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E)) {
156       E = GSE->getResultExpr();
157     } else if (ChooseExpr *CE = dyn_cast<ChooseExpr>(E)) {
158       E = CE->getChosenSubExpr();
159     } else {
160       llvm_unreachable("unexpected expr in string literal init");
161     }
162   }
163 }
164 
165 /// Fix a compound literal initializing an array so it's correctly marked
166 /// as an rvalue.
167 static void updateGNUCompoundLiteralRValue(Expr *E) {
168   while (true) {
169     E->setValueKind(VK_RValue);
170     if (isa<CompoundLiteralExpr>(E)) {
171       break;
172     } else if (ParenExpr *PE = dyn_cast<ParenExpr>(E)) {
173       E = PE->getSubExpr();
174     } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
175       assert(UO->getOpcode() == UO_Extension);
176       E = UO->getSubExpr();
177     } else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E)) {
178       E = GSE->getResultExpr();
179     } else if (ChooseExpr *CE = dyn_cast<ChooseExpr>(E)) {
180       E = CE->getChosenSubExpr();
181     } else {
182       llvm_unreachable("unexpected expr in array compound literal init");
183     }
184   }
185 }
186 
187 static void CheckStringInit(Expr *Str, QualType &DeclT, const ArrayType *AT,
188                             Sema &S) {
189   // Get the length of the string as parsed.
190   auto *ConstantArrayTy =
191       cast<ConstantArrayType>(Str->getType()->getAsArrayTypeUnsafe());
192   uint64_t StrLength = ConstantArrayTy->getSize().getZExtValue();
193 
194   if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
195     // C99 6.7.8p14. We have an array of character type with unknown size
196     // being initialized to a string literal.
197     llvm::APInt ConstVal(32, StrLength);
198     // Return a new array type (C99 6.7.8p22).
199     DeclT = S.Context.getConstantArrayType(IAT->getElementType(),
200                                            ConstVal,
201                                            ArrayType::Normal, 0);
202     updateStringLiteralType(Str, DeclT);
203     return;
204   }
205 
206   const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
207 
208   // We have an array of character type with known size.  However,
209   // the size may be smaller or larger than the string we are initializing.
210   // FIXME: Avoid truncation for 64-bit length strings.
211   if (S.getLangOpts().CPlusPlus) {
212     if (StringLiteral *SL = dyn_cast<StringLiteral>(Str->IgnoreParens())) {
213       // For Pascal strings it's OK to strip off the terminating null character,
214       // so the example below is valid:
215       //
216       // unsigned char a[2] = "\pa";
217       if (SL->isPascal())
218         StrLength--;
219     }
220 
221     // [dcl.init.string]p2
222     if (StrLength > CAT->getSize().getZExtValue())
223       S.Diag(Str->getBeginLoc(),
224              diag::err_initializer_string_for_char_array_too_long)
225           << Str->getSourceRange();
226   } else {
227     // C99 6.7.8p14.
228     if (StrLength-1 > CAT->getSize().getZExtValue())
229       S.Diag(Str->getBeginLoc(),
230              diag::ext_initializer_string_for_char_array_too_long)
231           << Str->getSourceRange();
232   }
233 
234   // Set the type to the actual size that we are initializing.  If we have
235   // something like:
236   //   char x[1] = "foo";
237   // then this will set the string literal's type to char[1].
238   updateStringLiteralType(Str, DeclT);
239 }
240 
241 //===----------------------------------------------------------------------===//
242 // Semantic checking for initializer lists.
243 //===----------------------------------------------------------------------===//
244 
245 namespace {
246 
247 /// Semantic checking for initializer lists.
248 ///
249 /// The InitListChecker class contains a set of routines that each
250 /// handle the initialization of a certain kind of entity, e.g.,
251 /// arrays, vectors, struct/union types, scalars, etc. The
252 /// InitListChecker itself performs a recursive walk of the subobject
253 /// structure of the type to be initialized, while stepping through
254 /// the initializer list one element at a time. The IList and Index
255 /// parameters to each of the Check* routines contain the active
256 /// (syntactic) initializer list and the index into that initializer
257 /// list that represents the current initializer. Each routine is
258 /// responsible for moving that Index forward as it consumes elements.
259 ///
260 /// Each Check* routine also has a StructuredList/StructuredIndex
261 /// arguments, which contains the current "structured" (semantic)
262 /// initializer list and the index into that initializer list where we
263 /// are copying initializers as we map them over to the semantic
264 /// list. Once we have completed our recursive walk of the subobject
265 /// structure, we will have constructed a full semantic initializer
266 /// list.
267 ///
268 /// C99 designators cause changes in the initializer list traversal,
269 /// because they make the initialization "jump" into a specific
270 /// subobject and then continue the initialization from that
271 /// point. CheckDesignatedInitializer() recursively steps into the
272 /// designated subobject and manages backing out the recursion to
273 /// initialize the subobjects after the one designated.
274 class InitListChecker {
275   Sema &SemaRef;
276   bool hadError;
277   bool VerifyOnly; // no diagnostics, no structure building
278   bool TreatUnavailableAsInvalid; // Used only in VerifyOnly mode.
279   llvm::DenseMap<InitListExpr *, InitListExpr *> SyntacticToSemantic;
280   InitListExpr *FullyStructuredList;
281 
282   void CheckImplicitInitList(const InitializedEntity &Entity,
283                              InitListExpr *ParentIList, QualType T,
284                              unsigned &Index, InitListExpr *StructuredList,
285                              unsigned &StructuredIndex);
286   void CheckExplicitInitList(const InitializedEntity &Entity,
287                              InitListExpr *IList, QualType &T,
288                              InitListExpr *StructuredList,
289                              bool TopLevelObject = false);
290   void CheckListElementTypes(const InitializedEntity &Entity,
291                              InitListExpr *IList, QualType &DeclType,
292                              bool SubobjectIsDesignatorContext,
293                              unsigned &Index,
294                              InitListExpr *StructuredList,
295                              unsigned &StructuredIndex,
296                              bool TopLevelObject = false);
297   void CheckSubElementType(const InitializedEntity &Entity,
298                            InitListExpr *IList, QualType ElemType,
299                            unsigned &Index,
300                            InitListExpr *StructuredList,
301                            unsigned &StructuredIndex);
302   void CheckComplexType(const InitializedEntity &Entity,
303                         InitListExpr *IList, QualType DeclType,
304                         unsigned &Index,
305                         InitListExpr *StructuredList,
306                         unsigned &StructuredIndex);
307   void CheckScalarType(const InitializedEntity &Entity,
308                        InitListExpr *IList, QualType DeclType,
309                        unsigned &Index,
310                        InitListExpr *StructuredList,
311                        unsigned &StructuredIndex);
312   void CheckReferenceType(const InitializedEntity &Entity,
313                           InitListExpr *IList, QualType DeclType,
314                           unsigned &Index,
315                           InitListExpr *StructuredList,
316                           unsigned &StructuredIndex);
317   void CheckVectorType(const InitializedEntity &Entity,
318                        InitListExpr *IList, QualType DeclType, unsigned &Index,
319                        InitListExpr *StructuredList,
320                        unsigned &StructuredIndex);
321   void CheckStructUnionTypes(const InitializedEntity &Entity,
322                              InitListExpr *IList, QualType DeclType,
323                              CXXRecordDecl::base_class_range Bases,
324                              RecordDecl::field_iterator Field,
325                              bool SubobjectIsDesignatorContext, unsigned &Index,
326                              InitListExpr *StructuredList,
327                              unsigned &StructuredIndex,
328                              bool TopLevelObject = false);
329   void CheckArrayType(const InitializedEntity &Entity,
330                       InitListExpr *IList, QualType &DeclType,
331                       llvm::APSInt elementIndex,
332                       bool SubobjectIsDesignatorContext, unsigned &Index,
333                       InitListExpr *StructuredList,
334                       unsigned &StructuredIndex);
335   bool CheckDesignatedInitializer(const InitializedEntity &Entity,
336                                   InitListExpr *IList, DesignatedInitExpr *DIE,
337                                   unsigned DesigIdx,
338                                   QualType &CurrentObjectType,
339                                   RecordDecl::field_iterator *NextField,
340                                   llvm::APSInt *NextElementIndex,
341                                   unsigned &Index,
342                                   InitListExpr *StructuredList,
343                                   unsigned &StructuredIndex,
344                                   bool FinishSubobjectInit,
345                                   bool TopLevelObject);
346   InitListExpr *getStructuredSubobjectInit(InitListExpr *IList, unsigned Index,
347                                            QualType CurrentObjectType,
348                                            InitListExpr *StructuredList,
349                                            unsigned StructuredIndex,
350                                            SourceRange InitRange,
351                                            bool IsFullyOverwritten = false);
352   void UpdateStructuredListElement(InitListExpr *StructuredList,
353                                    unsigned &StructuredIndex,
354                                    Expr *expr);
355   int numArrayElements(QualType DeclType);
356   int numStructUnionElements(QualType DeclType);
357 
358   static ExprResult PerformEmptyInit(Sema &SemaRef,
359                                      SourceLocation Loc,
360                                      const InitializedEntity &Entity,
361                                      bool VerifyOnly,
362                                      bool TreatUnavailableAsInvalid);
363 
364   // Explanation on the "FillWithNoInit" mode:
365   //
366   // Assume we have the following definitions (Case#1):
367   // struct P { char x[6][6]; } xp = { .x[1] = "bar" };
368   // struct PP { struct P lp; } l = { .lp = xp, .lp.x[1][2] = 'f' };
369   //
370   // l.lp.x[1][0..1] should not be filled with implicit initializers because the
371   // "base" initializer "xp" will provide values for them; l.lp.x[1] will be "baf".
372   //
373   // But if we have (Case#2):
374   // struct PP l = { .lp = xp, .lp.x[1] = { [2] = 'f' } };
375   //
376   // l.lp.x[1][0..1] are implicitly initialized and do not use values from the
377   // "base" initializer; l.lp.x[1] will be "\0\0f\0\0\0".
378   //
379   // To distinguish Case#1 from Case#2, and also to avoid leaving many "holes"
380   // in the InitListExpr, the "holes" in Case#1 are filled not with empty
381   // initializers but with special "NoInitExpr" place holders, which tells the
382   // CodeGen not to generate any initializers for these parts.
383   void FillInEmptyInitForBase(unsigned Init, const CXXBaseSpecifier &Base,
384                               const InitializedEntity &ParentEntity,
385                               InitListExpr *ILE, bool &RequiresSecondPass,
386                               bool FillWithNoInit);
387   void FillInEmptyInitForField(unsigned Init, FieldDecl *Field,
388                                const InitializedEntity &ParentEntity,
389                                InitListExpr *ILE, bool &RequiresSecondPass,
390                                bool FillWithNoInit = false);
391   void FillInEmptyInitializations(const InitializedEntity &Entity,
392                                   InitListExpr *ILE, bool &RequiresSecondPass,
393                                   InitListExpr *OuterILE, unsigned OuterIndex,
394                                   bool FillWithNoInit = false);
395   bool CheckFlexibleArrayInit(const InitializedEntity &Entity,
396                               Expr *InitExpr, FieldDecl *Field,
397                               bool TopLevelObject);
398   void CheckEmptyInitializable(const InitializedEntity &Entity,
399                                SourceLocation Loc);
400 
401 public:
402   InitListChecker(Sema &S, const InitializedEntity &Entity,
403                   InitListExpr *IL, QualType &T, bool VerifyOnly,
404                   bool TreatUnavailableAsInvalid);
405   bool HadError() { return hadError; }
406 
407   // Retrieves the fully-structured initializer list used for
408   // semantic analysis and code generation.
409   InitListExpr *getFullyStructuredList() const { return FullyStructuredList; }
410 };
411 
412 } // end anonymous namespace
413 
414 ExprResult InitListChecker::PerformEmptyInit(Sema &SemaRef,
415                                              SourceLocation Loc,
416                                              const InitializedEntity &Entity,
417                                              bool VerifyOnly,
418                                              bool TreatUnavailableAsInvalid) {
419   InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
420                                                             true);
421   MultiExprArg SubInit;
422   Expr *InitExpr;
423   InitListExpr DummyInitList(SemaRef.Context, Loc, None, Loc);
424 
425   // C++ [dcl.init.aggr]p7:
426   //   If there are fewer initializer-clauses in the list than there are
427   //   members in the aggregate, then each member not explicitly initialized
428   //   ...
429   bool EmptyInitList = SemaRef.getLangOpts().CPlusPlus11 &&
430       Entity.getType()->getBaseElementTypeUnsafe()->isRecordType();
431   if (EmptyInitList) {
432     // C++1y / DR1070:
433     //   shall be initialized [...] from an empty initializer list.
434     //
435     // We apply the resolution of this DR to C++11 but not C++98, since C++98
436     // does not have useful semantics for initialization from an init list.
437     // We treat this as copy-initialization, because aggregate initialization
438     // always performs copy-initialization on its elements.
439     //
440     // Only do this if we're initializing a class type, to avoid filling in
441     // the initializer list where possible.
442     InitExpr = VerifyOnly ? &DummyInitList : new (SemaRef.Context)
443                    InitListExpr(SemaRef.Context, Loc, None, Loc);
444     InitExpr->setType(SemaRef.Context.VoidTy);
445     SubInit = InitExpr;
446     Kind = InitializationKind::CreateCopy(Loc, Loc);
447   } else {
448     // C++03:
449     //   shall be value-initialized.
450   }
451 
452   InitializationSequence InitSeq(SemaRef, Entity, Kind, SubInit);
453   // libstdc++4.6 marks the vector default constructor as explicit in
454   // _GLIBCXX_DEBUG mode, so recover using the C++03 logic in that case.
455   // stlport does so too. Look for std::__debug for libstdc++, and for
456   // std:: for stlport.  This is effectively a compiler-side implementation of
457   // LWG2193.
458   if (!InitSeq && EmptyInitList && InitSeq.getFailureKind() ==
459           InitializationSequence::FK_ExplicitConstructor) {
460     OverloadCandidateSet::iterator Best;
461     OverloadingResult O =
462         InitSeq.getFailedCandidateSet()
463             .BestViableFunction(SemaRef, Kind.getLocation(), Best);
464     (void)O;
465     assert(O == OR_Success && "Inconsistent overload resolution");
466     CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
467     CXXRecordDecl *R = CtorDecl->getParent();
468 
469     if (CtorDecl->getMinRequiredArguments() == 0 &&
470         CtorDecl->isExplicit() && R->getDeclName() &&
471         SemaRef.SourceMgr.isInSystemHeader(CtorDecl->getLocation())) {
472       bool IsInStd = false;
473       for (NamespaceDecl *ND = dyn_cast<NamespaceDecl>(R->getDeclContext());
474            ND && !IsInStd; ND = dyn_cast<NamespaceDecl>(ND->getParent())) {
475         if (SemaRef.getStdNamespace()->InEnclosingNamespaceSetOf(ND))
476           IsInStd = true;
477       }
478 
479       if (IsInStd && llvm::StringSwitch<bool>(R->getName())
480               .Cases("basic_string", "deque", "forward_list", true)
481               .Cases("list", "map", "multimap", "multiset", true)
482               .Cases("priority_queue", "queue", "set", "stack", true)
483               .Cases("unordered_map", "unordered_set", "vector", true)
484               .Default(false)) {
485         InitSeq.InitializeFrom(
486             SemaRef, Entity,
487             InitializationKind::CreateValue(Loc, Loc, Loc, true),
488             MultiExprArg(), /*TopLevelOfInitList=*/false,
489             TreatUnavailableAsInvalid);
490         // Emit a warning for this.  System header warnings aren't shown
491         // by default, but people working on system headers should see it.
492         if (!VerifyOnly) {
493           SemaRef.Diag(CtorDecl->getLocation(),
494                        diag::warn_invalid_initializer_from_system_header);
495           if (Entity.getKind() == InitializedEntity::EK_Member)
496             SemaRef.Diag(Entity.getDecl()->getLocation(),
497                          diag::note_used_in_initialization_here);
498           else if (Entity.getKind() == InitializedEntity::EK_ArrayElement)
499             SemaRef.Diag(Loc, diag::note_used_in_initialization_here);
500         }
501       }
502     }
503   }
504   if (!InitSeq) {
505     if (!VerifyOnly) {
506       InitSeq.Diagnose(SemaRef, Entity, Kind, SubInit);
507       if (Entity.getKind() == InitializedEntity::EK_Member)
508         SemaRef.Diag(Entity.getDecl()->getLocation(),
509                      diag::note_in_omitted_aggregate_initializer)
510           << /*field*/1 << Entity.getDecl();
511       else if (Entity.getKind() == InitializedEntity::EK_ArrayElement) {
512         bool IsTrailingArrayNewMember =
513             Entity.getParent() &&
514             Entity.getParent()->isVariableLengthArrayNew();
515         SemaRef.Diag(Loc, diag::note_in_omitted_aggregate_initializer)
516           << (IsTrailingArrayNewMember ? 2 : /*array element*/0)
517           << Entity.getElementIndex();
518       }
519     }
520     return ExprError();
521   }
522 
523   return VerifyOnly ? ExprResult(static_cast<Expr *>(nullptr))
524                     : InitSeq.Perform(SemaRef, Entity, Kind, SubInit);
525 }
526 
527 void InitListChecker::CheckEmptyInitializable(const InitializedEntity &Entity,
528                                               SourceLocation Loc) {
529   assert(VerifyOnly &&
530          "CheckEmptyInitializable is only inteded for verification mode.");
531   if (PerformEmptyInit(SemaRef, Loc, Entity, /*VerifyOnly*/true,
532                        TreatUnavailableAsInvalid).isInvalid())
533     hadError = true;
534 }
535 
536 void InitListChecker::FillInEmptyInitForBase(
537     unsigned Init, const CXXBaseSpecifier &Base,
538     const InitializedEntity &ParentEntity, InitListExpr *ILE,
539     bool &RequiresSecondPass, bool FillWithNoInit) {
540   assert(Init < ILE->getNumInits() && "should have been expanded");
541 
542   InitializedEntity BaseEntity = InitializedEntity::InitializeBase(
543       SemaRef.Context, &Base, false, &ParentEntity);
544 
545   if (!ILE->getInit(Init)) {
546     ExprResult BaseInit =
547         FillWithNoInit
548             ? new (SemaRef.Context) NoInitExpr(Base.getType())
549             : PerformEmptyInit(SemaRef, ILE->getEndLoc(), BaseEntity,
550                                /*VerifyOnly*/ false, TreatUnavailableAsInvalid);
551     if (BaseInit.isInvalid()) {
552       hadError = true;
553       return;
554     }
555 
556     ILE->setInit(Init, BaseInit.getAs<Expr>());
557   } else if (InitListExpr *InnerILE =
558                  dyn_cast<InitListExpr>(ILE->getInit(Init))) {
559     FillInEmptyInitializations(BaseEntity, InnerILE, RequiresSecondPass,
560                                ILE, Init, FillWithNoInit);
561   } else if (DesignatedInitUpdateExpr *InnerDIUE =
562                dyn_cast<DesignatedInitUpdateExpr>(ILE->getInit(Init))) {
563     FillInEmptyInitializations(BaseEntity, InnerDIUE->getUpdater(),
564                                RequiresSecondPass, ILE, Init,
565                                /*FillWithNoInit =*/true);
566   }
567 }
568 
569 void InitListChecker::FillInEmptyInitForField(unsigned Init, FieldDecl *Field,
570                                         const InitializedEntity &ParentEntity,
571                                               InitListExpr *ILE,
572                                               bool &RequiresSecondPass,
573                                               bool FillWithNoInit) {
574   SourceLocation Loc = ILE->getEndLoc();
575   unsigned NumInits = ILE->getNumInits();
576   InitializedEntity MemberEntity
577     = InitializedEntity::InitializeMember(Field, &ParentEntity);
578 
579   if (const RecordType *RType = ILE->getType()->getAs<RecordType>())
580     if (!RType->getDecl()->isUnion())
581       assert(Init < NumInits && "This ILE should have been expanded");
582 
583   if (Init >= NumInits || !ILE->getInit(Init)) {
584     if (FillWithNoInit) {
585       Expr *Filler = new (SemaRef.Context) NoInitExpr(Field->getType());
586       if (Init < NumInits)
587         ILE->setInit(Init, Filler);
588       else
589         ILE->updateInit(SemaRef.Context, Init, Filler);
590       return;
591     }
592     // C++1y [dcl.init.aggr]p7:
593     //   If there are fewer initializer-clauses in the list than there are
594     //   members in the aggregate, then each member not explicitly initialized
595     //   shall be initialized from its brace-or-equal-initializer [...]
596     if (Field->hasInClassInitializer()) {
597       ExprResult DIE = SemaRef.BuildCXXDefaultInitExpr(Loc, Field);
598       if (DIE.isInvalid()) {
599         hadError = true;
600         return;
601       }
602       SemaRef.checkInitializerLifetime(MemberEntity, DIE.get());
603       if (Init < NumInits)
604         ILE->setInit(Init, DIE.get());
605       else {
606         ILE->updateInit(SemaRef.Context, Init, DIE.get());
607         RequiresSecondPass = true;
608       }
609       return;
610     }
611 
612     if (Field->getType()->isReferenceType()) {
613       // C++ [dcl.init.aggr]p9:
614       //   If an incomplete or empty initializer-list leaves a
615       //   member of reference type uninitialized, the program is
616       //   ill-formed.
617       SemaRef.Diag(Loc, diag::err_init_reference_member_uninitialized)
618         << Field->getType()
619         << ILE->getSyntacticForm()->getSourceRange();
620       SemaRef.Diag(Field->getLocation(),
621                    diag::note_uninit_reference_member);
622       hadError = true;
623       return;
624     }
625 
626     ExprResult MemberInit = PerformEmptyInit(SemaRef, Loc, MemberEntity,
627                                              /*VerifyOnly*/false,
628                                              TreatUnavailableAsInvalid);
629     if (MemberInit.isInvalid()) {
630       hadError = true;
631       return;
632     }
633 
634     if (hadError) {
635       // Do nothing
636     } else if (Init < NumInits) {
637       ILE->setInit(Init, MemberInit.getAs<Expr>());
638     } else if (!isa<ImplicitValueInitExpr>(MemberInit.get())) {
639       // Empty initialization requires a constructor call, so
640       // extend the initializer list to include the constructor
641       // call and make a note that we'll need to take another pass
642       // through the initializer list.
643       ILE->updateInit(SemaRef.Context, Init, MemberInit.getAs<Expr>());
644       RequiresSecondPass = true;
645     }
646   } else if (InitListExpr *InnerILE
647                = dyn_cast<InitListExpr>(ILE->getInit(Init)))
648     FillInEmptyInitializations(MemberEntity, InnerILE,
649                                RequiresSecondPass, ILE, Init, FillWithNoInit);
650   else if (DesignatedInitUpdateExpr *InnerDIUE
651                = dyn_cast<DesignatedInitUpdateExpr>(ILE->getInit(Init)))
652     FillInEmptyInitializations(MemberEntity, InnerDIUE->getUpdater(),
653                                RequiresSecondPass, ILE, Init,
654                                /*FillWithNoInit =*/true);
655 }
656 
657 /// Recursively replaces NULL values within the given initializer list
658 /// with expressions that perform value-initialization of the
659 /// appropriate type, and finish off the InitListExpr formation.
660 void
661 InitListChecker::FillInEmptyInitializations(const InitializedEntity &Entity,
662                                             InitListExpr *ILE,
663                                             bool &RequiresSecondPass,
664                                             InitListExpr *OuterILE,
665                                             unsigned OuterIndex,
666                                             bool FillWithNoInit) {
667   assert((ILE->getType() != SemaRef.Context.VoidTy) &&
668          "Should not have void type");
669 
670   // If this is a nested initializer list, we might have changed its contents
671   // (and therefore some of its properties, such as instantiation-dependence)
672   // while filling it in. Inform the outer initializer list so that its state
673   // can be updated to match.
674   // FIXME: We should fully build the inner initializers before constructing
675   // the outer InitListExpr instead of mutating AST nodes after they have
676   // been used as subexpressions of other nodes.
677   struct UpdateOuterILEWithUpdatedInit {
678     InitListExpr *Outer;
679     unsigned OuterIndex;
680     ~UpdateOuterILEWithUpdatedInit() {
681       if (Outer)
682         Outer->setInit(OuterIndex, Outer->getInit(OuterIndex));
683     }
684   } UpdateOuterRAII = {OuterILE, OuterIndex};
685 
686   // A transparent ILE is not performing aggregate initialization and should
687   // not be filled in.
688   if (ILE->isTransparent())
689     return;
690 
691   if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) {
692     const RecordDecl *RDecl = RType->getDecl();
693     if (RDecl->isUnion() && ILE->getInitializedFieldInUnion())
694       FillInEmptyInitForField(0, ILE->getInitializedFieldInUnion(),
695                               Entity, ILE, RequiresSecondPass, FillWithNoInit);
696     else if (RDecl->isUnion() && isa<CXXRecordDecl>(RDecl) &&
697              cast<CXXRecordDecl>(RDecl)->hasInClassInitializer()) {
698       for (auto *Field : RDecl->fields()) {
699         if (Field->hasInClassInitializer()) {
700           FillInEmptyInitForField(0, Field, Entity, ILE, RequiresSecondPass,
701                                   FillWithNoInit);
702           break;
703         }
704       }
705     } else {
706       // The fields beyond ILE->getNumInits() are default initialized, so in
707       // order to leave them uninitialized, the ILE is expanded and the extra
708       // fields are then filled with NoInitExpr.
709       unsigned NumElems = numStructUnionElements(ILE->getType());
710       if (RDecl->hasFlexibleArrayMember())
711         ++NumElems;
712       if (ILE->getNumInits() < NumElems)
713         ILE->resizeInits(SemaRef.Context, NumElems);
714 
715       unsigned Init = 0;
716 
717       if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RDecl)) {
718         for (auto &Base : CXXRD->bases()) {
719           if (hadError)
720             return;
721 
722           FillInEmptyInitForBase(Init, Base, Entity, ILE, RequiresSecondPass,
723                                  FillWithNoInit);
724           ++Init;
725         }
726       }
727 
728       for (auto *Field : RDecl->fields()) {
729         if (Field->isUnnamedBitfield())
730           continue;
731 
732         if (hadError)
733           return;
734 
735         FillInEmptyInitForField(Init, Field, Entity, ILE, RequiresSecondPass,
736                                 FillWithNoInit);
737         if (hadError)
738           return;
739 
740         ++Init;
741 
742         // Only look at the first initialization of a union.
743         if (RDecl->isUnion())
744           break;
745       }
746     }
747 
748     return;
749   }
750 
751   QualType ElementType;
752 
753   InitializedEntity ElementEntity = Entity;
754   unsigned NumInits = ILE->getNumInits();
755   unsigned NumElements = NumInits;
756   if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) {
757     ElementType = AType->getElementType();
758     if (const auto *CAType = dyn_cast<ConstantArrayType>(AType))
759       NumElements = CAType->getSize().getZExtValue();
760     // For an array new with an unknown bound, ask for one additional element
761     // in order to populate the array filler.
762     if (Entity.isVariableLengthArrayNew())
763       ++NumElements;
764     ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context,
765                                                          0, Entity);
766   } else if (const VectorType *VType = ILE->getType()->getAs<VectorType>()) {
767     ElementType = VType->getElementType();
768     NumElements = VType->getNumElements();
769     ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context,
770                                                          0, Entity);
771   } else
772     ElementType = ILE->getType();
773 
774   for (unsigned Init = 0; Init != NumElements; ++Init) {
775     if (hadError)
776       return;
777 
778     if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement ||
779         ElementEntity.getKind() == InitializedEntity::EK_VectorElement)
780       ElementEntity.setElementIndex(Init);
781 
782     if (Init >= NumInits && ILE->hasArrayFiller())
783       return;
784 
785     Expr *InitExpr = (Init < NumInits ? ILE->getInit(Init) : nullptr);
786     if (!InitExpr && Init < NumInits && ILE->hasArrayFiller())
787       ILE->setInit(Init, ILE->getArrayFiller());
788     else if (!InitExpr && !ILE->hasArrayFiller()) {
789       Expr *Filler = nullptr;
790 
791       if (FillWithNoInit)
792         Filler = new (SemaRef.Context) NoInitExpr(ElementType);
793       else {
794         ExprResult ElementInit =
795             PerformEmptyInit(SemaRef, ILE->getEndLoc(), ElementEntity,
796                              /*VerifyOnly*/ false, TreatUnavailableAsInvalid);
797         if (ElementInit.isInvalid()) {
798           hadError = true;
799           return;
800         }
801 
802         Filler = ElementInit.getAs<Expr>();
803       }
804 
805       if (hadError) {
806         // Do nothing
807       } else if (Init < NumInits) {
808         // For arrays, just set the expression used for value-initialization
809         // of the "holes" in the array.
810         if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement)
811           ILE->setArrayFiller(Filler);
812         else
813           ILE->setInit(Init, Filler);
814       } else {
815         // For arrays, just set the expression used for value-initialization
816         // of the rest of elements and exit.
817         if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement) {
818           ILE->setArrayFiller(Filler);
819           return;
820         }
821 
822         if (!isa<ImplicitValueInitExpr>(Filler) && !isa<NoInitExpr>(Filler)) {
823           // Empty initialization requires a constructor call, so
824           // extend the initializer list to include the constructor
825           // call and make a note that we'll need to take another pass
826           // through the initializer list.
827           ILE->updateInit(SemaRef.Context, Init, Filler);
828           RequiresSecondPass = true;
829         }
830       }
831     } else if (InitListExpr *InnerILE
832                  = dyn_cast_or_null<InitListExpr>(InitExpr))
833       FillInEmptyInitializations(ElementEntity, InnerILE, RequiresSecondPass,
834                                  ILE, Init, FillWithNoInit);
835     else if (DesignatedInitUpdateExpr *InnerDIUE
836                  = dyn_cast_or_null<DesignatedInitUpdateExpr>(InitExpr))
837       FillInEmptyInitializations(ElementEntity, InnerDIUE->getUpdater(),
838                                  RequiresSecondPass, ILE, Init,
839                                  /*FillWithNoInit =*/true);
840   }
841 }
842 
843 InitListChecker::InitListChecker(Sema &S, const InitializedEntity &Entity,
844                                  InitListExpr *IL, QualType &T,
845                                  bool VerifyOnly,
846                                  bool TreatUnavailableAsInvalid)
847   : SemaRef(S), VerifyOnly(VerifyOnly),
848     TreatUnavailableAsInvalid(TreatUnavailableAsInvalid) {
849   // FIXME: Check that IL isn't already the semantic form of some other
850   // InitListExpr. If it is, we'd create a broken AST.
851 
852   hadError = false;
853 
854   FullyStructuredList =
855       getStructuredSubobjectInit(IL, 0, T, nullptr, 0, IL->getSourceRange());
856   CheckExplicitInitList(Entity, IL, T, FullyStructuredList,
857                         /*TopLevelObject=*/true);
858 
859   if (!hadError && !VerifyOnly) {
860     bool RequiresSecondPass = false;
861     FillInEmptyInitializations(Entity, FullyStructuredList, RequiresSecondPass,
862                                /*OuterILE=*/nullptr, /*OuterIndex=*/0);
863     if (RequiresSecondPass && !hadError)
864       FillInEmptyInitializations(Entity, FullyStructuredList,
865                                  RequiresSecondPass, nullptr, 0);
866   }
867 }
868 
869 int InitListChecker::numArrayElements(QualType DeclType) {
870   // FIXME: use a proper constant
871   int maxElements = 0x7FFFFFFF;
872   if (const ConstantArrayType *CAT =
873         SemaRef.Context.getAsConstantArrayType(DeclType)) {
874     maxElements = static_cast<int>(CAT->getSize().getZExtValue());
875   }
876   return maxElements;
877 }
878 
879 int InitListChecker::numStructUnionElements(QualType DeclType) {
880   RecordDecl *structDecl = DeclType->getAs<RecordType>()->getDecl();
881   int InitializableMembers = 0;
882   if (auto *CXXRD = dyn_cast<CXXRecordDecl>(structDecl))
883     InitializableMembers += CXXRD->getNumBases();
884   for (const auto *Field : structDecl->fields())
885     if (!Field->isUnnamedBitfield())
886       ++InitializableMembers;
887 
888   if (structDecl->isUnion())
889     return std::min(InitializableMembers, 1);
890   return InitializableMembers - structDecl->hasFlexibleArrayMember();
891 }
892 
893 /// Determine whether Entity is an entity for which it is idiomatic to elide
894 /// the braces in aggregate initialization.
895 static bool isIdiomaticBraceElisionEntity(const InitializedEntity &Entity) {
896   // Recursive initialization of the one and only field within an aggregate
897   // class is considered idiomatic. This case arises in particular for
898   // initialization of std::array, where the C++ standard suggests the idiom of
899   //
900   //   std::array<T, N> arr = {1, 2, 3};
901   //
902   // (where std::array is an aggregate struct containing a single array field.
903 
904   // FIXME: Should aggregate initialization of a struct with a single
905   // base class and no members also suppress the warning?
906   if (Entity.getKind() != InitializedEntity::EK_Member || !Entity.getParent())
907     return false;
908 
909   auto *ParentRD =
910       Entity.getParent()->getType()->castAs<RecordType>()->getDecl();
911   if (CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(ParentRD))
912     if (CXXRD->getNumBases())
913       return false;
914 
915   auto FieldIt = ParentRD->field_begin();
916   assert(FieldIt != ParentRD->field_end() &&
917          "no fields but have initializer for member?");
918   return ++FieldIt == ParentRD->field_end();
919 }
920 
921 /// Check whether the range of the initializer \p ParentIList from element
922 /// \p Index onwards can be used to initialize an object of type \p T. Update
923 /// \p Index to indicate how many elements of the list were consumed.
924 ///
925 /// This also fills in \p StructuredList, from element \p StructuredIndex
926 /// onwards, with the fully-braced, desugared form of the initialization.
927 void InitListChecker::CheckImplicitInitList(const InitializedEntity &Entity,
928                                             InitListExpr *ParentIList,
929                                             QualType T, unsigned &Index,
930                                             InitListExpr *StructuredList,
931                                             unsigned &StructuredIndex) {
932   int maxElements = 0;
933 
934   if (T->isArrayType())
935     maxElements = numArrayElements(T);
936   else if (T->isRecordType())
937     maxElements = numStructUnionElements(T);
938   else if (T->isVectorType())
939     maxElements = T->getAs<VectorType>()->getNumElements();
940   else
941     llvm_unreachable("CheckImplicitInitList(): Illegal type");
942 
943   if (maxElements == 0) {
944     if (!VerifyOnly)
945       SemaRef.Diag(ParentIList->getInit(Index)->getBeginLoc(),
946                    diag::err_implicit_empty_initializer);
947     ++Index;
948     hadError = true;
949     return;
950   }
951 
952   // Build a structured initializer list corresponding to this subobject.
953   InitListExpr *StructuredSubobjectInitList = getStructuredSubobjectInit(
954       ParentIList, Index, T, StructuredList, StructuredIndex,
955       SourceRange(ParentIList->getInit(Index)->getBeginLoc(),
956                   ParentIList->getSourceRange().getEnd()));
957   unsigned StructuredSubobjectInitIndex = 0;
958 
959   // Check the element types and build the structural subobject.
960   unsigned StartIndex = Index;
961   CheckListElementTypes(Entity, ParentIList, T,
962                         /*SubobjectIsDesignatorContext=*/false, Index,
963                         StructuredSubobjectInitList,
964                         StructuredSubobjectInitIndex);
965 
966   if (!VerifyOnly) {
967     StructuredSubobjectInitList->setType(T);
968 
969     unsigned EndIndex = (Index == StartIndex? StartIndex : Index - 1);
970     // Update the structured sub-object initializer so that it's ending
971     // range corresponds with the end of the last initializer it used.
972     if (EndIndex < ParentIList->getNumInits() &&
973         ParentIList->getInit(EndIndex)) {
974       SourceLocation EndLoc
975         = ParentIList->getInit(EndIndex)->getSourceRange().getEnd();
976       StructuredSubobjectInitList->setRBraceLoc(EndLoc);
977     }
978 
979     // Complain about missing braces.
980     if ((T->isArrayType() || T->isRecordType()) &&
981         !ParentIList->isIdiomaticZeroInitializer(SemaRef.getLangOpts()) &&
982         !isIdiomaticBraceElisionEntity(Entity)) {
983       SemaRef.Diag(StructuredSubobjectInitList->getBeginLoc(),
984                    diag::warn_missing_braces)
985           << StructuredSubobjectInitList->getSourceRange()
986           << FixItHint::CreateInsertion(
987                  StructuredSubobjectInitList->getBeginLoc(), "{")
988           << FixItHint::CreateInsertion(
989                  SemaRef.getLocForEndOfToken(
990                      StructuredSubobjectInitList->getEndLoc()),
991                  "}");
992     }
993 
994     // Warn if this type won't be an aggregate in future versions of C++.
995     auto *CXXRD = T->getAsCXXRecordDecl();
996     if (CXXRD && CXXRD->hasUserDeclaredConstructor()) {
997       SemaRef.Diag(StructuredSubobjectInitList->getBeginLoc(),
998                    diag::warn_cxx2a_compat_aggregate_init_with_ctors)
999           << StructuredSubobjectInitList->getSourceRange() << T;
1000     }
1001   }
1002 }
1003 
1004 /// Warn that \p Entity was of scalar type and was initialized by a
1005 /// single-element braced initializer list.
1006 static void warnBracedScalarInit(Sema &S, const InitializedEntity &Entity,
1007                                  SourceRange Braces) {
1008   // Don't warn during template instantiation. If the initialization was
1009   // non-dependent, we warned during the initial parse; otherwise, the
1010   // type might not be scalar in some uses of the template.
1011   if (S.inTemplateInstantiation())
1012     return;
1013 
1014   unsigned DiagID = 0;
1015 
1016   switch (Entity.getKind()) {
1017   case InitializedEntity::EK_VectorElement:
1018   case InitializedEntity::EK_ComplexElement:
1019   case InitializedEntity::EK_ArrayElement:
1020   case InitializedEntity::EK_Parameter:
1021   case InitializedEntity::EK_Parameter_CF_Audited:
1022   case InitializedEntity::EK_Result:
1023     // Extra braces here are suspicious.
1024     DiagID = diag::warn_braces_around_scalar_init;
1025     break;
1026 
1027   case InitializedEntity::EK_Member:
1028     // Warn on aggregate initialization but not on ctor init list or
1029     // default member initializer.
1030     if (Entity.getParent())
1031       DiagID = diag::warn_braces_around_scalar_init;
1032     break;
1033 
1034   case InitializedEntity::EK_Variable:
1035   case InitializedEntity::EK_LambdaCapture:
1036     // No warning, might be direct-list-initialization.
1037     // FIXME: Should we warn for copy-list-initialization in these cases?
1038     break;
1039 
1040   case InitializedEntity::EK_New:
1041   case InitializedEntity::EK_Temporary:
1042   case InitializedEntity::EK_CompoundLiteralInit:
1043     // No warning, braces are part of the syntax of the underlying construct.
1044     break;
1045 
1046   case InitializedEntity::EK_RelatedResult:
1047     // No warning, we already warned when initializing the result.
1048     break;
1049 
1050   case InitializedEntity::EK_Exception:
1051   case InitializedEntity::EK_Base:
1052   case InitializedEntity::EK_Delegating:
1053   case InitializedEntity::EK_BlockElement:
1054   case InitializedEntity::EK_LambdaToBlockConversionBlockElement:
1055   case InitializedEntity::EK_Binding:
1056   case InitializedEntity::EK_StmtExprResult:
1057     llvm_unreachable("unexpected braced scalar init");
1058   }
1059 
1060   if (DiagID) {
1061     S.Diag(Braces.getBegin(), DiagID)
1062       << Braces
1063       << FixItHint::CreateRemoval(Braces.getBegin())
1064       << FixItHint::CreateRemoval(Braces.getEnd());
1065   }
1066 }
1067 
1068 /// Check whether the initializer \p IList (that was written with explicit
1069 /// braces) can be used to initialize an object of type \p T.
1070 ///
1071 /// This also fills in \p StructuredList with the fully-braced, desugared
1072 /// form of the initialization.
1073 void InitListChecker::CheckExplicitInitList(const InitializedEntity &Entity,
1074                                             InitListExpr *IList, QualType &T,
1075                                             InitListExpr *StructuredList,
1076                                             bool TopLevelObject) {
1077   if (!VerifyOnly) {
1078     SyntacticToSemantic[IList] = StructuredList;
1079     StructuredList->setSyntacticForm(IList);
1080   }
1081 
1082   unsigned Index = 0, StructuredIndex = 0;
1083   CheckListElementTypes(Entity, IList, T, /*SubobjectIsDesignatorContext=*/true,
1084                         Index, StructuredList, StructuredIndex, TopLevelObject);
1085   if (!VerifyOnly) {
1086     QualType ExprTy = T;
1087     if (!ExprTy->isArrayType())
1088       ExprTy = ExprTy.getNonLValueExprType(SemaRef.Context);
1089     IList->setType(ExprTy);
1090     StructuredList->setType(ExprTy);
1091   }
1092   if (hadError)
1093     return;
1094 
1095   if (Index < IList->getNumInits()) {
1096     // We have leftover initializers
1097     if (VerifyOnly) {
1098       if (SemaRef.getLangOpts().CPlusPlus ||
1099           (SemaRef.getLangOpts().OpenCL &&
1100            IList->getType()->isVectorType())) {
1101         hadError = true;
1102       }
1103       return;
1104     }
1105 
1106     if (StructuredIndex == 1 &&
1107         IsStringInit(StructuredList->getInit(0), T, SemaRef.Context) ==
1108             SIF_None) {
1109       unsigned DK = diag::ext_excess_initializers_in_char_array_initializer;
1110       if (SemaRef.getLangOpts().CPlusPlus) {
1111         DK = diag::err_excess_initializers_in_char_array_initializer;
1112         hadError = true;
1113       }
1114       // Special-case
1115       SemaRef.Diag(IList->getInit(Index)->getBeginLoc(), DK)
1116           << IList->getInit(Index)->getSourceRange();
1117     } else if (!T->isIncompleteType()) {
1118       // Don't complain for incomplete types, since we'll get an error
1119       // elsewhere
1120       QualType CurrentObjectType = StructuredList->getType();
1121       int initKind =
1122         CurrentObjectType->isArrayType()? 0 :
1123         CurrentObjectType->isVectorType()? 1 :
1124         CurrentObjectType->isScalarType()? 2 :
1125         CurrentObjectType->isUnionType()? 3 :
1126         4;
1127 
1128       unsigned DK = diag::ext_excess_initializers;
1129       if (SemaRef.getLangOpts().CPlusPlus) {
1130         DK = diag::err_excess_initializers;
1131         hadError = true;
1132       }
1133       if (SemaRef.getLangOpts().OpenCL && initKind == 1) {
1134         DK = diag::err_excess_initializers;
1135         hadError = true;
1136       }
1137 
1138       SemaRef.Diag(IList->getInit(Index)->getBeginLoc(), DK)
1139           << initKind << IList->getInit(Index)->getSourceRange();
1140     }
1141   }
1142 
1143   if (!VerifyOnly) {
1144     if (T->isScalarType() && IList->getNumInits() == 1 &&
1145         !isa<InitListExpr>(IList->getInit(0)))
1146       warnBracedScalarInit(SemaRef, Entity, IList->getSourceRange());
1147 
1148     // Warn if this is a class type that won't be an aggregate in future
1149     // versions of C++.
1150     auto *CXXRD = T->getAsCXXRecordDecl();
1151     if (CXXRD && CXXRD->hasUserDeclaredConstructor()) {
1152       // Don't warn if there's an equivalent default constructor that would be
1153       // used instead.
1154       bool HasEquivCtor = false;
1155       if (IList->getNumInits() == 0) {
1156         auto *CD = SemaRef.LookupDefaultConstructor(CXXRD);
1157         HasEquivCtor = CD && !CD->isDeleted();
1158       }
1159 
1160       if (!HasEquivCtor) {
1161         SemaRef.Diag(IList->getBeginLoc(),
1162                      diag::warn_cxx2a_compat_aggregate_init_with_ctors)
1163             << IList->getSourceRange() << T;
1164       }
1165     }
1166   }
1167 }
1168 
1169 void InitListChecker::CheckListElementTypes(const InitializedEntity &Entity,
1170                                             InitListExpr *IList,
1171                                             QualType &DeclType,
1172                                             bool SubobjectIsDesignatorContext,
1173                                             unsigned &Index,
1174                                             InitListExpr *StructuredList,
1175                                             unsigned &StructuredIndex,
1176                                             bool TopLevelObject) {
1177   if (DeclType->isAnyComplexType() && SubobjectIsDesignatorContext) {
1178     // Explicitly braced initializer for complex type can be real+imaginary
1179     // parts.
1180     CheckComplexType(Entity, IList, DeclType, Index,
1181                      StructuredList, StructuredIndex);
1182   } else if (DeclType->isScalarType()) {
1183     CheckScalarType(Entity, IList, DeclType, Index,
1184                     StructuredList, StructuredIndex);
1185   } else if (DeclType->isVectorType()) {
1186     CheckVectorType(Entity, IList, DeclType, Index,
1187                     StructuredList, StructuredIndex);
1188   } else if (DeclType->isRecordType()) {
1189     assert(DeclType->isAggregateType() &&
1190            "non-aggregate records should be handed in CheckSubElementType");
1191     RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
1192     auto Bases =
1193         CXXRecordDecl::base_class_range(CXXRecordDecl::base_class_iterator(),
1194                                         CXXRecordDecl::base_class_iterator());
1195     if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RD))
1196       Bases = CXXRD->bases();
1197     CheckStructUnionTypes(Entity, IList, DeclType, Bases, RD->field_begin(),
1198                           SubobjectIsDesignatorContext, Index, StructuredList,
1199                           StructuredIndex, TopLevelObject);
1200   } else if (DeclType->isArrayType()) {
1201     llvm::APSInt Zero(
1202                     SemaRef.Context.getTypeSize(SemaRef.Context.getSizeType()),
1203                     false);
1204     CheckArrayType(Entity, IList, DeclType, Zero,
1205                    SubobjectIsDesignatorContext, Index,
1206                    StructuredList, StructuredIndex);
1207   } else if (DeclType->isVoidType() || DeclType->isFunctionType()) {
1208     // This type is invalid, issue a diagnostic.
1209     ++Index;
1210     if (!VerifyOnly)
1211       SemaRef.Diag(IList->getBeginLoc(), diag::err_illegal_initializer_type)
1212           << DeclType;
1213     hadError = true;
1214   } else if (DeclType->isReferenceType()) {
1215     CheckReferenceType(Entity, IList, DeclType, Index,
1216                        StructuredList, StructuredIndex);
1217   } else if (DeclType->isObjCObjectType()) {
1218     if (!VerifyOnly)
1219       SemaRef.Diag(IList->getBeginLoc(), diag::err_init_objc_class) << DeclType;
1220     hadError = true;
1221   } else if (DeclType->isOCLIntelSubgroupAVCType()) {
1222     // Checks for scalar type are sufficient for these types too.
1223     CheckScalarType(Entity, IList, DeclType, Index, StructuredList,
1224                     StructuredIndex);
1225   } else {
1226     if (!VerifyOnly)
1227       SemaRef.Diag(IList->getBeginLoc(), diag::err_illegal_initializer_type)
1228           << DeclType;
1229     hadError = true;
1230   }
1231 }
1232 
1233 void InitListChecker::CheckSubElementType(const InitializedEntity &Entity,
1234                                           InitListExpr *IList,
1235                                           QualType ElemType,
1236                                           unsigned &Index,
1237                                           InitListExpr *StructuredList,
1238                                           unsigned &StructuredIndex) {
1239   Expr *expr = IList->getInit(Index);
1240 
1241   if (ElemType->isReferenceType())
1242     return CheckReferenceType(Entity, IList, ElemType, Index,
1243                               StructuredList, StructuredIndex);
1244 
1245   if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
1246     if (SubInitList->getNumInits() == 1 &&
1247         IsStringInit(SubInitList->getInit(0), ElemType, SemaRef.Context) ==
1248         SIF_None) {
1249       expr = SubInitList->getInit(0);
1250     } else if (!SemaRef.getLangOpts().CPlusPlus) {
1251       InitListExpr *InnerStructuredList
1252         = getStructuredSubobjectInit(IList, Index, ElemType,
1253                                      StructuredList, StructuredIndex,
1254                                      SubInitList->getSourceRange(), true);
1255       CheckExplicitInitList(Entity, SubInitList, ElemType,
1256                             InnerStructuredList);
1257 
1258       if (!hadError && !VerifyOnly) {
1259         bool RequiresSecondPass = false;
1260         FillInEmptyInitializations(Entity, InnerStructuredList,
1261                                    RequiresSecondPass, StructuredList,
1262                                    StructuredIndex);
1263         if (RequiresSecondPass && !hadError)
1264           FillInEmptyInitializations(Entity, InnerStructuredList,
1265                                      RequiresSecondPass, StructuredList,
1266                                      StructuredIndex);
1267       }
1268       ++StructuredIndex;
1269       ++Index;
1270       return;
1271     }
1272     // C++ initialization is handled later.
1273   } else if (isa<ImplicitValueInitExpr>(expr)) {
1274     // This happens during template instantiation when we see an InitListExpr
1275     // that we've already checked once.
1276     assert(SemaRef.Context.hasSameType(expr->getType(), ElemType) &&
1277            "found implicit initialization for the wrong type");
1278     if (!VerifyOnly)
1279       UpdateStructuredListElement(StructuredList, StructuredIndex, expr);
1280     ++Index;
1281     return;
1282   }
1283 
1284   if (SemaRef.getLangOpts().CPlusPlus) {
1285     // C++ [dcl.init.aggr]p2:
1286     //   Each member is copy-initialized from the corresponding
1287     //   initializer-clause.
1288 
1289     // FIXME: Better EqualLoc?
1290     InitializationKind Kind =
1291         InitializationKind::CreateCopy(expr->getBeginLoc(), SourceLocation());
1292     InitializationSequence Seq(SemaRef, Entity, Kind, expr,
1293                                /*TopLevelOfInitList*/ true);
1294 
1295     // C++14 [dcl.init.aggr]p13:
1296     //   If the assignment-expression can initialize a member, the member is
1297     //   initialized. Otherwise [...] brace elision is assumed
1298     //
1299     // Brace elision is never performed if the element is not an
1300     // assignment-expression.
1301     if (Seq || isa<InitListExpr>(expr)) {
1302       if (!VerifyOnly) {
1303         ExprResult Result =
1304           Seq.Perform(SemaRef, Entity, Kind, expr);
1305         if (Result.isInvalid())
1306           hadError = true;
1307 
1308         UpdateStructuredListElement(StructuredList, StructuredIndex,
1309                                     Result.getAs<Expr>());
1310       } else if (!Seq)
1311         hadError = true;
1312       ++Index;
1313       return;
1314     }
1315 
1316     // Fall through for subaggregate initialization
1317   } else if (ElemType->isScalarType() || ElemType->isAtomicType()) {
1318     // FIXME: Need to handle atomic aggregate types with implicit init lists.
1319     return CheckScalarType(Entity, IList, ElemType, Index,
1320                            StructuredList, StructuredIndex);
1321   } else if (const ArrayType *arrayType =
1322                  SemaRef.Context.getAsArrayType(ElemType)) {
1323     // arrayType can be incomplete if we're initializing a flexible
1324     // array member.  There's nothing we can do with the completed
1325     // type here, though.
1326 
1327     if (IsStringInit(expr, arrayType, SemaRef.Context) == SIF_None) {
1328       if (!VerifyOnly) {
1329         CheckStringInit(expr, ElemType, arrayType, SemaRef);
1330         UpdateStructuredListElement(StructuredList, StructuredIndex, expr);
1331       }
1332       ++Index;
1333       return;
1334     }
1335 
1336     // Fall through for subaggregate initialization.
1337 
1338   } else {
1339     assert((ElemType->isRecordType() || ElemType->isVectorType() ||
1340             ElemType->isOpenCLSpecificType()) && "Unexpected type");
1341 
1342     // C99 6.7.8p13:
1343     //
1344     //   The initializer for a structure or union object that has
1345     //   automatic storage duration shall be either an initializer
1346     //   list as described below, or a single expression that has
1347     //   compatible structure or union type. In the latter case, the
1348     //   initial value of the object, including unnamed members, is
1349     //   that of the expression.
1350     ExprResult ExprRes = expr;
1351     if (SemaRef.CheckSingleAssignmentConstraints(
1352             ElemType, ExprRes, !VerifyOnly) != Sema::Incompatible) {
1353       if (ExprRes.isInvalid())
1354         hadError = true;
1355       else {
1356         ExprRes = SemaRef.DefaultFunctionArrayLvalueConversion(ExprRes.get());
1357           if (ExprRes.isInvalid())
1358             hadError = true;
1359       }
1360       UpdateStructuredListElement(StructuredList, StructuredIndex,
1361                                   ExprRes.getAs<Expr>());
1362       ++Index;
1363       return;
1364     }
1365     ExprRes.get();
1366     // Fall through for subaggregate initialization
1367   }
1368 
1369   // C++ [dcl.init.aggr]p12:
1370   //
1371   //   [...] Otherwise, if the member is itself a non-empty
1372   //   subaggregate, brace elision is assumed and the initializer is
1373   //   considered for the initialization of the first member of
1374   //   the subaggregate.
1375   // OpenCL vector initializer is handled elsewhere.
1376   if ((!SemaRef.getLangOpts().OpenCL && ElemType->isVectorType()) ||
1377       ElemType->isAggregateType()) {
1378     CheckImplicitInitList(Entity, IList, ElemType, Index, StructuredList,
1379                           StructuredIndex);
1380     ++StructuredIndex;
1381   } else {
1382     if (!VerifyOnly) {
1383       // We cannot initialize this element, so let
1384       // PerformCopyInitialization produce the appropriate diagnostic.
1385       SemaRef.PerformCopyInitialization(Entity, SourceLocation(), expr,
1386                                         /*TopLevelOfInitList=*/true);
1387     }
1388     hadError = true;
1389     ++Index;
1390     ++StructuredIndex;
1391   }
1392 }
1393 
1394 void InitListChecker::CheckComplexType(const InitializedEntity &Entity,
1395                                        InitListExpr *IList, QualType DeclType,
1396                                        unsigned &Index,
1397                                        InitListExpr *StructuredList,
1398                                        unsigned &StructuredIndex) {
1399   assert(Index == 0 && "Index in explicit init list must be zero");
1400 
1401   // As an extension, clang supports complex initializers, which initialize
1402   // a complex number component-wise.  When an explicit initializer list for
1403   // a complex number contains two two initializers, this extension kicks in:
1404   // it exepcts the initializer list to contain two elements convertible to
1405   // the element type of the complex type. The first element initializes
1406   // the real part, and the second element intitializes the imaginary part.
1407 
1408   if (IList->getNumInits() != 2)
1409     return CheckScalarType(Entity, IList, DeclType, Index, StructuredList,
1410                            StructuredIndex);
1411 
1412   // This is an extension in C.  (The builtin _Complex type does not exist
1413   // in the C++ standard.)
1414   if (!SemaRef.getLangOpts().CPlusPlus && !VerifyOnly)
1415     SemaRef.Diag(IList->getBeginLoc(), diag::ext_complex_component_init)
1416         << IList->getSourceRange();
1417 
1418   // Initialize the complex number.
1419   QualType elementType = DeclType->getAs<ComplexType>()->getElementType();
1420   InitializedEntity ElementEntity =
1421     InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
1422 
1423   for (unsigned i = 0; i < 2; ++i) {
1424     ElementEntity.setElementIndex(Index);
1425     CheckSubElementType(ElementEntity, IList, elementType, Index,
1426                         StructuredList, StructuredIndex);
1427   }
1428 }
1429 
1430 void InitListChecker::CheckScalarType(const InitializedEntity &Entity,
1431                                       InitListExpr *IList, QualType DeclType,
1432                                       unsigned &Index,
1433                                       InitListExpr *StructuredList,
1434                                       unsigned &StructuredIndex) {
1435   if (Index >= IList->getNumInits()) {
1436     if (!VerifyOnly)
1437       SemaRef.Diag(IList->getBeginLoc(),
1438                    SemaRef.getLangOpts().CPlusPlus11
1439                        ? diag::warn_cxx98_compat_empty_scalar_initializer
1440                        : diag::err_empty_scalar_initializer)
1441           << IList->getSourceRange();
1442     hadError = !SemaRef.getLangOpts().CPlusPlus11;
1443     ++Index;
1444     ++StructuredIndex;
1445     return;
1446   }
1447 
1448   Expr *expr = IList->getInit(Index);
1449   if (InitListExpr *SubIList = dyn_cast<InitListExpr>(expr)) {
1450     // FIXME: This is invalid, and accepting it causes overload resolution
1451     // to pick the wrong overload in some corner cases.
1452     if (!VerifyOnly)
1453       SemaRef.Diag(SubIList->getBeginLoc(),
1454                    diag::ext_many_braces_around_scalar_init)
1455           << SubIList->getSourceRange();
1456 
1457     CheckScalarType(Entity, SubIList, DeclType, Index, StructuredList,
1458                     StructuredIndex);
1459     return;
1460   } else if (isa<DesignatedInitExpr>(expr)) {
1461     if (!VerifyOnly)
1462       SemaRef.Diag(expr->getBeginLoc(), diag::err_designator_for_scalar_init)
1463           << DeclType << expr->getSourceRange();
1464     hadError = true;
1465     ++Index;
1466     ++StructuredIndex;
1467     return;
1468   }
1469 
1470   if (VerifyOnly) {
1471     if (!SemaRef.CanPerformCopyInitialization(Entity,expr))
1472       hadError = true;
1473     ++Index;
1474     return;
1475   }
1476 
1477   ExprResult Result =
1478       SemaRef.PerformCopyInitialization(Entity, expr->getBeginLoc(), expr,
1479                                         /*TopLevelOfInitList=*/true);
1480 
1481   Expr *ResultExpr = nullptr;
1482 
1483   if (Result.isInvalid())
1484     hadError = true; // types weren't compatible.
1485   else {
1486     ResultExpr = Result.getAs<Expr>();
1487 
1488     if (ResultExpr != expr) {
1489       // The type was promoted, update initializer list.
1490       IList->setInit(Index, ResultExpr);
1491     }
1492   }
1493   if (hadError)
1494     ++StructuredIndex;
1495   else
1496     UpdateStructuredListElement(StructuredList, StructuredIndex, ResultExpr);
1497   ++Index;
1498 }
1499 
1500 void InitListChecker::CheckReferenceType(const InitializedEntity &Entity,
1501                                          InitListExpr *IList, QualType DeclType,
1502                                          unsigned &Index,
1503                                          InitListExpr *StructuredList,
1504                                          unsigned &StructuredIndex) {
1505   if (Index >= IList->getNumInits()) {
1506     // FIXME: It would be wonderful if we could point at the actual member. In
1507     // general, it would be useful to pass location information down the stack,
1508     // so that we know the location (or decl) of the "current object" being
1509     // initialized.
1510     if (!VerifyOnly)
1511       SemaRef.Diag(IList->getBeginLoc(),
1512                    diag::err_init_reference_member_uninitialized)
1513           << DeclType << IList->getSourceRange();
1514     hadError = true;
1515     ++Index;
1516     ++StructuredIndex;
1517     return;
1518   }
1519 
1520   Expr *expr = IList->getInit(Index);
1521   if (isa<InitListExpr>(expr) && !SemaRef.getLangOpts().CPlusPlus11) {
1522     if (!VerifyOnly)
1523       SemaRef.Diag(IList->getBeginLoc(), diag::err_init_non_aggr_init_list)
1524           << DeclType << IList->getSourceRange();
1525     hadError = true;
1526     ++Index;
1527     ++StructuredIndex;
1528     return;
1529   }
1530 
1531   if (VerifyOnly) {
1532     if (!SemaRef.CanPerformCopyInitialization(Entity,expr))
1533       hadError = true;
1534     ++Index;
1535     return;
1536   }
1537 
1538   ExprResult Result =
1539       SemaRef.PerformCopyInitialization(Entity, expr->getBeginLoc(), expr,
1540                                         /*TopLevelOfInitList=*/true);
1541 
1542   if (Result.isInvalid())
1543     hadError = true;
1544 
1545   expr = Result.getAs<Expr>();
1546   IList->setInit(Index, expr);
1547 
1548   if (hadError)
1549     ++StructuredIndex;
1550   else
1551     UpdateStructuredListElement(StructuredList, StructuredIndex, expr);
1552   ++Index;
1553 }
1554 
1555 void InitListChecker::CheckVectorType(const InitializedEntity &Entity,
1556                                       InitListExpr *IList, QualType DeclType,
1557                                       unsigned &Index,
1558                                       InitListExpr *StructuredList,
1559                                       unsigned &StructuredIndex) {
1560   const VectorType *VT = DeclType->getAs<VectorType>();
1561   unsigned maxElements = VT->getNumElements();
1562   unsigned numEltsInit = 0;
1563   QualType elementType = VT->getElementType();
1564 
1565   if (Index >= IList->getNumInits()) {
1566     // Make sure the element type can be value-initialized.
1567     if (VerifyOnly)
1568       CheckEmptyInitializable(
1569           InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity),
1570           IList->getEndLoc());
1571     return;
1572   }
1573 
1574   if (!SemaRef.getLangOpts().OpenCL) {
1575     // If the initializing element is a vector, try to copy-initialize
1576     // instead of breaking it apart (which is doomed to failure anyway).
1577     Expr *Init = IList->getInit(Index);
1578     if (!isa<InitListExpr>(Init) && Init->getType()->isVectorType()) {
1579       if (VerifyOnly) {
1580         if (!SemaRef.CanPerformCopyInitialization(Entity, Init))
1581           hadError = true;
1582         ++Index;
1583         return;
1584       }
1585 
1586       ExprResult Result =
1587           SemaRef.PerformCopyInitialization(Entity, Init->getBeginLoc(), Init,
1588                                             /*TopLevelOfInitList=*/true);
1589 
1590       Expr *ResultExpr = nullptr;
1591       if (Result.isInvalid())
1592         hadError = true; // types weren't compatible.
1593       else {
1594         ResultExpr = Result.getAs<Expr>();
1595 
1596         if (ResultExpr != Init) {
1597           // The type was promoted, update initializer list.
1598           IList->setInit(Index, ResultExpr);
1599         }
1600       }
1601       if (hadError)
1602         ++StructuredIndex;
1603       else
1604         UpdateStructuredListElement(StructuredList, StructuredIndex,
1605                                     ResultExpr);
1606       ++Index;
1607       return;
1608     }
1609 
1610     InitializedEntity ElementEntity =
1611       InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
1612 
1613     for (unsigned i = 0; i < maxElements; ++i, ++numEltsInit) {
1614       // Don't attempt to go past the end of the init list
1615       if (Index >= IList->getNumInits()) {
1616         if (VerifyOnly)
1617           CheckEmptyInitializable(ElementEntity, IList->getEndLoc());
1618         break;
1619       }
1620 
1621       ElementEntity.setElementIndex(Index);
1622       CheckSubElementType(ElementEntity, IList, elementType, Index,
1623                           StructuredList, StructuredIndex);
1624     }
1625 
1626     if (VerifyOnly)
1627       return;
1628 
1629     bool isBigEndian = SemaRef.Context.getTargetInfo().isBigEndian();
1630     const VectorType *T = Entity.getType()->getAs<VectorType>();
1631     if (isBigEndian && (T->getVectorKind() == VectorType::NeonVector ||
1632                         T->getVectorKind() == VectorType::NeonPolyVector)) {
1633       // The ability to use vector initializer lists is a GNU vector extension
1634       // and is unrelated to the NEON intrinsics in arm_neon.h. On little
1635       // endian machines it works fine, however on big endian machines it
1636       // exhibits surprising behaviour:
1637       //
1638       //   uint32x2_t x = {42, 64};
1639       //   return vget_lane_u32(x, 0); // Will return 64.
1640       //
1641       // Because of this, explicitly call out that it is non-portable.
1642       //
1643       SemaRef.Diag(IList->getBeginLoc(),
1644                    diag::warn_neon_vector_initializer_non_portable);
1645 
1646       const char *typeCode;
1647       unsigned typeSize = SemaRef.Context.getTypeSize(elementType);
1648 
1649       if (elementType->isFloatingType())
1650         typeCode = "f";
1651       else if (elementType->isSignedIntegerType())
1652         typeCode = "s";
1653       else if (elementType->isUnsignedIntegerType())
1654         typeCode = "u";
1655       else
1656         llvm_unreachable("Invalid element type!");
1657 
1658       SemaRef.Diag(IList->getBeginLoc(),
1659                    SemaRef.Context.getTypeSize(VT) > 64
1660                        ? diag::note_neon_vector_initializer_non_portable_q
1661                        : diag::note_neon_vector_initializer_non_portable)
1662           << typeCode << typeSize;
1663     }
1664 
1665     return;
1666   }
1667 
1668   InitializedEntity ElementEntity =
1669     InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
1670 
1671   // OpenCL initializers allows vectors to be constructed from vectors.
1672   for (unsigned i = 0; i < maxElements; ++i) {
1673     // Don't attempt to go past the end of the init list
1674     if (Index >= IList->getNumInits())
1675       break;
1676 
1677     ElementEntity.setElementIndex(Index);
1678 
1679     QualType IType = IList->getInit(Index)->getType();
1680     if (!IType->isVectorType()) {
1681       CheckSubElementType(ElementEntity, IList, elementType, Index,
1682                           StructuredList, StructuredIndex);
1683       ++numEltsInit;
1684     } else {
1685       QualType VecType;
1686       const VectorType *IVT = IType->getAs<VectorType>();
1687       unsigned numIElts = IVT->getNumElements();
1688 
1689       if (IType->isExtVectorType())
1690         VecType = SemaRef.Context.getExtVectorType(elementType, numIElts);
1691       else
1692         VecType = SemaRef.Context.getVectorType(elementType, numIElts,
1693                                                 IVT->getVectorKind());
1694       CheckSubElementType(ElementEntity, IList, VecType, Index,
1695                           StructuredList, StructuredIndex);
1696       numEltsInit += numIElts;
1697     }
1698   }
1699 
1700   // OpenCL requires all elements to be initialized.
1701   if (numEltsInit != maxElements) {
1702     if (!VerifyOnly)
1703       SemaRef.Diag(IList->getBeginLoc(),
1704                    diag::err_vector_incorrect_num_initializers)
1705           << (numEltsInit < maxElements) << maxElements << numEltsInit;
1706     hadError = true;
1707   }
1708 }
1709 
1710 /// Check if the type of a class element has an accessible destructor, and marks
1711 /// it referenced. Returns true if we shouldn't form a reference to the
1712 /// destructor.
1713 ///
1714 /// Aggregate initialization requires a class element's destructor be
1715 /// accessible per 11.6.1 [dcl.init.aggr]:
1716 ///
1717 /// The destructor for each element of class type is potentially invoked
1718 /// (15.4 [class.dtor]) from the context where the aggregate initialization
1719 /// occurs.
1720 static bool checkDestructorReference(QualType ElementType, SourceLocation Loc,
1721                                      Sema &SemaRef) {
1722   auto *CXXRD = ElementType->getAsCXXRecordDecl();
1723   if (!CXXRD)
1724     return false;
1725 
1726   CXXDestructorDecl *Destructor = SemaRef.LookupDestructor(CXXRD);
1727   SemaRef.CheckDestructorAccess(Loc, Destructor,
1728                                 SemaRef.PDiag(diag::err_access_dtor_temp)
1729                                 << ElementType);
1730   SemaRef.MarkFunctionReferenced(Loc, Destructor);
1731   return SemaRef.DiagnoseUseOfDecl(Destructor, Loc);
1732 }
1733 
1734 void InitListChecker::CheckArrayType(const InitializedEntity &Entity,
1735                                      InitListExpr *IList, QualType &DeclType,
1736                                      llvm::APSInt elementIndex,
1737                                      bool SubobjectIsDesignatorContext,
1738                                      unsigned &Index,
1739                                      InitListExpr *StructuredList,
1740                                      unsigned &StructuredIndex) {
1741   const ArrayType *arrayType = SemaRef.Context.getAsArrayType(DeclType);
1742 
1743   if (!VerifyOnly) {
1744     if (checkDestructorReference(arrayType->getElementType(),
1745                                  IList->getEndLoc(), SemaRef)) {
1746       hadError = true;
1747       return;
1748     }
1749   }
1750 
1751   // Check for the special-case of initializing an array with a string.
1752   if (Index < IList->getNumInits()) {
1753     if (IsStringInit(IList->getInit(Index), arrayType, SemaRef.Context) ==
1754         SIF_None) {
1755       // We place the string literal directly into the resulting
1756       // initializer list. This is the only place where the structure
1757       // of the structured initializer list doesn't match exactly,
1758       // because doing so would involve allocating one character
1759       // constant for each string.
1760       if (!VerifyOnly) {
1761         CheckStringInit(IList->getInit(Index), DeclType, arrayType, SemaRef);
1762         UpdateStructuredListElement(StructuredList, StructuredIndex,
1763                                     IList->getInit(Index));
1764         StructuredList->resizeInits(SemaRef.Context, StructuredIndex);
1765       }
1766       ++Index;
1767       return;
1768     }
1769   }
1770   if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(arrayType)) {
1771     // Check for VLAs; in standard C it would be possible to check this
1772     // earlier, but I don't know where clang accepts VLAs (gcc accepts
1773     // them in all sorts of strange places).
1774     if (!VerifyOnly)
1775       SemaRef.Diag(VAT->getSizeExpr()->getBeginLoc(),
1776                    diag::err_variable_object_no_init)
1777           << VAT->getSizeExpr()->getSourceRange();
1778     hadError = true;
1779     ++Index;
1780     ++StructuredIndex;
1781     return;
1782   }
1783 
1784   // We might know the maximum number of elements in advance.
1785   llvm::APSInt maxElements(elementIndex.getBitWidth(),
1786                            elementIndex.isUnsigned());
1787   bool maxElementsKnown = false;
1788   if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(arrayType)) {
1789     maxElements = CAT->getSize();
1790     elementIndex = elementIndex.extOrTrunc(maxElements.getBitWidth());
1791     elementIndex.setIsUnsigned(maxElements.isUnsigned());
1792     maxElementsKnown = true;
1793   }
1794 
1795   QualType elementType = arrayType->getElementType();
1796   while (Index < IList->getNumInits()) {
1797     Expr *Init = IList->getInit(Index);
1798     if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) {
1799       // If we're not the subobject that matches up with the '{' for
1800       // the designator, we shouldn't be handling the
1801       // designator. Return immediately.
1802       if (!SubobjectIsDesignatorContext)
1803         return;
1804 
1805       // Handle this designated initializer. elementIndex will be
1806       // updated to be the next array element we'll initialize.
1807       if (CheckDesignatedInitializer(Entity, IList, DIE, 0,
1808                                      DeclType, nullptr, &elementIndex, Index,
1809                                      StructuredList, StructuredIndex, true,
1810                                      false)) {
1811         hadError = true;
1812         continue;
1813       }
1814 
1815       if (elementIndex.getBitWidth() > maxElements.getBitWidth())
1816         maxElements = maxElements.extend(elementIndex.getBitWidth());
1817       else if (elementIndex.getBitWidth() < maxElements.getBitWidth())
1818         elementIndex = elementIndex.extend(maxElements.getBitWidth());
1819       elementIndex.setIsUnsigned(maxElements.isUnsigned());
1820 
1821       // If the array is of incomplete type, keep track of the number of
1822       // elements in the initializer.
1823       if (!maxElementsKnown && elementIndex > maxElements)
1824         maxElements = elementIndex;
1825 
1826       continue;
1827     }
1828 
1829     // If we know the maximum number of elements, and we've already
1830     // hit it, stop consuming elements in the initializer list.
1831     if (maxElementsKnown && elementIndex == maxElements)
1832       break;
1833 
1834     InitializedEntity ElementEntity =
1835       InitializedEntity::InitializeElement(SemaRef.Context, StructuredIndex,
1836                                            Entity);
1837     // Check this element.
1838     CheckSubElementType(ElementEntity, IList, elementType, Index,
1839                         StructuredList, StructuredIndex);
1840     ++elementIndex;
1841 
1842     // If the array is of incomplete type, keep track of the number of
1843     // elements in the initializer.
1844     if (!maxElementsKnown && elementIndex > maxElements)
1845       maxElements = elementIndex;
1846   }
1847   if (!hadError && DeclType->isIncompleteArrayType() && !VerifyOnly) {
1848     // If this is an incomplete array type, the actual type needs to
1849     // be calculated here.
1850     llvm::APSInt Zero(maxElements.getBitWidth(), maxElements.isUnsigned());
1851     if (maxElements == Zero && !Entity.isVariableLengthArrayNew()) {
1852       // Sizing an array implicitly to zero is not allowed by ISO C,
1853       // but is supported by GNU.
1854       SemaRef.Diag(IList->getBeginLoc(), diag::ext_typecheck_zero_array_size);
1855     }
1856 
1857     DeclType = SemaRef.Context.getConstantArrayType(elementType, maxElements,
1858                                                      ArrayType::Normal, 0);
1859   }
1860   if (!hadError && VerifyOnly) {
1861     // If there are any members of the array that get value-initialized, check
1862     // that is possible. That happens if we know the bound and don't have
1863     // enough elements, or if we're performing an array new with an unknown
1864     // bound.
1865     // FIXME: This needs to detect holes left by designated initializers too.
1866     if ((maxElementsKnown && elementIndex < maxElements) ||
1867         Entity.isVariableLengthArrayNew())
1868       CheckEmptyInitializable(
1869           InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity),
1870           IList->getEndLoc());
1871   }
1872 }
1873 
1874 bool InitListChecker::CheckFlexibleArrayInit(const InitializedEntity &Entity,
1875                                              Expr *InitExpr,
1876                                              FieldDecl *Field,
1877                                              bool TopLevelObject) {
1878   // Handle GNU flexible array initializers.
1879   unsigned FlexArrayDiag;
1880   if (isa<InitListExpr>(InitExpr) &&
1881       cast<InitListExpr>(InitExpr)->getNumInits() == 0) {
1882     // Empty flexible array init always allowed as an extension
1883     FlexArrayDiag = diag::ext_flexible_array_init;
1884   } else if (SemaRef.getLangOpts().CPlusPlus) {
1885     // Disallow flexible array init in C++; it is not required for gcc
1886     // compatibility, and it needs work to IRGen correctly in general.
1887     FlexArrayDiag = diag::err_flexible_array_init;
1888   } else if (!TopLevelObject) {
1889     // Disallow flexible array init on non-top-level object
1890     FlexArrayDiag = diag::err_flexible_array_init;
1891   } else if (Entity.getKind() != InitializedEntity::EK_Variable) {
1892     // Disallow flexible array init on anything which is not a variable.
1893     FlexArrayDiag = diag::err_flexible_array_init;
1894   } else if (cast<VarDecl>(Entity.getDecl())->hasLocalStorage()) {
1895     // Disallow flexible array init on local variables.
1896     FlexArrayDiag = diag::err_flexible_array_init;
1897   } else {
1898     // Allow other cases.
1899     FlexArrayDiag = diag::ext_flexible_array_init;
1900   }
1901 
1902   if (!VerifyOnly) {
1903     SemaRef.Diag(InitExpr->getBeginLoc(), FlexArrayDiag)
1904         << InitExpr->getBeginLoc();
1905     SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
1906       << Field;
1907   }
1908 
1909   return FlexArrayDiag != diag::ext_flexible_array_init;
1910 }
1911 
1912 void InitListChecker::CheckStructUnionTypes(
1913     const InitializedEntity &Entity, InitListExpr *IList, QualType DeclType,
1914     CXXRecordDecl::base_class_range Bases, RecordDecl::field_iterator Field,
1915     bool SubobjectIsDesignatorContext, unsigned &Index,
1916     InitListExpr *StructuredList, unsigned &StructuredIndex,
1917     bool TopLevelObject) {
1918   RecordDecl *structDecl = DeclType->getAs<RecordType>()->getDecl();
1919 
1920   // If the record is invalid, some of it's members are invalid. To avoid
1921   // confusion, we forgo checking the intializer for the entire record.
1922   if (structDecl->isInvalidDecl()) {
1923     // Assume it was supposed to consume a single initializer.
1924     ++Index;
1925     hadError = true;
1926     return;
1927   }
1928 
1929   if (DeclType->isUnionType() && IList->getNumInits() == 0) {
1930     RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
1931 
1932     if (!VerifyOnly)
1933       for (FieldDecl *FD : RD->fields()) {
1934         QualType ET = SemaRef.Context.getBaseElementType(FD->getType());
1935         if (checkDestructorReference(ET, IList->getEndLoc(), SemaRef)) {
1936           hadError = true;
1937           return;
1938         }
1939       }
1940 
1941     // If there's a default initializer, use it.
1942     if (isa<CXXRecordDecl>(RD) && cast<CXXRecordDecl>(RD)->hasInClassInitializer()) {
1943       if (VerifyOnly)
1944         return;
1945       for (RecordDecl::field_iterator FieldEnd = RD->field_end();
1946            Field != FieldEnd; ++Field) {
1947         if (Field->hasInClassInitializer()) {
1948           StructuredList->setInitializedFieldInUnion(*Field);
1949           // FIXME: Actually build a CXXDefaultInitExpr?
1950           return;
1951         }
1952       }
1953     }
1954 
1955     // Value-initialize the first member of the union that isn't an unnamed
1956     // bitfield.
1957     for (RecordDecl::field_iterator FieldEnd = RD->field_end();
1958          Field != FieldEnd; ++Field) {
1959       if (!Field->isUnnamedBitfield()) {
1960         if (VerifyOnly)
1961           CheckEmptyInitializable(
1962               InitializedEntity::InitializeMember(*Field, &Entity),
1963               IList->getEndLoc());
1964         else
1965           StructuredList->setInitializedFieldInUnion(*Field);
1966         break;
1967       }
1968     }
1969     return;
1970   }
1971 
1972   bool InitializedSomething = false;
1973 
1974   // If we have any base classes, they are initialized prior to the fields.
1975   for (auto &Base : Bases) {
1976     Expr *Init = Index < IList->getNumInits() ? IList->getInit(Index) : nullptr;
1977 
1978     // Designated inits always initialize fields, so if we see one, all
1979     // remaining base classes have no explicit initializer.
1980     if (Init && isa<DesignatedInitExpr>(Init))
1981       Init = nullptr;
1982 
1983     SourceLocation InitLoc = Init ? Init->getBeginLoc() : IList->getEndLoc();
1984     InitializedEntity BaseEntity = InitializedEntity::InitializeBase(
1985         SemaRef.Context, &Base, false, &Entity);
1986     if (Init) {
1987       CheckSubElementType(BaseEntity, IList, Base.getType(), Index,
1988                           StructuredList, StructuredIndex);
1989       InitializedSomething = true;
1990     } else if (VerifyOnly) {
1991       CheckEmptyInitializable(BaseEntity, InitLoc);
1992     }
1993 
1994     if (!VerifyOnly)
1995       if (checkDestructorReference(Base.getType(), InitLoc, SemaRef)) {
1996         hadError = true;
1997         return;
1998       }
1999   }
2000 
2001   // If structDecl is a forward declaration, this loop won't do
2002   // anything except look at designated initializers; That's okay,
2003   // because an error should get printed out elsewhere. It might be
2004   // worthwhile to skip over the rest of the initializer, though.
2005   RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
2006   RecordDecl::field_iterator FieldEnd = RD->field_end();
2007   bool CheckForMissingFields =
2008     !IList->isIdiomaticZeroInitializer(SemaRef.getLangOpts());
2009   bool HasDesignatedInit = false;
2010 
2011   while (Index < IList->getNumInits()) {
2012     Expr *Init = IList->getInit(Index);
2013     SourceLocation InitLoc = Init->getBeginLoc();
2014 
2015     if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) {
2016       // If we're not the subobject that matches up with the '{' for
2017       // the designator, we shouldn't be handling the
2018       // designator. Return immediately.
2019       if (!SubobjectIsDesignatorContext)
2020         return;
2021 
2022       HasDesignatedInit = true;
2023 
2024       // Handle this designated initializer. Field will be updated to
2025       // the next field that we'll be initializing.
2026       if (CheckDesignatedInitializer(Entity, IList, DIE, 0,
2027                                      DeclType, &Field, nullptr, Index,
2028                                      StructuredList, StructuredIndex,
2029                                      true, TopLevelObject))
2030         hadError = true;
2031       else if (!VerifyOnly) {
2032         // Find the field named by the designated initializer.
2033         RecordDecl::field_iterator F = RD->field_begin();
2034         while (std::next(F) != Field)
2035           ++F;
2036         QualType ET = SemaRef.Context.getBaseElementType(F->getType());
2037         if (checkDestructorReference(ET, InitLoc, SemaRef)) {
2038           hadError = true;
2039           return;
2040         }
2041       }
2042 
2043       InitializedSomething = true;
2044 
2045       // Disable check for missing fields when designators are used.
2046       // This matches gcc behaviour.
2047       CheckForMissingFields = false;
2048       continue;
2049     }
2050 
2051     if (Field == FieldEnd) {
2052       // We've run out of fields. We're done.
2053       break;
2054     }
2055 
2056     // We've already initialized a member of a union. We're done.
2057     if (InitializedSomething && DeclType->isUnionType())
2058       break;
2059 
2060     // If we've hit the flexible array member at the end, we're done.
2061     if (Field->getType()->isIncompleteArrayType())
2062       break;
2063 
2064     if (Field->isUnnamedBitfield()) {
2065       // Don't initialize unnamed bitfields, e.g. "int : 20;"
2066       ++Field;
2067       continue;
2068     }
2069 
2070     // Make sure we can use this declaration.
2071     bool InvalidUse;
2072     if (VerifyOnly)
2073       InvalidUse = !SemaRef.CanUseDecl(*Field, TreatUnavailableAsInvalid);
2074     else
2075       InvalidUse = SemaRef.DiagnoseUseOfDecl(
2076           *Field, IList->getInit(Index)->getBeginLoc());
2077     if (InvalidUse) {
2078       ++Index;
2079       ++Field;
2080       hadError = true;
2081       continue;
2082     }
2083 
2084     if (!VerifyOnly) {
2085       QualType ET = SemaRef.Context.getBaseElementType(Field->getType());
2086       if (checkDestructorReference(ET, InitLoc, SemaRef)) {
2087         hadError = true;
2088         return;
2089       }
2090     }
2091 
2092     InitializedEntity MemberEntity =
2093       InitializedEntity::InitializeMember(*Field, &Entity);
2094     CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
2095                         StructuredList, StructuredIndex);
2096     InitializedSomething = true;
2097 
2098     if (DeclType->isUnionType() && !VerifyOnly) {
2099       // Initialize the first field within the union.
2100       StructuredList->setInitializedFieldInUnion(*Field);
2101     }
2102 
2103     ++Field;
2104   }
2105 
2106   // Emit warnings for missing struct field initializers.
2107   if (!VerifyOnly && InitializedSomething && CheckForMissingFields &&
2108       Field != FieldEnd && !Field->getType()->isIncompleteArrayType() &&
2109       !DeclType->isUnionType()) {
2110     // It is possible we have one or more unnamed bitfields remaining.
2111     // Find first (if any) named field and emit warning.
2112     for (RecordDecl::field_iterator it = Field, end = RD->field_end();
2113          it != end; ++it) {
2114       if (!it->isUnnamedBitfield() && !it->hasInClassInitializer()) {
2115         SemaRef.Diag(IList->getSourceRange().getEnd(),
2116                      diag::warn_missing_field_initializers) << *it;
2117         break;
2118       }
2119     }
2120   }
2121 
2122   // Check that any remaining fields can be value-initialized.
2123   if (VerifyOnly && Field != FieldEnd && !DeclType->isUnionType() &&
2124       !Field->getType()->isIncompleteArrayType()) {
2125     // FIXME: Should check for holes left by designated initializers too.
2126     for (; Field != FieldEnd && !hadError; ++Field) {
2127       if (!Field->isUnnamedBitfield() && !Field->hasInClassInitializer())
2128         CheckEmptyInitializable(
2129             InitializedEntity::InitializeMember(*Field, &Entity),
2130             IList->getEndLoc());
2131     }
2132   }
2133 
2134   // Check that the types of the remaining fields have accessible destructors.
2135   if (!VerifyOnly) {
2136     // If the initializer expression has a designated initializer, check the
2137     // elements for which a designated initializer is not provided too.
2138     RecordDecl::field_iterator I = HasDesignatedInit ? RD->field_begin()
2139                                                      : Field;
2140     for (RecordDecl::field_iterator E = RD->field_end(); I != E; ++I) {
2141       QualType ET = SemaRef.Context.getBaseElementType(I->getType());
2142       if (checkDestructorReference(ET, IList->getEndLoc(), SemaRef)) {
2143         hadError = true;
2144         return;
2145       }
2146     }
2147   }
2148 
2149   if (Field == FieldEnd || !Field->getType()->isIncompleteArrayType() ||
2150       Index >= IList->getNumInits())
2151     return;
2152 
2153   if (CheckFlexibleArrayInit(Entity, IList->getInit(Index), *Field,
2154                              TopLevelObject)) {
2155     hadError = true;
2156     ++Index;
2157     return;
2158   }
2159 
2160   InitializedEntity MemberEntity =
2161     InitializedEntity::InitializeMember(*Field, &Entity);
2162 
2163   if (isa<InitListExpr>(IList->getInit(Index)))
2164     CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
2165                         StructuredList, StructuredIndex);
2166   else
2167     CheckImplicitInitList(MemberEntity, IList, Field->getType(), Index,
2168                           StructuredList, StructuredIndex);
2169 }
2170 
2171 /// Expand a field designator that refers to a member of an
2172 /// anonymous struct or union into a series of field designators that
2173 /// refers to the field within the appropriate subobject.
2174 ///
2175 static void ExpandAnonymousFieldDesignator(Sema &SemaRef,
2176                                            DesignatedInitExpr *DIE,
2177                                            unsigned DesigIdx,
2178                                            IndirectFieldDecl *IndirectField) {
2179   typedef DesignatedInitExpr::Designator Designator;
2180 
2181   // Build the replacement designators.
2182   SmallVector<Designator, 4> Replacements;
2183   for (IndirectFieldDecl::chain_iterator PI = IndirectField->chain_begin(),
2184        PE = IndirectField->chain_end(); PI != PE; ++PI) {
2185     if (PI + 1 == PE)
2186       Replacements.push_back(Designator((IdentifierInfo *)nullptr,
2187                                     DIE->getDesignator(DesigIdx)->getDotLoc(),
2188                                 DIE->getDesignator(DesigIdx)->getFieldLoc()));
2189     else
2190       Replacements.push_back(Designator((IdentifierInfo *)nullptr,
2191                                         SourceLocation(), SourceLocation()));
2192     assert(isa<FieldDecl>(*PI));
2193     Replacements.back().setField(cast<FieldDecl>(*PI));
2194   }
2195 
2196   // Expand the current designator into the set of replacement
2197   // designators, so we have a full subobject path down to where the
2198   // member of the anonymous struct/union is actually stored.
2199   DIE->ExpandDesignator(SemaRef.Context, DesigIdx, &Replacements[0],
2200                         &Replacements[0] + Replacements.size());
2201 }
2202 
2203 static DesignatedInitExpr *CloneDesignatedInitExpr(Sema &SemaRef,
2204                                                    DesignatedInitExpr *DIE) {
2205   unsigned NumIndexExprs = DIE->getNumSubExprs() - 1;
2206   SmallVector<Expr*, 4> IndexExprs(NumIndexExprs);
2207   for (unsigned I = 0; I < NumIndexExprs; ++I)
2208     IndexExprs[I] = DIE->getSubExpr(I + 1);
2209   return DesignatedInitExpr::Create(SemaRef.Context, DIE->designators(),
2210                                     IndexExprs,
2211                                     DIE->getEqualOrColonLoc(),
2212                                     DIE->usesGNUSyntax(), DIE->getInit());
2213 }
2214 
2215 namespace {
2216 
2217 // Callback to only accept typo corrections that are for field members of
2218 // the given struct or union.
2219 class FieldInitializerValidatorCCC final : public CorrectionCandidateCallback {
2220  public:
2221   explicit FieldInitializerValidatorCCC(RecordDecl *RD)
2222       : Record(RD) {}
2223 
2224   bool ValidateCandidate(const TypoCorrection &candidate) override {
2225     FieldDecl *FD = candidate.getCorrectionDeclAs<FieldDecl>();
2226     return FD && FD->getDeclContext()->getRedeclContext()->Equals(Record);
2227   }
2228 
2229   std::unique_ptr<CorrectionCandidateCallback> clone() override {
2230     return llvm::make_unique<FieldInitializerValidatorCCC>(*this);
2231   }
2232 
2233  private:
2234   RecordDecl *Record;
2235 };
2236 
2237 } // end anonymous namespace
2238 
2239 /// Check the well-formedness of a C99 designated initializer.
2240 ///
2241 /// Determines whether the designated initializer @p DIE, which
2242 /// resides at the given @p Index within the initializer list @p
2243 /// IList, is well-formed for a current object of type @p DeclType
2244 /// (C99 6.7.8). The actual subobject that this designator refers to
2245 /// within the current subobject is returned in either
2246 /// @p NextField or @p NextElementIndex (whichever is appropriate).
2247 ///
2248 /// @param IList  The initializer list in which this designated
2249 /// initializer occurs.
2250 ///
2251 /// @param DIE The designated initializer expression.
2252 ///
2253 /// @param DesigIdx  The index of the current designator.
2254 ///
2255 /// @param CurrentObjectType The type of the "current object" (C99 6.7.8p17),
2256 /// into which the designation in @p DIE should refer.
2257 ///
2258 /// @param NextField  If non-NULL and the first designator in @p DIE is
2259 /// a field, this will be set to the field declaration corresponding
2260 /// to the field named by the designator.
2261 ///
2262 /// @param NextElementIndex  If non-NULL and the first designator in @p
2263 /// DIE is an array designator or GNU array-range designator, this
2264 /// will be set to the last index initialized by this designator.
2265 ///
2266 /// @param Index  Index into @p IList where the designated initializer
2267 /// @p DIE occurs.
2268 ///
2269 /// @param StructuredList  The initializer list expression that
2270 /// describes all of the subobject initializers in the order they'll
2271 /// actually be initialized.
2272 ///
2273 /// @returns true if there was an error, false otherwise.
2274 bool
2275 InitListChecker::CheckDesignatedInitializer(const InitializedEntity &Entity,
2276                                             InitListExpr *IList,
2277                                             DesignatedInitExpr *DIE,
2278                                             unsigned DesigIdx,
2279                                             QualType &CurrentObjectType,
2280                                           RecordDecl::field_iterator *NextField,
2281                                             llvm::APSInt *NextElementIndex,
2282                                             unsigned &Index,
2283                                             InitListExpr *StructuredList,
2284                                             unsigned &StructuredIndex,
2285                                             bool FinishSubobjectInit,
2286                                             bool TopLevelObject) {
2287   if (DesigIdx == DIE->size()) {
2288     // Check the actual initialization for the designated object type.
2289     bool prevHadError = hadError;
2290 
2291     // Temporarily remove the designator expression from the
2292     // initializer list that the child calls see, so that we don't try
2293     // to re-process the designator.
2294     unsigned OldIndex = Index;
2295     IList->setInit(OldIndex, DIE->getInit());
2296 
2297     CheckSubElementType(Entity, IList, CurrentObjectType, Index,
2298                         StructuredList, StructuredIndex);
2299 
2300     // Restore the designated initializer expression in the syntactic
2301     // form of the initializer list.
2302     if (IList->getInit(OldIndex) != DIE->getInit())
2303       DIE->setInit(IList->getInit(OldIndex));
2304     IList->setInit(OldIndex, DIE);
2305 
2306     return hadError && !prevHadError;
2307   }
2308 
2309   DesignatedInitExpr::Designator *D = DIE->getDesignator(DesigIdx);
2310   bool IsFirstDesignator = (DesigIdx == 0);
2311   if (!VerifyOnly) {
2312     assert((IsFirstDesignator || StructuredList) &&
2313            "Need a non-designated initializer list to start from");
2314 
2315     // Determine the structural initializer list that corresponds to the
2316     // current subobject.
2317     if (IsFirstDesignator)
2318       StructuredList = SyntacticToSemantic.lookup(IList);
2319     else {
2320       Expr *ExistingInit = StructuredIndex < StructuredList->getNumInits() ?
2321           StructuredList->getInit(StructuredIndex) : nullptr;
2322       if (!ExistingInit && StructuredList->hasArrayFiller())
2323         ExistingInit = StructuredList->getArrayFiller();
2324 
2325       if (!ExistingInit)
2326         StructuredList = getStructuredSubobjectInit(
2327             IList, Index, CurrentObjectType, StructuredList, StructuredIndex,
2328             SourceRange(D->getBeginLoc(), DIE->getEndLoc()));
2329       else if (InitListExpr *Result = dyn_cast<InitListExpr>(ExistingInit))
2330         StructuredList = Result;
2331       else {
2332         if (DesignatedInitUpdateExpr *E =
2333                 dyn_cast<DesignatedInitUpdateExpr>(ExistingInit))
2334           StructuredList = E->getUpdater();
2335         else {
2336           DesignatedInitUpdateExpr *DIUE = new (SemaRef.Context)
2337               DesignatedInitUpdateExpr(SemaRef.Context, D->getBeginLoc(),
2338                                        ExistingInit, DIE->getEndLoc());
2339           StructuredList->updateInit(SemaRef.Context, StructuredIndex, DIUE);
2340           StructuredList = DIUE->getUpdater();
2341         }
2342 
2343         // We need to check on source range validity because the previous
2344         // initializer does not have to be an explicit initializer. e.g.,
2345         //
2346         // struct P { int a, b; };
2347         // struct PP { struct P p } l = { { .a = 2 }, .p.b = 3 };
2348         //
2349         // There is an overwrite taking place because the first braced initializer
2350         // list "{ .a = 2 }" already provides value for .p.b (which is zero).
2351         if (ExistingInit->getSourceRange().isValid()) {
2352           // We are creating an initializer list that initializes the
2353           // subobjects of the current object, but there was already an
2354           // initialization that completely initialized the current
2355           // subobject, e.g., by a compound literal:
2356           //
2357           // struct X { int a, b; };
2358           // struct X xs[] = { [0] = (struct X) { 1, 2 }, [0].b = 3 };
2359           //
2360           // Here, xs[0].a == 0 and xs[0].b == 3, since the second,
2361           // designated initializer re-initializes the whole
2362           // subobject [0], overwriting previous initializers.
2363           SemaRef.Diag(D->getBeginLoc(),
2364                        diag::warn_subobject_initializer_overrides)
2365               << SourceRange(D->getBeginLoc(), DIE->getEndLoc());
2366 
2367           SemaRef.Diag(ExistingInit->getBeginLoc(),
2368                        diag::note_previous_initializer)
2369               << /*FIXME:has side effects=*/0 << ExistingInit->getSourceRange();
2370         }
2371       }
2372     }
2373     assert(StructuredList && "Expected a structured initializer list");
2374   }
2375 
2376   if (D->isFieldDesignator()) {
2377     // C99 6.7.8p7:
2378     //
2379     //   If a designator has the form
2380     //
2381     //      . identifier
2382     //
2383     //   then the current object (defined below) shall have
2384     //   structure or union type and the identifier shall be the
2385     //   name of a member of that type.
2386     const RecordType *RT = CurrentObjectType->getAs<RecordType>();
2387     if (!RT) {
2388       SourceLocation Loc = D->getDotLoc();
2389       if (Loc.isInvalid())
2390         Loc = D->getFieldLoc();
2391       if (!VerifyOnly)
2392         SemaRef.Diag(Loc, diag::err_field_designator_non_aggr)
2393           << SemaRef.getLangOpts().CPlusPlus << CurrentObjectType;
2394       ++Index;
2395       return true;
2396     }
2397 
2398     FieldDecl *KnownField = D->getField();
2399     if (!KnownField) {
2400       IdentifierInfo *FieldName = D->getFieldName();
2401       DeclContext::lookup_result Lookup = RT->getDecl()->lookup(FieldName);
2402       for (NamedDecl *ND : Lookup) {
2403         if (auto *FD = dyn_cast<FieldDecl>(ND)) {
2404           KnownField = FD;
2405           break;
2406         }
2407         if (auto *IFD = dyn_cast<IndirectFieldDecl>(ND)) {
2408           // In verify mode, don't modify the original.
2409           if (VerifyOnly)
2410             DIE = CloneDesignatedInitExpr(SemaRef, DIE);
2411           ExpandAnonymousFieldDesignator(SemaRef, DIE, DesigIdx, IFD);
2412           D = DIE->getDesignator(DesigIdx);
2413           KnownField = cast<FieldDecl>(*IFD->chain_begin());
2414           break;
2415         }
2416       }
2417       if (!KnownField) {
2418         if (VerifyOnly) {
2419           ++Index;
2420           return true;  // No typo correction when just trying this out.
2421         }
2422 
2423         // Name lookup found something, but it wasn't a field.
2424         if (!Lookup.empty()) {
2425           SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_nonfield)
2426             << FieldName;
2427           SemaRef.Diag(Lookup.front()->getLocation(),
2428                        diag::note_field_designator_found);
2429           ++Index;
2430           return true;
2431         }
2432 
2433         // Name lookup didn't find anything.
2434         // Determine whether this was a typo for another field name.
2435         FieldInitializerValidatorCCC CCC(RT->getDecl());
2436         if (TypoCorrection Corrected = SemaRef.CorrectTypo(
2437                 DeclarationNameInfo(FieldName, D->getFieldLoc()),
2438                 Sema::LookupMemberName, /*Scope=*/nullptr, /*SS=*/nullptr, CCC,
2439                 Sema::CTK_ErrorRecovery, RT->getDecl())) {
2440           SemaRef.diagnoseTypo(
2441               Corrected,
2442               SemaRef.PDiag(diag::err_field_designator_unknown_suggest)
2443                 << FieldName << CurrentObjectType);
2444           KnownField = Corrected.getCorrectionDeclAs<FieldDecl>();
2445           hadError = true;
2446         } else {
2447           // Typo correction didn't find anything.
2448           SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_unknown)
2449             << FieldName << CurrentObjectType;
2450           ++Index;
2451           return true;
2452         }
2453       }
2454     }
2455 
2456     unsigned FieldIndex = 0;
2457 
2458     if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RT->getDecl()))
2459       FieldIndex = CXXRD->getNumBases();
2460 
2461     for (auto *FI : RT->getDecl()->fields()) {
2462       if (FI->isUnnamedBitfield())
2463         continue;
2464       if (declaresSameEntity(KnownField, FI)) {
2465         KnownField = FI;
2466         break;
2467       }
2468       ++FieldIndex;
2469     }
2470 
2471     RecordDecl::field_iterator Field =
2472         RecordDecl::field_iterator(DeclContext::decl_iterator(KnownField));
2473 
2474     // All of the fields of a union are located at the same place in
2475     // the initializer list.
2476     if (RT->getDecl()->isUnion()) {
2477       FieldIndex = 0;
2478       if (!VerifyOnly) {
2479         FieldDecl *CurrentField = StructuredList->getInitializedFieldInUnion();
2480         if (CurrentField && !declaresSameEntity(CurrentField, *Field)) {
2481           assert(StructuredList->getNumInits() == 1
2482                  && "A union should never have more than one initializer!");
2483 
2484           Expr *ExistingInit = StructuredList->getInit(0);
2485           if (ExistingInit) {
2486             // We're about to throw away an initializer, emit warning.
2487             SemaRef.Diag(D->getFieldLoc(),
2488                          diag::warn_initializer_overrides)
2489               << D->getSourceRange();
2490             SemaRef.Diag(ExistingInit->getBeginLoc(),
2491                          diag::note_previous_initializer)
2492                 << /*FIXME:has side effects=*/0
2493                 << ExistingInit->getSourceRange();
2494           }
2495 
2496           // remove existing initializer
2497           StructuredList->resizeInits(SemaRef.Context, 0);
2498           StructuredList->setInitializedFieldInUnion(nullptr);
2499         }
2500 
2501         StructuredList->setInitializedFieldInUnion(*Field);
2502       }
2503     }
2504 
2505     // Make sure we can use this declaration.
2506     bool InvalidUse;
2507     if (VerifyOnly)
2508       InvalidUse = !SemaRef.CanUseDecl(*Field, TreatUnavailableAsInvalid);
2509     else
2510       InvalidUse = SemaRef.DiagnoseUseOfDecl(*Field, D->getFieldLoc());
2511     if (InvalidUse) {
2512       ++Index;
2513       return true;
2514     }
2515 
2516     if (!VerifyOnly) {
2517       // Update the designator with the field declaration.
2518       D->setField(*Field);
2519 
2520       // Make sure that our non-designated initializer list has space
2521       // for a subobject corresponding to this field.
2522       if (FieldIndex >= StructuredList->getNumInits())
2523         StructuredList->resizeInits(SemaRef.Context, FieldIndex + 1);
2524     }
2525 
2526     // This designator names a flexible array member.
2527     if (Field->getType()->isIncompleteArrayType()) {
2528       bool Invalid = false;
2529       if ((DesigIdx + 1) != DIE->size()) {
2530         // We can't designate an object within the flexible array
2531         // member (because GCC doesn't allow it).
2532         if (!VerifyOnly) {
2533           DesignatedInitExpr::Designator *NextD
2534             = DIE->getDesignator(DesigIdx + 1);
2535           SemaRef.Diag(NextD->getBeginLoc(),
2536                        diag::err_designator_into_flexible_array_member)
2537               << SourceRange(NextD->getBeginLoc(), DIE->getEndLoc());
2538           SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
2539             << *Field;
2540         }
2541         Invalid = true;
2542       }
2543 
2544       if (!hadError && !isa<InitListExpr>(DIE->getInit()) &&
2545           !isa<StringLiteral>(DIE->getInit())) {
2546         // The initializer is not an initializer list.
2547         if (!VerifyOnly) {
2548           SemaRef.Diag(DIE->getInit()->getBeginLoc(),
2549                        diag::err_flexible_array_init_needs_braces)
2550               << DIE->getInit()->getSourceRange();
2551           SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
2552             << *Field;
2553         }
2554         Invalid = true;
2555       }
2556 
2557       // Check GNU flexible array initializer.
2558       if (!Invalid && CheckFlexibleArrayInit(Entity, DIE->getInit(), *Field,
2559                                              TopLevelObject))
2560         Invalid = true;
2561 
2562       if (Invalid) {
2563         ++Index;
2564         return true;
2565       }
2566 
2567       // Initialize the array.
2568       bool prevHadError = hadError;
2569       unsigned newStructuredIndex = FieldIndex;
2570       unsigned OldIndex = Index;
2571       IList->setInit(Index, DIE->getInit());
2572 
2573       InitializedEntity MemberEntity =
2574         InitializedEntity::InitializeMember(*Field, &Entity);
2575       CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
2576                           StructuredList, newStructuredIndex);
2577 
2578       IList->setInit(OldIndex, DIE);
2579       if (hadError && !prevHadError) {
2580         ++Field;
2581         ++FieldIndex;
2582         if (NextField)
2583           *NextField = Field;
2584         StructuredIndex = FieldIndex;
2585         return true;
2586       }
2587     } else {
2588       // Recurse to check later designated subobjects.
2589       QualType FieldType = Field->getType();
2590       unsigned newStructuredIndex = FieldIndex;
2591 
2592       InitializedEntity MemberEntity =
2593         InitializedEntity::InitializeMember(*Field, &Entity);
2594       if (CheckDesignatedInitializer(MemberEntity, IList, DIE, DesigIdx + 1,
2595                                      FieldType, nullptr, nullptr, Index,
2596                                      StructuredList, newStructuredIndex,
2597                                      FinishSubobjectInit, false))
2598         return true;
2599     }
2600 
2601     // Find the position of the next field to be initialized in this
2602     // subobject.
2603     ++Field;
2604     ++FieldIndex;
2605 
2606     // If this the first designator, our caller will continue checking
2607     // the rest of this struct/class/union subobject.
2608     if (IsFirstDesignator) {
2609       if (NextField)
2610         *NextField = Field;
2611       StructuredIndex = FieldIndex;
2612       return false;
2613     }
2614 
2615     if (!FinishSubobjectInit)
2616       return false;
2617 
2618     // We've already initialized something in the union; we're done.
2619     if (RT->getDecl()->isUnion())
2620       return hadError;
2621 
2622     // Check the remaining fields within this class/struct/union subobject.
2623     bool prevHadError = hadError;
2624 
2625     auto NoBases =
2626         CXXRecordDecl::base_class_range(CXXRecordDecl::base_class_iterator(),
2627                                         CXXRecordDecl::base_class_iterator());
2628     CheckStructUnionTypes(Entity, IList, CurrentObjectType, NoBases, Field,
2629                           false, Index, StructuredList, FieldIndex);
2630     return hadError && !prevHadError;
2631   }
2632 
2633   // C99 6.7.8p6:
2634   //
2635   //   If a designator has the form
2636   //
2637   //      [ constant-expression ]
2638   //
2639   //   then the current object (defined below) shall have array
2640   //   type and the expression shall be an integer constant
2641   //   expression. If the array is of unknown size, any
2642   //   nonnegative value is valid.
2643   //
2644   // Additionally, cope with the GNU extension that permits
2645   // designators of the form
2646   //
2647   //      [ constant-expression ... constant-expression ]
2648   const ArrayType *AT = SemaRef.Context.getAsArrayType(CurrentObjectType);
2649   if (!AT) {
2650     if (!VerifyOnly)
2651       SemaRef.Diag(D->getLBracketLoc(), diag::err_array_designator_non_array)
2652         << CurrentObjectType;
2653     ++Index;
2654     return true;
2655   }
2656 
2657   Expr *IndexExpr = nullptr;
2658   llvm::APSInt DesignatedStartIndex, DesignatedEndIndex;
2659   if (D->isArrayDesignator()) {
2660     IndexExpr = DIE->getArrayIndex(*D);
2661     DesignatedStartIndex = IndexExpr->EvaluateKnownConstInt(SemaRef.Context);
2662     DesignatedEndIndex = DesignatedStartIndex;
2663   } else {
2664     assert(D->isArrayRangeDesignator() && "Need array-range designator");
2665 
2666     DesignatedStartIndex =
2667       DIE->getArrayRangeStart(*D)->EvaluateKnownConstInt(SemaRef.Context);
2668     DesignatedEndIndex =
2669       DIE->getArrayRangeEnd(*D)->EvaluateKnownConstInt(SemaRef.Context);
2670     IndexExpr = DIE->getArrayRangeEnd(*D);
2671 
2672     // Codegen can't handle evaluating array range designators that have side
2673     // effects, because we replicate the AST value for each initialized element.
2674     // As such, set the sawArrayRangeDesignator() bit if we initialize multiple
2675     // elements with something that has a side effect, so codegen can emit an
2676     // "error unsupported" error instead of miscompiling the app.
2677     if (DesignatedStartIndex.getZExtValue()!=DesignatedEndIndex.getZExtValue()&&
2678         DIE->getInit()->HasSideEffects(SemaRef.Context) && !VerifyOnly)
2679       FullyStructuredList->sawArrayRangeDesignator();
2680   }
2681 
2682   if (isa<ConstantArrayType>(AT)) {
2683     llvm::APSInt MaxElements(cast<ConstantArrayType>(AT)->getSize(), false);
2684     DesignatedStartIndex
2685       = DesignatedStartIndex.extOrTrunc(MaxElements.getBitWidth());
2686     DesignatedStartIndex.setIsUnsigned(MaxElements.isUnsigned());
2687     DesignatedEndIndex
2688       = DesignatedEndIndex.extOrTrunc(MaxElements.getBitWidth());
2689     DesignatedEndIndex.setIsUnsigned(MaxElements.isUnsigned());
2690     if (DesignatedEndIndex >= MaxElements) {
2691       if (!VerifyOnly)
2692         SemaRef.Diag(IndexExpr->getBeginLoc(),
2693                      diag::err_array_designator_too_large)
2694             << DesignatedEndIndex.toString(10) << MaxElements.toString(10)
2695             << IndexExpr->getSourceRange();
2696       ++Index;
2697       return true;
2698     }
2699   } else {
2700     unsigned DesignatedIndexBitWidth =
2701       ConstantArrayType::getMaxSizeBits(SemaRef.Context);
2702     DesignatedStartIndex =
2703       DesignatedStartIndex.extOrTrunc(DesignatedIndexBitWidth);
2704     DesignatedEndIndex =
2705       DesignatedEndIndex.extOrTrunc(DesignatedIndexBitWidth);
2706     DesignatedStartIndex.setIsUnsigned(true);
2707     DesignatedEndIndex.setIsUnsigned(true);
2708   }
2709 
2710   if (!VerifyOnly && StructuredList->isStringLiteralInit()) {
2711     // We're modifying a string literal init; we have to decompose the string
2712     // so we can modify the individual characters.
2713     ASTContext &Context = SemaRef.Context;
2714     Expr *SubExpr = StructuredList->getInit(0)->IgnoreParens();
2715 
2716     // Compute the character type
2717     QualType CharTy = AT->getElementType();
2718 
2719     // Compute the type of the integer literals.
2720     QualType PromotedCharTy = CharTy;
2721     if (CharTy->isPromotableIntegerType())
2722       PromotedCharTy = Context.getPromotedIntegerType(CharTy);
2723     unsigned PromotedCharTyWidth = Context.getTypeSize(PromotedCharTy);
2724 
2725     if (StringLiteral *SL = dyn_cast<StringLiteral>(SubExpr)) {
2726       // Get the length of the string.
2727       uint64_t StrLen = SL->getLength();
2728       if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen))
2729         StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue();
2730       StructuredList->resizeInits(Context, StrLen);
2731 
2732       // Build a literal for each character in the string, and put them into
2733       // the init list.
2734       for (unsigned i = 0, e = StrLen; i != e; ++i) {
2735         llvm::APInt CodeUnit(PromotedCharTyWidth, SL->getCodeUnit(i));
2736         Expr *Init = new (Context) IntegerLiteral(
2737             Context, CodeUnit, PromotedCharTy, SubExpr->getExprLoc());
2738         if (CharTy != PromotedCharTy)
2739           Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast,
2740                                           Init, nullptr, VK_RValue);
2741         StructuredList->updateInit(Context, i, Init);
2742       }
2743     } else {
2744       ObjCEncodeExpr *E = cast<ObjCEncodeExpr>(SubExpr);
2745       std::string Str;
2746       Context.getObjCEncodingForType(E->getEncodedType(), Str);
2747 
2748       // Get the length of the string.
2749       uint64_t StrLen = Str.size();
2750       if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen))
2751         StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue();
2752       StructuredList->resizeInits(Context, StrLen);
2753 
2754       // Build a literal for each character in the string, and put them into
2755       // the init list.
2756       for (unsigned i = 0, e = StrLen; i != e; ++i) {
2757         llvm::APInt CodeUnit(PromotedCharTyWidth, Str[i]);
2758         Expr *Init = new (Context) IntegerLiteral(
2759             Context, CodeUnit, PromotedCharTy, SubExpr->getExprLoc());
2760         if (CharTy != PromotedCharTy)
2761           Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast,
2762                                           Init, nullptr, VK_RValue);
2763         StructuredList->updateInit(Context, i, Init);
2764       }
2765     }
2766   }
2767 
2768   // Make sure that our non-designated initializer list has space
2769   // for a subobject corresponding to this array element.
2770   if (!VerifyOnly &&
2771       DesignatedEndIndex.getZExtValue() >= StructuredList->getNumInits())
2772     StructuredList->resizeInits(SemaRef.Context,
2773                                 DesignatedEndIndex.getZExtValue() + 1);
2774 
2775   // Repeatedly perform subobject initializations in the range
2776   // [DesignatedStartIndex, DesignatedEndIndex].
2777 
2778   // Move to the next designator
2779   unsigned ElementIndex = DesignatedStartIndex.getZExtValue();
2780   unsigned OldIndex = Index;
2781 
2782   InitializedEntity ElementEntity =
2783     InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
2784 
2785   while (DesignatedStartIndex <= DesignatedEndIndex) {
2786     // Recurse to check later designated subobjects.
2787     QualType ElementType = AT->getElementType();
2788     Index = OldIndex;
2789 
2790     ElementEntity.setElementIndex(ElementIndex);
2791     if (CheckDesignatedInitializer(
2792             ElementEntity, IList, DIE, DesigIdx + 1, ElementType, nullptr,
2793             nullptr, Index, StructuredList, ElementIndex,
2794             FinishSubobjectInit && (DesignatedStartIndex == DesignatedEndIndex),
2795             false))
2796       return true;
2797 
2798     // Move to the next index in the array that we'll be initializing.
2799     ++DesignatedStartIndex;
2800     ElementIndex = DesignatedStartIndex.getZExtValue();
2801   }
2802 
2803   // If this the first designator, our caller will continue checking
2804   // the rest of this array subobject.
2805   if (IsFirstDesignator) {
2806     if (NextElementIndex)
2807       *NextElementIndex = DesignatedStartIndex;
2808     StructuredIndex = ElementIndex;
2809     return false;
2810   }
2811 
2812   if (!FinishSubobjectInit)
2813     return false;
2814 
2815   // Check the remaining elements within this array subobject.
2816   bool prevHadError = hadError;
2817   CheckArrayType(Entity, IList, CurrentObjectType, DesignatedStartIndex,
2818                  /*SubobjectIsDesignatorContext=*/false, Index,
2819                  StructuredList, ElementIndex);
2820   return hadError && !prevHadError;
2821 }
2822 
2823 // Get the structured initializer list for a subobject of type
2824 // @p CurrentObjectType.
2825 InitListExpr *
2826 InitListChecker::getStructuredSubobjectInit(InitListExpr *IList, unsigned Index,
2827                                             QualType CurrentObjectType,
2828                                             InitListExpr *StructuredList,
2829                                             unsigned StructuredIndex,
2830                                             SourceRange InitRange,
2831                                             bool IsFullyOverwritten) {
2832   if (VerifyOnly)
2833     return nullptr; // No structured list in verification-only mode.
2834   Expr *ExistingInit = nullptr;
2835   if (!StructuredList)
2836     ExistingInit = SyntacticToSemantic.lookup(IList);
2837   else if (StructuredIndex < StructuredList->getNumInits())
2838     ExistingInit = StructuredList->getInit(StructuredIndex);
2839 
2840   if (InitListExpr *Result = dyn_cast_or_null<InitListExpr>(ExistingInit))
2841     // There might have already been initializers for subobjects of the current
2842     // object, but a subsequent initializer list will overwrite the entirety
2843     // of the current object. (See DR 253 and C99 6.7.8p21). e.g.,
2844     //
2845     // struct P { char x[6]; };
2846     // struct P l = { .x[2] = 'x', .x = { [0] = 'f' } };
2847     //
2848     // The first designated initializer is ignored, and l.x is just "f".
2849     if (!IsFullyOverwritten)
2850       return Result;
2851 
2852   if (ExistingInit) {
2853     // We are creating an initializer list that initializes the
2854     // subobjects of the current object, but there was already an
2855     // initialization that completely initialized the current
2856     // subobject, e.g., by a compound literal:
2857     //
2858     // struct X { int a, b; };
2859     // struct X xs[] = { [0] = (struct X) { 1, 2 }, [0].b = 3 };
2860     //
2861     // Here, xs[0].a == 0 and xs[0].b == 3, since the second,
2862     // designated initializer re-initializes the whole
2863     // subobject [0], overwriting previous initializers.
2864     SemaRef.Diag(InitRange.getBegin(),
2865                  diag::warn_subobject_initializer_overrides)
2866       << InitRange;
2867     SemaRef.Diag(ExistingInit->getBeginLoc(), diag::note_previous_initializer)
2868         << /*FIXME:has side effects=*/0 << ExistingInit->getSourceRange();
2869   }
2870 
2871   InitListExpr *Result
2872     = new (SemaRef.Context) InitListExpr(SemaRef.Context,
2873                                          InitRange.getBegin(), None,
2874                                          InitRange.getEnd());
2875 
2876   QualType ResultType = CurrentObjectType;
2877   if (!ResultType->isArrayType())
2878     ResultType = ResultType.getNonLValueExprType(SemaRef.Context);
2879   Result->setType(ResultType);
2880 
2881   // Pre-allocate storage for the structured initializer list.
2882   unsigned NumElements = 0;
2883   unsigned NumInits = 0;
2884   bool GotNumInits = false;
2885   if (!StructuredList) {
2886     NumInits = IList->getNumInits();
2887     GotNumInits = true;
2888   } else if (Index < IList->getNumInits()) {
2889     if (InitListExpr *SubList = dyn_cast<InitListExpr>(IList->getInit(Index))) {
2890       NumInits = SubList->getNumInits();
2891       GotNumInits = true;
2892     }
2893   }
2894 
2895   if (const ArrayType *AType
2896       = SemaRef.Context.getAsArrayType(CurrentObjectType)) {
2897     if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType)) {
2898       NumElements = CAType->getSize().getZExtValue();
2899       // Simple heuristic so that we don't allocate a very large
2900       // initializer with many empty entries at the end.
2901       if (GotNumInits && NumElements > NumInits)
2902         NumElements = 0;
2903     }
2904   } else if (const VectorType *VType = CurrentObjectType->getAs<VectorType>())
2905     NumElements = VType->getNumElements();
2906   else if (const RecordType *RType = CurrentObjectType->getAs<RecordType>()) {
2907     RecordDecl *RDecl = RType->getDecl();
2908     if (RDecl->isUnion())
2909       NumElements = 1;
2910     else
2911       NumElements = std::distance(RDecl->field_begin(), RDecl->field_end());
2912   }
2913 
2914   Result->reserveInits(SemaRef.Context, NumElements);
2915 
2916   // Link this new initializer list into the structured initializer
2917   // lists.
2918   if (StructuredList)
2919     StructuredList->updateInit(SemaRef.Context, StructuredIndex, Result);
2920   else {
2921     Result->setSyntacticForm(IList);
2922     SyntacticToSemantic[IList] = Result;
2923   }
2924 
2925   return Result;
2926 }
2927 
2928 /// Update the initializer at index @p StructuredIndex within the
2929 /// structured initializer list to the value @p expr.
2930 void InitListChecker::UpdateStructuredListElement(InitListExpr *StructuredList,
2931                                                   unsigned &StructuredIndex,
2932                                                   Expr *expr) {
2933   // No structured initializer list to update
2934   if (!StructuredList)
2935     return;
2936 
2937   if (Expr *PrevInit = StructuredList->updateInit(SemaRef.Context,
2938                                                   StructuredIndex, expr)) {
2939     // This initializer overwrites a previous initializer. Warn.
2940     // We need to check on source range validity because the previous
2941     // initializer does not have to be an explicit initializer.
2942     // struct P { int a, b; };
2943     // struct PP { struct P p } l = { { .a = 2 }, .p.b = 3 };
2944     // There is an overwrite taking place because the first braced initializer
2945     // list "{ .a = 2 }' already provides value for .p.b (which is zero).
2946     if (PrevInit->getSourceRange().isValid()) {
2947       SemaRef.Diag(expr->getBeginLoc(), diag::warn_initializer_overrides)
2948           << expr->getSourceRange();
2949 
2950       SemaRef.Diag(PrevInit->getBeginLoc(), diag::note_previous_initializer)
2951           << /*FIXME:has side effects=*/0 << PrevInit->getSourceRange();
2952     }
2953   }
2954 
2955   ++StructuredIndex;
2956 }
2957 
2958 /// Check that the given Index expression is a valid array designator
2959 /// value. This is essentially just a wrapper around
2960 /// VerifyIntegerConstantExpression that also checks for negative values
2961 /// and produces a reasonable diagnostic if there is a
2962 /// failure. Returns the index expression, possibly with an implicit cast
2963 /// added, on success.  If everything went okay, Value will receive the
2964 /// value of the constant expression.
2965 static ExprResult
2966 CheckArrayDesignatorExpr(Sema &S, Expr *Index, llvm::APSInt &Value) {
2967   SourceLocation Loc = Index->getBeginLoc();
2968 
2969   // Make sure this is an integer constant expression.
2970   ExprResult Result = S.VerifyIntegerConstantExpression(Index, &Value);
2971   if (Result.isInvalid())
2972     return Result;
2973 
2974   if (Value.isSigned() && Value.isNegative())
2975     return S.Diag(Loc, diag::err_array_designator_negative)
2976       << Value.toString(10) << Index->getSourceRange();
2977 
2978   Value.setIsUnsigned(true);
2979   return Result;
2980 }
2981 
2982 ExprResult Sema::ActOnDesignatedInitializer(Designation &Desig,
2983                                             SourceLocation Loc,
2984                                             bool GNUSyntax,
2985                                             ExprResult Init) {
2986   typedef DesignatedInitExpr::Designator ASTDesignator;
2987 
2988   bool Invalid = false;
2989   SmallVector<ASTDesignator, 32> Designators;
2990   SmallVector<Expr *, 32> InitExpressions;
2991 
2992   // Build designators and check array designator expressions.
2993   for (unsigned Idx = 0; Idx < Desig.getNumDesignators(); ++Idx) {
2994     const Designator &D = Desig.getDesignator(Idx);
2995     switch (D.getKind()) {
2996     case Designator::FieldDesignator:
2997       Designators.push_back(ASTDesignator(D.getField(), D.getDotLoc(),
2998                                           D.getFieldLoc()));
2999       break;
3000 
3001     case Designator::ArrayDesignator: {
3002       Expr *Index = static_cast<Expr *>(D.getArrayIndex());
3003       llvm::APSInt IndexValue;
3004       if (!Index->isTypeDependent() && !Index->isValueDependent())
3005         Index = CheckArrayDesignatorExpr(*this, Index, IndexValue).get();
3006       if (!Index)
3007         Invalid = true;
3008       else {
3009         Designators.push_back(ASTDesignator(InitExpressions.size(),
3010                                             D.getLBracketLoc(),
3011                                             D.getRBracketLoc()));
3012         InitExpressions.push_back(Index);
3013       }
3014       break;
3015     }
3016 
3017     case Designator::ArrayRangeDesignator: {
3018       Expr *StartIndex = static_cast<Expr *>(D.getArrayRangeStart());
3019       Expr *EndIndex = static_cast<Expr *>(D.getArrayRangeEnd());
3020       llvm::APSInt StartValue;
3021       llvm::APSInt EndValue;
3022       bool StartDependent = StartIndex->isTypeDependent() ||
3023                             StartIndex->isValueDependent();
3024       bool EndDependent = EndIndex->isTypeDependent() ||
3025                           EndIndex->isValueDependent();
3026       if (!StartDependent)
3027         StartIndex =
3028             CheckArrayDesignatorExpr(*this, StartIndex, StartValue).get();
3029       if (!EndDependent)
3030         EndIndex = CheckArrayDesignatorExpr(*this, EndIndex, EndValue).get();
3031 
3032       if (!StartIndex || !EndIndex)
3033         Invalid = true;
3034       else {
3035         // Make sure we're comparing values with the same bit width.
3036         if (StartDependent || EndDependent) {
3037           // Nothing to compute.
3038         } else if (StartValue.getBitWidth() > EndValue.getBitWidth())
3039           EndValue = EndValue.extend(StartValue.getBitWidth());
3040         else if (StartValue.getBitWidth() < EndValue.getBitWidth())
3041           StartValue = StartValue.extend(EndValue.getBitWidth());
3042 
3043         if (!StartDependent && !EndDependent && EndValue < StartValue) {
3044           Diag(D.getEllipsisLoc(), diag::err_array_designator_empty_range)
3045             << StartValue.toString(10) << EndValue.toString(10)
3046             << StartIndex->getSourceRange() << EndIndex->getSourceRange();
3047           Invalid = true;
3048         } else {
3049           Designators.push_back(ASTDesignator(InitExpressions.size(),
3050                                               D.getLBracketLoc(),
3051                                               D.getEllipsisLoc(),
3052                                               D.getRBracketLoc()));
3053           InitExpressions.push_back(StartIndex);
3054           InitExpressions.push_back(EndIndex);
3055         }
3056       }
3057       break;
3058     }
3059     }
3060   }
3061 
3062   if (Invalid || Init.isInvalid())
3063     return ExprError();
3064 
3065   // Clear out the expressions within the designation.
3066   Desig.ClearExprs(*this);
3067 
3068   DesignatedInitExpr *DIE
3069     = DesignatedInitExpr::Create(Context,
3070                                  Designators,
3071                                  InitExpressions, Loc, GNUSyntax,
3072                                  Init.getAs<Expr>());
3073 
3074   if (!getLangOpts().C99)
3075     Diag(DIE->getBeginLoc(), diag::ext_designated_init)
3076         << DIE->getSourceRange();
3077 
3078   return DIE;
3079 }
3080 
3081 //===----------------------------------------------------------------------===//
3082 // Initialization entity
3083 //===----------------------------------------------------------------------===//
3084 
3085 InitializedEntity::InitializedEntity(ASTContext &Context, unsigned Index,
3086                                      const InitializedEntity &Parent)
3087   : Parent(&Parent), Index(Index)
3088 {
3089   if (const ArrayType *AT = Context.getAsArrayType(Parent.getType())) {
3090     Kind = EK_ArrayElement;
3091     Type = AT->getElementType();
3092   } else if (const VectorType *VT = Parent.getType()->getAs<VectorType>()) {
3093     Kind = EK_VectorElement;
3094     Type = VT->getElementType();
3095   } else {
3096     const ComplexType *CT = Parent.getType()->getAs<ComplexType>();
3097     assert(CT && "Unexpected type");
3098     Kind = EK_ComplexElement;
3099     Type = CT->getElementType();
3100   }
3101 }
3102 
3103 InitializedEntity
3104 InitializedEntity::InitializeBase(ASTContext &Context,
3105                                   const CXXBaseSpecifier *Base,
3106                                   bool IsInheritedVirtualBase,
3107                                   const InitializedEntity *Parent) {
3108   InitializedEntity Result;
3109   Result.Kind = EK_Base;
3110   Result.Parent = Parent;
3111   Result.Base = reinterpret_cast<uintptr_t>(Base);
3112   if (IsInheritedVirtualBase)
3113     Result.Base |= 0x01;
3114 
3115   Result.Type = Base->getType();
3116   return Result;
3117 }
3118 
3119 DeclarationName InitializedEntity::getName() const {
3120   switch (getKind()) {
3121   case EK_Parameter:
3122   case EK_Parameter_CF_Audited: {
3123     ParmVarDecl *D = reinterpret_cast<ParmVarDecl*>(Parameter & ~0x1);
3124     return (D ? D->getDeclName() : DeclarationName());
3125   }
3126 
3127   case EK_Variable:
3128   case EK_Member:
3129   case EK_Binding:
3130     return Variable.VariableOrMember->getDeclName();
3131 
3132   case EK_LambdaCapture:
3133     return DeclarationName(Capture.VarID);
3134 
3135   case EK_Result:
3136   case EK_StmtExprResult:
3137   case EK_Exception:
3138   case EK_New:
3139   case EK_Temporary:
3140   case EK_Base:
3141   case EK_Delegating:
3142   case EK_ArrayElement:
3143   case EK_VectorElement:
3144   case EK_ComplexElement:
3145   case EK_BlockElement:
3146   case EK_LambdaToBlockConversionBlockElement:
3147   case EK_CompoundLiteralInit:
3148   case EK_RelatedResult:
3149     return DeclarationName();
3150   }
3151 
3152   llvm_unreachable("Invalid EntityKind!");
3153 }
3154 
3155 ValueDecl *InitializedEntity::getDecl() const {
3156   switch (getKind()) {
3157   case EK_Variable:
3158   case EK_Member:
3159   case EK_Binding:
3160     return Variable.VariableOrMember;
3161 
3162   case EK_Parameter:
3163   case EK_Parameter_CF_Audited:
3164     return reinterpret_cast<ParmVarDecl*>(Parameter & ~0x1);
3165 
3166   case EK_Result:
3167   case EK_StmtExprResult:
3168   case EK_Exception:
3169   case EK_New:
3170   case EK_Temporary:
3171   case EK_Base:
3172   case EK_Delegating:
3173   case EK_ArrayElement:
3174   case EK_VectorElement:
3175   case EK_ComplexElement:
3176   case EK_BlockElement:
3177   case EK_LambdaToBlockConversionBlockElement:
3178   case EK_LambdaCapture:
3179   case EK_CompoundLiteralInit:
3180   case EK_RelatedResult:
3181     return nullptr;
3182   }
3183 
3184   llvm_unreachable("Invalid EntityKind!");
3185 }
3186 
3187 bool InitializedEntity::allowsNRVO() const {
3188   switch (getKind()) {
3189   case EK_Result:
3190   case EK_Exception:
3191     return LocAndNRVO.NRVO;
3192 
3193   case EK_StmtExprResult:
3194   case EK_Variable:
3195   case EK_Parameter:
3196   case EK_Parameter_CF_Audited:
3197   case EK_Member:
3198   case EK_Binding:
3199   case EK_New:
3200   case EK_Temporary:
3201   case EK_CompoundLiteralInit:
3202   case EK_Base:
3203   case EK_Delegating:
3204   case EK_ArrayElement:
3205   case EK_VectorElement:
3206   case EK_ComplexElement:
3207   case EK_BlockElement:
3208   case EK_LambdaToBlockConversionBlockElement:
3209   case EK_LambdaCapture:
3210   case EK_RelatedResult:
3211     break;
3212   }
3213 
3214   return false;
3215 }
3216 
3217 unsigned InitializedEntity::dumpImpl(raw_ostream &OS) const {
3218   assert(getParent() != this);
3219   unsigned Depth = getParent() ? getParent()->dumpImpl(OS) : 0;
3220   for (unsigned I = 0; I != Depth; ++I)
3221     OS << "`-";
3222 
3223   switch (getKind()) {
3224   case EK_Variable: OS << "Variable"; break;
3225   case EK_Parameter: OS << "Parameter"; break;
3226   case EK_Parameter_CF_Audited: OS << "CF audited function Parameter";
3227     break;
3228   case EK_Result: OS << "Result"; break;
3229   case EK_StmtExprResult: OS << "StmtExprResult"; break;
3230   case EK_Exception: OS << "Exception"; break;
3231   case EK_Member: OS << "Member"; break;
3232   case EK_Binding: OS << "Binding"; break;
3233   case EK_New: OS << "New"; break;
3234   case EK_Temporary: OS << "Temporary"; break;
3235   case EK_CompoundLiteralInit: OS << "CompoundLiteral";break;
3236   case EK_RelatedResult: OS << "RelatedResult"; break;
3237   case EK_Base: OS << "Base"; break;
3238   case EK_Delegating: OS << "Delegating"; break;
3239   case EK_ArrayElement: OS << "ArrayElement " << Index; break;
3240   case EK_VectorElement: OS << "VectorElement " << Index; break;
3241   case EK_ComplexElement: OS << "ComplexElement " << Index; break;
3242   case EK_BlockElement: OS << "Block"; break;
3243   case EK_LambdaToBlockConversionBlockElement:
3244     OS << "Block (lambda)";
3245     break;
3246   case EK_LambdaCapture:
3247     OS << "LambdaCapture ";
3248     OS << DeclarationName(Capture.VarID);
3249     break;
3250   }
3251 
3252   if (auto *D = getDecl()) {
3253     OS << " ";
3254     D->printQualifiedName(OS);
3255   }
3256 
3257   OS << " '" << getType().getAsString() << "'\n";
3258 
3259   return Depth + 1;
3260 }
3261 
3262 LLVM_DUMP_METHOD void InitializedEntity::dump() const {
3263   dumpImpl(llvm::errs());
3264 }
3265 
3266 //===----------------------------------------------------------------------===//
3267 // Initialization sequence
3268 //===----------------------------------------------------------------------===//
3269 
3270 void InitializationSequence::Step::Destroy() {
3271   switch (Kind) {
3272   case SK_ResolveAddressOfOverloadedFunction:
3273   case SK_CastDerivedToBaseRValue:
3274   case SK_CastDerivedToBaseXValue:
3275   case SK_CastDerivedToBaseLValue:
3276   case SK_BindReference:
3277   case SK_BindReferenceToTemporary:
3278   case SK_FinalCopy:
3279   case SK_ExtraneousCopyToTemporary:
3280   case SK_UserConversion:
3281   case SK_QualificationConversionRValue:
3282   case SK_QualificationConversionXValue:
3283   case SK_QualificationConversionLValue:
3284   case SK_AtomicConversion:
3285   case SK_ListInitialization:
3286   case SK_UnwrapInitList:
3287   case SK_RewrapInitList:
3288   case SK_ConstructorInitialization:
3289   case SK_ConstructorInitializationFromList:
3290   case SK_ZeroInitialization:
3291   case SK_CAssignment:
3292   case SK_StringInit:
3293   case SK_ObjCObjectConversion:
3294   case SK_ArrayLoopIndex:
3295   case SK_ArrayLoopInit:
3296   case SK_ArrayInit:
3297   case SK_GNUArrayInit:
3298   case SK_ParenthesizedArrayInit:
3299   case SK_PassByIndirectCopyRestore:
3300   case SK_PassByIndirectRestore:
3301   case SK_ProduceObjCObject:
3302   case SK_StdInitializerList:
3303   case SK_StdInitializerListConstructorCall:
3304   case SK_OCLSamplerInit:
3305   case SK_OCLZeroOpaqueType:
3306     break;
3307 
3308   case SK_ConversionSequence:
3309   case SK_ConversionSequenceNoNarrowing:
3310     delete ICS;
3311   }
3312 }
3313 
3314 bool InitializationSequence::isDirectReferenceBinding() const {
3315   // There can be some lvalue adjustments after the SK_BindReference step.
3316   for (auto I = Steps.rbegin(); I != Steps.rend(); ++I) {
3317     if (I->Kind == SK_BindReference)
3318       return true;
3319     if (I->Kind == SK_BindReferenceToTemporary)
3320       return false;
3321   }
3322   return false;
3323 }
3324 
3325 bool InitializationSequence::isAmbiguous() const {
3326   if (!Failed())
3327     return false;
3328 
3329   switch (getFailureKind()) {
3330   case FK_TooManyInitsForReference:
3331   case FK_ParenthesizedListInitForReference:
3332   case FK_ArrayNeedsInitList:
3333   case FK_ArrayNeedsInitListOrStringLiteral:
3334   case FK_ArrayNeedsInitListOrWideStringLiteral:
3335   case FK_NarrowStringIntoWideCharArray:
3336   case FK_WideStringIntoCharArray:
3337   case FK_IncompatWideStringIntoWideChar:
3338   case FK_PlainStringIntoUTF8Char:
3339   case FK_UTF8StringIntoPlainChar:
3340   case FK_AddressOfOverloadFailed: // FIXME: Could do better
3341   case FK_NonConstLValueReferenceBindingToTemporary:
3342   case FK_NonConstLValueReferenceBindingToBitfield:
3343   case FK_NonConstLValueReferenceBindingToVectorElement:
3344   case FK_NonConstLValueReferenceBindingToUnrelated:
3345   case FK_RValueReferenceBindingToLValue:
3346   case FK_ReferenceAddrspaceMismatchTemporary:
3347   case FK_ReferenceInitDropsQualifiers:
3348   case FK_ReferenceInitFailed:
3349   case FK_ConversionFailed:
3350   case FK_ConversionFromPropertyFailed:
3351   case FK_TooManyInitsForScalar:
3352   case FK_ParenthesizedListInitForScalar:
3353   case FK_ReferenceBindingToInitList:
3354   case FK_InitListBadDestinationType:
3355   case FK_DefaultInitOfConst:
3356   case FK_Incomplete:
3357   case FK_ArrayTypeMismatch:
3358   case FK_NonConstantArrayInit:
3359   case FK_ListInitializationFailed:
3360   case FK_VariableLengthArrayHasInitializer:
3361   case FK_PlaceholderType:
3362   case FK_ExplicitConstructor:
3363   case FK_AddressOfUnaddressableFunction:
3364     return false;
3365 
3366   case FK_ReferenceInitOverloadFailed:
3367   case FK_UserConversionOverloadFailed:
3368   case FK_ConstructorOverloadFailed:
3369   case FK_ListConstructorOverloadFailed:
3370     return FailedOverloadResult == OR_Ambiguous;
3371   }
3372 
3373   llvm_unreachable("Invalid EntityKind!");
3374 }
3375 
3376 bool InitializationSequence::isConstructorInitialization() const {
3377   return !Steps.empty() && Steps.back().Kind == SK_ConstructorInitialization;
3378 }
3379 
3380 void
3381 InitializationSequence
3382 ::AddAddressOverloadResolutionStep(FunctionDecl *Function,
3383                                    DeclAccessPair Found,
3384                                    bool HadMultipleCandidates) {
3385   Step S;
3386   S.Kind = SK_ResolveAddressOfOverloadedFunction;
3387   S.Type = Function->getType();
3388   S.Function.HadMultipleCandidates = HadMultipleCandidates;
3389   S.Function.Function = Function;
3390   S.Function.FoundDecl = Found;
3391   Steps.push_back(S);
3392 }
3393 
3394 void InitializationSequence::AddDerivedToBaseCastStep(QualType BaseType,
3395                                                       ExprValueKind VK) {
3396   Step S;
3397   switch (VK) {
3398   case VK_RValue: S.Kind = SK_CastDerivedToBaseRValue; break;
3399   case VK_XValue: S.Kind = SK_CastDerivedToBaseXValue; break;
3400   case VK_LValue: S.Kind = SK_CastDerivedToBaseLValue; break;
3401   }
3402   S.Type = BaseType;
3403   Steps.push_back(S);
3404 }
3405 
3406 void InitializationSequence::AddReferenceBindingStep(QualType T,
3407                                                      bool BindingTemporary) {
3408   Step S;
3409   S.Kind = BindingTemporary? SK_BindReferenceToTemporary : SK_BindReference;
3410   S.Type = T;
3411   Steps.push_back(S);
3412 }
3413 
3414 void InitializationSequence::AddFinalCopy(QualType T) {
3415   Step S;
3416   S.Kind = SK_FinalCopy;
3417   S.Type = T;
3418   Steps.push_back(S);
3419 }
3420 
3421 void InitializationSequence::AddExtraneousCopyToTemporary(QualType T) {
3422   Step S;
3423   S.Kind = SK_ExtraneousCopyToTemporary;
3424   S.Type = T;
3425   Steps.push_back(S);
3426 }
3427 
3428 void
3429 InitializationSequence::AddUserConversionStep(FunctionDecl *Function,
3430                                               DeclAccessPair FoundDecl,
3431                                               QualType T,
3432                                               bool HadMultipleCandidates) {
3433   Step S;
3434   S.Kind = SK_UserConversion;
3435   S.Type = T;
3436   S.Function.HadMultipleCandidates = HadMultipleCandidates;
3437   S.Function.Function = Function;
3438   S.Function.FoundDecl = FoundDecl;
3439   Steps.push_back(S);
3440 }
3441 
3442 void InitializationSequence::AddQualificationConversionStep(QualType Ty,
3443                                                             ExprValueKind VK) {
3444   Step S;
3445   S.Kind = SK_QualificationConversionRValue; // work around a gcc warning
3446   switch (VK) {
3447   case VK_RValue:
3448     S.Kind = SK_QualificationConversionRValue;
3449     break;
3450   case VK_XValue:
3451     S.Kind = SK_QualificationConversionXValue;
3452     break;
3453   case VK_LValue:
3454     S.Kind = SK_QualificationConversionLValue;
3455     break;
3456   }
3457   S.Type = Ty;
3458   Steps.push_back(S);
3459 }
3460 
3461 void InitializationSequence::AddAtomicConversionStep(QualType Ty) {
3462   Step S;
3463   S.Kind = SK_AtomicConversion;
3464   S.Type = Ty;
3465   Steps.push_back(S);
3466 }
3467 
3468 void InitializationSequence::AddConversionSequenceStep(
3469     const ImplicitConversionSequence &ICS, QualType T,
3470     bool TopLevelOfInitList) {
3471   Step S;
3472   S.Kind = TopLevelOfInitList ? SK_ConversionSequenceNoNarrowing
3473                               : SK_ConversionSequence;
3474   S.Type = T;
3475   S.ICS = new ImplicitConversionSequence(ICS);
3476   Steps.push_back(S);
3477 }
3478 
3479 void InitializationSequence::AddListInitializationStep(QualType T) {
3480   Step S;
3481   S.Kind = SK_ListInitialization;
3482   S.Type = T;
3483   Steps.push_back(S);
3484 }
3485 
3486 void InitializationSequence::AddConstructorInitializationStep(
3487     DeclAccessPair FoundDecl, CXXConstructorDecl *Constructor, QualType T,
3488     bool HadMultipleCandidates, bool FromInitList, bool AsInitList) {
3489   Step S;
3490   S.Kind = FromInitList ? AsInitList ? SK_StdInitializerListConstructorCall
3491                                      : SK_ConstructorInitializationFromList
3492                         : SK_ConstructorInitialization;
3493   S.Type = T;
3494   S.Function.HadMultipleCandidates = HadMultipleCandidates;
3495   S.Function.Function = Constructor;
3496   S.Function.FoundDecl = FoundDecl;
3497   Steps.push_back(S);
3498 }
3499 
3500 void InitializationSequence::AddZeroInitializationStep(QualType T) {
3501   Step S;
3502   S.Kind = SK_ZeroInitialization;
3503   S.Type = T;
3504   Steps.push_back(S);
3505 }
3506 
3507 void InitializationSequence::AddCAssignmentStep(QualType T) {
3508   Step S;
3509   S.Kind = SK_CAssignment;
3510   S.Type = T;
3511   Steps.push_back(S);
3512 }
3513 
3514 void InitializationSequence::AddStringInitStep(QualType T) {
3515   Step S;
3516   S.Kind = SK_StringInit;
3517   S.Type = T;
3518   Steps.push_back(S);
3519 }
3520 
3521 void InitializationSequence::AddObjCObjectConversionStep(QualType T) {
3522   Step S;
3523   S.Kind = SK_ObjCObjectConversion;
3524   S.Type = T;
3525   Steps.push_back(S);
3526 }
3527 
3528 void InitializationSequence::AddArrayInitStep(QualType T, bool IsGNUExtension) {
3529   Step S;
3530   S.Kind = IsGNUExtension ? SK_GNUArrayInit : SK_ArrayInit;
3531   S.Type = T;
3532   Steps.push_back(S);
3533 }
3534 
3535 void InitializationSequence::AddArrayInitLoopStep(QualType T, QualType EltT) {
3536   Step S;
3537   S.Kind = SK_ArrayLoopIndex;
3538   S.Type = EltT;
3539   Steps.insert(Steps.begin(), S);
3540 
3541   S.Kind = SK_ArrayLoopInit;
3542   S.Type = T;
3543   Steps.push_back(S);
3544 }
3545 
3546 void InitializationSequence::AddParenthesizedArrayInitStep(QualType T) {
3547   Step S;
3548   S.Kind = SK_ParenthesizedArrayInit;
3549   S.Type = T;
3550   Steps.push_back(S);
3551 }
3552 
3553 void InitializationSequence::AddPassByIndirectCopyRestoreStep(QualType type,
3554                                                               bool shouldCopy) {
3555   Step s;
3556   s.Kind = (shouldCopy ? SK_PassByIndirectCopyRestore
3557                        : SK_PassByIndirectRestore);
3558   s.Type = type;
3559   Steps.push_back(s);
3560 }
3561 
3562 void InitializationSequence::AddProduceObjCObjectStep(QualType T) {
3563   Step S;
3564   S.Kind = SK_ProduceObjCObject;
3565   S.Type = T;
3566   Steps.push_back(S);
3567 }
3568 
3569 void InitializationSequence::AddStdInitializerListConstructionStep(QualType T) {
3570   Step S;
3571   S.Kind = SK_StdInitializerList;
3572   S.Type = T;
3573   Steps.push_back(S);
3574 }
3575 
3576 void InitializationSequence::AddOCLSamplerInitStep(QualType T) {
3577   Step S;
3578   S.Kind = SK_OCLSamplerInit;
3579   S.Type = T;
3580   Steps.push_back(S);
3581 }
3582 
3583 void InitializationSequence::AddOCLZeroOpaqueTypeStep(QualType T) {
3584   Step S;
3585   S.Kind = SK_OCLZeroOpaqueType;
3586   S.Type = T;
3587   Steps.push_back(S);
3588 }
3589 
3590 void InitializationSequence::RewrapReferenceInitList(QualType T,
3591                                                      InitListExpr *Syntactic) {
3592   assert(Syntactic->getNumInits() == 1 &&
3593          "Can only rewrap trivial init lists.");
3594   Step S;
3595   S.Kind = SK_UnwrapInitList;
3596   S.Type = Syntactic->getInit(0)->getType();
3597   Steps.insert(Steps.begin(), S);
3598 
3599   S.Kind = SK_RewrapInitList;
3600   S.Type = T;
3601   S.WrappingSyntacticList = Syntactic;
3602   Steps.push_back(S);
3603 }
3604 
3605 void InitializationSequence::SetOverloadFailure(FailureKind Failure,
3606                                                 OverloadingResult Result) {
3607   setSequenceKind(FailedSequence);
3608   this->Failure = Failure;
3609   this->FailedOverloadResult = Result;
3610 }
3611 
3612 //===----------------------------------------------------------------------===//
3613 // Attempt initialization
3614 //===----------------------------------------------------------------------===//
3615 
3616 /// Tries to add a zero initializer. Returns true if that worked.
3617 static bool
3618 maybeRecoverWithZeroInitialization(Sema &S, InitializationSequence &Sequence,
3619                                    const InitializedEntity &Entity) {
3620   if (Entity.getKind() != InitializedEntity::EK_Variable)
3621     return false;
3622 
3623   VarDecl *VD = cast<VarDecl>(Entity.getDecl());
3624   if (VD->getInit() || VD->getEndLoc().isMacroID())
3625     return false;
3626 
3627   QualType VariableTy = VD->getType().getCanonicalType();
3628   SourceLocation Loc = S.getLocForEndOfToken(VD->getEndLoc());
3629   std::string Init = S.getFixItZeroInitializerForType(VariableTy, Loc);
3630   if (!Init.empty()) {
3631     Sequence.AddZeroInitializationStep(Entity.getType());
3632     Sequence.SetZeroInitializationFixit(Init, Loc);
3633     return true;
3634   }
3635   return false;
3636 }
3637 
3638 static void MaybeProduceObjCObject(Sema &S,
3639                                    InitializationSequence &Sequence,
3640                                    const InitializedEntity &Entity) {
3641   if (!S.getLangOpts().ObjCAutoRefCount) return;
3642 
3643   /// When initializing a parameter, produce the value if it's marked
3644   /// __attribute__((ns_consumed)).
3645   if (Entity.isParameterKind()) {
3646     if (!Entity.isParameterConsumed())
3647       return;
3648 
3649     assert(Entity.getType()->isObjCRetainableType() &&
3650            "consuming an object of unretainable type?");
3651     Sequence.AddProduceObjCObjectStep(Entity.getType());
3652 
3653   /// When initializing a return value, if the return type is a
3654   /// retainable type, then returns need to immediately retain the
3655   /// object.  If an autorelease is required, it will be done at the
3656   /// last instant.
3657   } else if (Entity.getKind() == InitializedEntity::EK_Result ||
3658              Entity.getKind() == InitializedEntity::EK_StmtExprResult) {
3659     if (!Entity.getType()->isObjCRetainableType())
3660       return;
3661 
3662     Sequence.AddProduceObjCObjectStep(Entity.getType());
3663   }
3664 }
3665 
3666 static void TryListInitialization(Sema &S,
3667                                   const InitializedEntity &Entity,
3668                                   const InitializationKind &Kind,
3669                                   InitListExpr *InitList,
3670                                   InitializationSequence &Sequence,
3671                                   bool TreatUnavailableAsInvalid);
3672 
3673 /// When initializing from init list via constructor, handle
3674 /// initialization of an object of type std::initializer_list<T>.
3675 ///
3676 /// \return true if we have handled initialization of an object of type
3677 /// std::initializer_list<T>, false otherwise.
3678 static bool TryInitializerListConstruction(Sema &S,
3679                                            InitListExpr *List,
3680                                            QualType DestType,
3681                                            InitializationSequence &Sequence,
3682                                            bool TreatUnavailableAsInvalid) {
3683   QualType E;
3684   if (!S.isStdInitializerList(DestType, &E))
3685     return false;
3686 
3687   if (!S.isCompleteType(List->getExprLoc(), E)) {
3688     Sequence.setIncompleteTypeFailure(E);
3689     return true;
3690   }
3691 
3692   // Try initializing a temporary array from the init list.
3693   QualType ArrayType = S.Context.getConstantArrayType(
3694       E.withConst(), llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()),
3695                                  List->getNumInits()),
3696       clang::ArrayType::Normal, 0);
3697   InitializedEntity HiddenArray =
3698       InitializedEntity::InitializeTemporary(ArrayType);
3699   InitializationKind Kind = InitializationKind::CreateDirectList(
3700       List->getExprLoc(), List->getBeginLoc(), List->getEndLoc());
3701   TryListInitialization(S, HiddenArray, Kind, List, Sequence,
3702                         TreatUnavailableAsInvalid);
3703   if (Sequence)
3704     Sequence.AddStdInitializerListConstructionStep(DestType);
3705   return true;
3706 }
3707 
3708 /// Determine if the constructor has the signature of a copy or move
3709 /// constructor for the type T of the class in which it was found. That is,
3710 /// determine if its first parameter is of type T or reference to (possibly
3711 /// cv-qualified) T.
3712 static bool hasCopyOrMoveCtorParam(ASTContext &Ctx,
3713                                    const ConstructorInfo &Info) {
3714   if (Info.Constructor->getNumParams() == 0)
3715     return false;
3716 
3717   QualType ParmT =
3718       Info.Constructor->getParamDecl(0)->getType().getNonReferenceType();
3719   QualType ClassT =
3720       Ctx.getRecordType(cast<CXXRecordDecl>(Info.FoundDecl->getDeclContext()));
3721 
3722   return Ctx.hasSameUnqualifiedType(ParmT, ClassT);
3723 }
3724 
3725 static OverloadingResult
3726 ResolveConstructorOverload(Sema &S, SourceLocation DeclLoc,
3727                            MultiExprArg Args,
3728                            OverloadCandidateSet &CandidateSet,
3729                            QualType DestType,
3730                            DeclContext::lookup_result Ctors,
3731                            OverloadCandidateSet::iterator &Best,
3732                            bool CopyInitializing, bool AllowExplicit,
3733                            bool OnlyListConstructors, bool IsListInit,
3734                            bool SecondStepOfCopyInit = false) {
3735   CandidateSet.clear(OverloadCandidateSet::CSK_InitByConstructor);
3736 
3737   for (NamedDecl *D : Ctors) {
3738     auto Info = getConstructorInfo(D);
3739     if (!Info.Constructor || Info.Constructor->isInvalidDecl())
3740       continue;
3741 
3742     if (!AllowExplicit && Info.Constructor->isExplicit())
3743       continue;
3744 
3745     if (OnlyListConstructors && !S.isInitListConstructor(Info.Constructor))
3746       continue;
3747 
3748     // C++11 [over.best.ics]p4:
3749     //   ... and the constructor or user-defined conversion function is a
3750     //   candidate by
3751     //   - 13.3.1.3, when the argument is the temporary in the second step
3752     //     of a class copy-initialization, or
3753     //   - 13.3.1.4, 13.3.1.5, or 13.3.1.6 (in all cases), [not handled here]
3754     //   - the second phase of 13.3.1.7 when the initializer list has exactly
3755     //     one element that is itself an initializer list, and the target is
3756     //     the first parameter of a constructor of class X, and the conversion
3757     //     is to X or reference to (possibly cv-qualified X),
3758     //   user-defined conversion sequences are not considered.
3759     bool SuppressUserConversions =
3760         SecondStepOfCopyInit ||
3761         (IsListInit && Args.size() == 1 && isa<InitListExpr>(Args[0]) &&
3762          hasCopyOrMoveCtorParam(S.Context, Info));
3763 
3764     if (Info.ConstructorTmpl)
3765       S.AddTemplateOverloadCandidate(
3766           Info.ConstructorTmpl, Info.FoundDecl,
3767           /*ExplicitArgs*/ nullptr, Args, CandidateSet, SuppressUserConversions,
3768           /*PartialOverloading=*/false, AllowExplicit);
3769     else {
3770       // C++ [over.match.copy]p1:
3771       //   - When initializing a temporary to be bound to the first parameter
3772       //     of a constructor [for type T] that takes a reference to possibly
3773       //     cv-qualified T as its first argument, called with a single
3774       //     argument in the context of direct-initialization, explicit
3775       //     conversion functions are also considered.
3776       // FIXME: What if a constructor template instantiates to such a signature?
3777       bool AllowExplicitConv = AllowExplicit && !CopyInitializing &&
3778                                Args.size() == 1 &&
3779                                hasCopyOrMoveCtorParam(S.Context, Info);
3780       S.AddOverloadCandidate(Info.Constructor, Info.FoundDecl, Args,
3781                              CandidateSet, SuppressUserConversions,
3782                              /*PartialOverloading=*/false, AllowExplicit,
3783                              AllowExplicitConv);
3784     }
3785   }
3786 
3787   // FIXME: Work around a bug in C++17 guaranteed copy elision.
3788   //
3789   // When initializing an object of class type T by constructor
3790   // ([over.match.ctor]) or by list-initialization ([over.match.list])
3791   // from a single expression of class type U, conversion functions of
3792   // U that convert to the non-reference type cv T are candidates.
3793   // Explicit conversion functions are only candidates during
3794   // direct-initialization.
3795   //
3796   // Note: SecondStepOfCopyInit is only ever true in this case when
3797   // evaluating whether to produce a C++98 compatibility warning.
3798   if (S.getLangOpts().CPlusPlus17 && Args.size() == 1 &&
3799       !SecondStepOfCopyInit) {
3800     Expr *Initializer = Args[0];
3801     auto *SourceRD = Initializer->getType()->getAsCXXRecordDecl();
3802     if (SourceRD && S.isCompleteType(DeclLoc, Initializer->getType())) {
3803       const auto &Conversions = SourceRD->getVisibleConversionFunctions();
3804       for (auto I = Conversions.begin(), E = Conversions.end(); I != E; ++I) {
3805         NamedDecl *D = *I;
3806         CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
3807         D = D->getUnderlyingDecl();
3808 
3809         FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D);
3810         CXXConversionDecl *Conv;
3811         if (ConvTemplate)
3812           Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
3813         else
3814           Conv = cast<CXXConversionDecl>(D);
3815 
3816         if (AllowExplicit || !Conv->isExplicit()) {
3817           if (ConvTemplate)
3818             S.AddTemplateConversionCandidate(
3819                 ConvTemplate, I.getPair(), ActingDC, Initializer, DestType,
3820                 CandidateSet, AllowExplicit, AllowExplicit,
3821                 /*AllowResultConversion*/ false);
3822           else
3823             S.AddConversionCandidate(Conv, I.getPair(), ActingDC, Initializer,
3824                                      DestType, CandidateSet, AllowExplicit,
3825                                      AllowExplicit,
3826                                      /*AllowResultConversion*/ false);
3827         }
3828       }
3829     }
3830   }
3831 
3832   // Perform overload resolution and return the result.
3833   return CandidateSet.BestViableFunction(S, DeclLoc, Best);
3834 }
3835 
3836 /// Attempt initialization by constructor (C++ [dcl.init]), which
3837 /// enumerates the constructors of the initialized entity and performs overload
3838 /// resolution to select the best.
3839 /// \param DestType       The destination class type.
3840 /// \param DestArrayType  The destination type, which is either DestType or
3841 ///                       a (possibly multidimensional) array of DestType.
3842 /// \param IsListInit     Is this list-initialization?
3843 /// \param IsInitListCopy Is this non-list-initialization resulting from a
3844 ///                       list-initialization from {x} where x is the same
3845 ///                       type as the entity?
3846 static void TryConstructorInitialization(Sema &S,
3847                                          const InitializedEntity &Entity,
3848                                          const InitializationKind &Kind,
3849                                          MultiExprArg Args, QualType DestType,
3850                                          QualType DestArrayType,
3851                                          InitializationSequence &Sequence,
3852                                          bool IsListInit = false,
3853                                          bool IsInitListCopy = false) {
3854   assert(((!IsListInit && !IsInitListCopy) ||
3855           (Args.size() == 1 && isa<InitListExpr>(Args[0]))) &&
3856          "IsListInit/IsInitListCopy must come with a single initializer list "
3857          "argument.");
3858   InitListExpr *ILE =
3859       (IsListInit || IsInitListCopy) ? cast<InitListExpr>(Args[0]) : nullptr;
3860   MultiExprArg UnwrappedArgs =
3861       ILE ? MultiExprArg(ILE->getInits(), ILE->getNumInits()) : Args;
3862 
3863   // The type we're constructing needs to be complete.
3864   if (!S.isCompleteType(Kind.getLocation(), DestType)) {
3865     Sequence.setIncompleteTypeFailure(DestType);
3866     return;
3867   }
3868 
3869   // C++17 [dcl.init]p17:
3870   //     - If the initializer expression is a prvalue and the cv-unqualified
3871   //       version of the source type is the same class as the class of the
3872   //       destination, the initializer expression is used to initialize the
3873   //       destination object.
3874   // Per DR (no number yet), this does not apply when initializing a base
3875   // class or delegating to another constructor from a mem-initializer.
3876   // ObjC++: Lambda captured by the block in the lambda to block conversion
3877   // should avoid copy elision.
3878   if (S.getLangOpts().CPlusPlus17 &&
3879       Entity.getKind() != InitializedEntity::EK_Base &&
3880       Entity.getKind() != InitializedEntity::EK_Delegating &&
3881       Entity.getKind() !=
3882           InitializedEntity::EK_LambdaToBlockConversionBlockElement &&
3883       UnwrappedArgs.size() == 1 && UnwrappedArgs[0]->isRValue() &&
3884       S.Context.hasSameUnqualifiedType(UnwrappedArgs[0]->getType(), DestType)) {
3885     // Convert qualifications if necessary.
3886     Sequence.AddQualificationConversionStep(DestType, VK_RValue);
3887     if (ILE)
3888       Sequence.RewrapReferenceInitList(DestType, ILE);
3889     return;
3890   }
3891 
3892   const RecordType *DestRecordType = DestType->getAs<RecordType>();
3893   assert(DestRecordType && "Constructor initialization requires record type");
3894   CXXRecordDecl *DestRecordDecl
3895     = cast<CXXRecordDecl>(DestRecordType->getDecl());
3896 
3897   // Build the candidate set directly in the initialization sequence
3898   // structure, so that it will persist if we fail.
3899   OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
3900 
3901   // Determine whether we are allowed to call explicit constructors or
3902   // explicit conversion operators.
3903   bool AllowExplicit = Kind.AllowExplicit() || IsListInit;
3904   bool CopyInitialization = Kind.getKind() == InitializationKind::IK_Copy;
3905 
3906   //   - Otherwise, if T is a class type, constructors are considered. The
3907   //     applicable constructors are enumerated, and the best one is chosen
3908   //     through overload resolution.
3909   DeclContext::lookup_result Ctors = S.LookupConstructors(DestRecordDecl);
3910 
3911   OverloadingResult Result = OR_No_Viable_Function;
3912   OverloadCandidateSet::iterator Best;
3913   bool AsInitializerList = false;
3914 
3915   // C++11 [over.match.list]p1, per DR1467:
3916   //   When objects of non-aggregate type T are list-initialized, such that
3917   //   8.5.4 [dcl.init.list] specifies that overload resolution is performed
3918   //   according to the rules in this section, overload resolution selects
3919   //   the constructor in two phases:
3920   //
3921   //   - Initially, the candidate functions are the initializer-list
3922   //     constructors of the class T and the argument list consists of the
3923   //     initializer list as a single argument.
3924   if (IsListInit) {
3925     AsInitializerList = true;
3926 
3927     // If the initializer list has no elements and T has a default constructor,
3928     // the first phase is omitted.
3929     if (!(UnwrappedArgs.empty() && DestRecordDecl->hasDefaultConstructor()))
3930       Result = ResolveConstructorOverload(S, Kind.getLocation(), Args,
3931                                           CandidateSet, DestType, Ctors, Best,
3932                                           CopyInitialization, AllowExplicit,
3933                                           /*OnlyListConstructor=*/true,
3934                                           IsListInit);
3935   }
3936 
3937   // C++11 [over.match.list]p1:
3938   //   - If no viable initializer-list constructor is found, overload resolution
3939   //     is performed again, where the candidate functions are all the
3940   //     constructors of the class T and the argument list consists of the
3941   //     elements of the initializer list.
3942   if (Result == OR_No_Viable_Function) {
3943     AsInitializerList = false;
3944     Result = ResolveConstructorOverload(S, Kind.getLocation(), UnwrappedArgs,
3945                                         CandidateSet, DestType, Ctors, Best,
3946                                         CopyInitialization, AllowExplicit,
3947                                         /*OnlyListConstructors=*/false,
3948                                         IsListInit);
3949   }
3950   if (Result) {
3951     Sequence.SetOverloadFailure(IsListInit ?
3952                       InitializationSequence::FK_ListConstructorOverloadFailed :
3953                       InitializationSequence::FK_ConstructorOverloadFailed,
3954                                 Result);
3955     return;
3956   }
3957 
3958   bool HadMultipleCandidates = (CandidateSet.size() > 1);
3959 
3960   // In C++17, ResolveConstructorOverload can select a conversion function
3961   // instead of a constructor.
3962   if (auto *CD = dyn_cast<CXXConversionDecl>(Best->Function)) {
3963     // Add the user-defined conversion step that calls the conversion function.
3964     QualType ConvType = CD->getConversionType();
3965     assert(S.Context.hasSameUnqualifiedType(ConvType, DestType) &&
3966            "should not have selected this conversion function");
3967     Sequence.AddUserConversionStep(CD, Best->FoundDecl, ConvType,
3968                                    HadMultipleCandidates);
3969     if (!S.Context.hasSameType(ConvType, DestType))
3970       Sequence.AddQualificationConversionStep(DestType, VK_RValue);
3971     if (IsListInit)
3972       Sequence.RewrapReferenceInitList(Entity.getType(), ILE);
3973     return;
3974   }
3975 
3976   // C++11 [dcl.init]p6:
3977   //   If a program calls for the default initialization of an object
3978   //   of a const-qualified type T, T shall be a class type with a
3979   //   user-provided default constructor.
3980   // C++ core issue 253 proposal:
3981   //   If the implicit default constructor initializes all subobjects, no
3982   //   initializer should be required.
3983   // The 253 proposal is for example needed to process libstdc++ headers in 5.x.
3984   CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
3985   if (Kind.getKind() == InitializationKind::IK_Default &&
3986       Entity.getType().isConstQualified()) {
3987     if (!CtorDecl->getParent()->allowConstDefaultInit()) {
3988       if (!maybeRecoverWithZeroInitialization(S, Sequence, Entity))
3989         Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst);
3990       return;
3991     }
3992   }
3993 
3994   // C++11 [over.match.list]p1:
3995   //   In copy-list-initialization, if an explicit constructor is chosen, the
3996   //   initializer is ill-formed.
3997   if (IsListInit && !Kind.AllowExplicit() && CtorDecl->isExplicit()) {
3998     Sequence.SetFailed(InitializationSequence::FK_ExplicitConstructor);
3999     return;
4000   }
4001 
4002   // Add the constructor initialization step. Any cv-qualification conversion is
4003   // subsumed by the initialization.
4004   Sequence.AddConstructorInitializationStep(
4005       Best->FoundDecl, CtorDecl, DestArrayType, HadMultipleCandidates,
4006       IsListInit | IsInitListCopy, AsInitializerList);
4007 }
4008 
4009 static bool
4010 ResolveOverloadedFunctionForReferenceBinding(Sema &S,
4011                                              Expr *Initializer,
4012                                              QualType &SourceType,
4013                                              QualType &UnqualifiedSourceType,
4014                                              QualType UnqualifiedTargetType,
4015                                              InitializationSequence &Sequence) {
4016   if (S.Context.getCanonicalType(UnqualifiedSourceType) ==
4017         S.Context.OverloadTy) {
4018     DeclAccessPair Found;
4019     bool HadMultipleCandidates = false;
4020     if (FunctionDecl *Fn
4021         = S.ResolveAddressOfOverloadedFunction(Initializer,
4022                                                UnqualifiedTargetType,
4023                                                false, Found,
4024                                                &HadMultipleCandidates)) {
4025       Sequence.AddAddressOverloadResolutionStep(Fn, Found,
4026                                                 HadMultipleCandidates);
4027       SourceType = Fn->getType();
4028       UnqualifiedSourceType = SourceType.getUnqualifiedType();
4029     } else if (!UnqualifiedTargetType->isRecordType()) {
4030       Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
4031       return true;
4032     }
4033   }
4034   return false;
4035 }
4036 
4037 static void TryReferenceInitializationCore(Sema &S,
4038                                            const InitializedEntity &Entity,
4039                                            const InitializationKind &Kind,
4040                                            Expr *Initializer,
4041                                            QualType cv1T1, QualType T1,
4042                                            Qualifiers T1Quals,
4043                                            QualType cv2T2, QualType T2,
4044                                            Qualifiers T2Quals,
4045                                            InitializationSequence &Sequence);
4046 
4047 static void TryValueInitialization(Sema &S,
4048                                    const InitializedEntity &Entity,
4049                                    const InitializationKind &Kind,
4050                                    InitializationSequence &Sequence,
4051                                    InitListExpr *InitList = nullptr);
4052 
4053 /// Attempt list initialization of a reference.
4054 static void TryReferenceListInitialization(Sema &S,
4055                                            const InitializedEntity &Entity,
4056                                            const InitializationKind &Kind,
4057                                            InitListExpr *InitList,
4058                                            InitializationSequence &Sequence,
4059                                            bool TreatUnavailableAsInvalid) {
4060   // First, catch C++03 where this isn't possible.
4061   if (!S.getLangOpts().CPlusPlus11) {
4062     Sequence.SetFailed(InitializationSequence::FK_ReferenceBindingToInitList);
4063     return;
4064   }
4065   // Can't reference initialize a compound literal.
4066   if (Entity.getKind() == InitializedEntity::EK_CompoundLiteralInit) {
4067     Sequence.SetFailed(InitializationSequence::FK_ReferenceBindingToInitList);
4068     return;
4069   }
4070 
4071   QualType DestType = Entity.getType();
4072   QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
4073   Qualifiers T1Quals;
4074   QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals);
4075 
4076   // Reference initialization via an initializer list works thus:
4077   // If the initializer list consists of a single element that is
4078   // reference-related to the referenced type, bind directly to that element
4079   // (possibly creating temporaries).
4080   // Otherwise, initialize a temporary with the initializer list and
4081   // bind to that.
4082   if (InitList->getNumInits() == 1) {
4083     Expr *Initializer = InitList->getInit(0);
4084     QualType cv2T2 = Initializer->getType();
4085     Qualifiers T2Quals;
4086     QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals);
4087 
4088     // If this fails, creating a temporary wouldn't work either.
4089     if (ResolveOverloadedFunctionForReferenceBinding(S, Initializer, cv2T2, T2,
4090                                                      T1, Sequence))
4091       return;
4092 
4093     SourceLocation DeclLoc = Initializer->getBeginLoc();
4094     bool dummy1, dummy2, dummy3;
4095     Sema::ReferenceCompareResult RefRelationship
4096       = S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, dummy1,
4097                                        dummy2, dummy3);
4098     if (RefRelationship >= Sema::Ref_Related) {
4099       // Try to bind the reference here.
4100       TryReferenceInitializationCore(S, Entity, Kind, Initializer, cv1T1, T1,
4101                                      T1Quals, cv2T2, T2, T2Quals, Sequence);
4102       if (Sequence)
4103         Sequence.RewrapReferenceInitList(cv1T1, InitList);
4104       return;
4105     }
4106 
4107     // Update the initializer if we've resolved an overloaded function.
4108     if (Sequence.step_begin() != Sequence.step_end())
4109       Sequence.RewrapReferenceInitList(cv1T1, InitList);
4110   }
4111 
4112   // Not reference-related. Create a temporary and bind to that.
4113   InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(cv1T1);
4114 
4115   TryListInitialization(S, TempEntity, Kind, InitList, Sequence,
4116                         TreatUnavailableAsInvalid);
4117   if (Sequence) {
4118     if (DestType->isRValueReferenceType() ||
4119         (T1Quals.hasConst() && !T1Quals.hasVolatile()))
4120       Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true);
4121     else
4122       Sequence.SetFailed(
4123           InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary);
4124   }
4125 }
4126 
4127 /// Attempt list initialization (C++0x [dcl.init.list])
4128 static void TryListInitialization(Sema &S,
4129                                   const InitializedEntity &Entity,
4130                                   const InitializationKind &Kind,
4131                                   InitListExpr *InitList,
4132                                   InitializationSequence &Sequence,
4133                                   bool TreatUnavailableAsInvalid) {
4134   QualType DestType = Entity.getType();
4135 
4136   // C++ doesn't allow scalar initialization with more than one argument.
4137   // But C99 complex numbers are scalars and it makes sense there.
4138   if (S.getLangOpts().CPlusPlus && DestType->isScalarType() &&
4139       !DestType->isAnyComplexType() && InitList->getNumInits() > 1) {
4140     Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForScalar);
4141     return;
4142   }
4143   if (DestType->isReferenceType()) {
4144     TryReferenceListInitialization(S, Entity, Kind, InitList, Sequence,
4145                                    TreatUnavailableAsInvalid);
4146     return;
4147   }
4148 
4149   if (DestType->isRecordType() &&
4150       !S.isCompleteType(InitList->getBeginLoc(), DestType)) {
4151     Sequence.setIncompleteTypeFailure(DestType);
4152     return;
4153   }
4154 
4155   // C++11 [dcl.init.list]p3, per DR1467:
4156   // - If T is a class type and the initializer list has a single element of
4157   //   type cv U, where U is T or a class derived from T, the object is
4158   //   initialized from that element (by copy-initialization for
4159   //   copy-list-initialization, or by direct-initialization for
4160   //   direct-list-initialization).
4161   // - Otherwise, if T is a character array and the initializer list has a
4162   //   single element that is an appropriately-typed string literal
4163   //   (8.5.2 [dcl.init.string]), initialization is performed as described
4164   //   in that section.
4165   // - Otherwise, if T is an aggregate, [...] (continue below).
4166   if (S.getLangOpts().CPlusPlus11 && InitList->getNumInits() == 1) {
4167     if (DestType->isRecordType()) {
4168       QualType InitType = InitList->getInit(0)->getType();
4169       if (S.Context.hasSameUnqualifiedType(InitType, DestType) ||
4170           S.IsDerivedFrom(InitList->getBeginLoc(), InitType, DestType)) {
4171         Expr *InitListAsExpr = InitList;
4172         TryConstructorInitialization(S, Entity, Kind, InitListAsExpr, DestType,
4173                                      DestType, Sequence,
4174                                      /*InitListSyntax*/false,
4175                                      /*IsInitListCopy*/true);
4176         return;
4177       }
4178     }
4179     if (const ArrayType *DestAT = S.Context.getAsArrayType(DestType)) {
4180       Expr *SubInit[1] = {InitList->getInit(0)};
4181       if (!isa<VariableArrayType>(DestAT) &&
4182           IsStringInit(SubInit[0], DestAT, S.Context) == SIF_None) {
4183         InitializationKind SubKind =
4184             Kind.getKind() == InitializationKind::IK_DirectList
4185                 ? InitializationKind::CreateDirect(Kind.getLocation(),
4186                                                    InitList->getLBraceLoc(),
4187                                                    InitList->getRBraceLoc())
4188                 : Kind;
4189         Sequence.InitializeFrom(S, Entity, SubKind, SubInit,
4190                                 /*TopLevelOfInitList*/ true,
4191                                 TreatUnavailableAsInvalid);
4192 
4193         // TryStringLiteralInitialization() (in InitializeFrom()) will fail if
4194         // the element is not an appropriately-typed string literal, in which
4195         // case we should proceed as in C++11 (below).
4196         if (Sequence) {
4197           Sequence.RewrapReferenceInitList(Entity.getType(), InitList);
4198           return;
4199         }
4200       }
4201     }
4202   }
4203 
4204   // C++11 [dcl.init.list]p3:
4205   //   - If T is an aggregate, aggregate initialization is performed.
4206   if ((DestType->isRecordType() && !DestType->isAggregateType()) ||
4207       (S.getLangOpts().CPlusPlus11 &&
4208        S.isStdInitializerList(DestType, nullptr))) {
4209     if (S.getLangOpts().CPlusPlus11) {
4210       //   - Otherwise, if the initializer list has no elements and T is a
4211       //     class type with a default constructor, the object is
4212       //     value-initialized.
4213       if (InitList->getNumInits() == 0) {
4214         CXXRecordDecl *RD = DestType->getAsCXXRecordDecl();
4215         if (RD->hasDefaultConstructor()) {
4216           TryValueInitialization(S, Entity, Kind, Sequence, InitList);
4217           return;
4218         }
4219       }
4220 
4221       //   - Otherwise, if T is a specialization of std::initializer_list<E>,
4222       //     an initializer_list object constructed [...]
4223       if (TryInitializerListConstruction(S, InitList, DestType, Sequence,
4224                                          TreatUnavailableAsInvalid))
4225         return;
4226 
4227       //   - Otherwise, if T is a class type, constructors are considered.
4228       Expr *InitListAsExpr = InitList;
4229       TryConstructorInitialization(S, Entity, Kind, InitListAsExpr, DestType,
4230                                    DestType, Sequence, /*InitListSyntax*/true);
4231     } else
4232       Sequence.SetFailed(InitializationSequence::FK_InitListBadDestinationType);
4233     return;
4234   }
4235 
4236   if (S.getLangOpts().CPlusPlus && !DestType->isAggregateType() &&
4237       InitList->getNumInits() == 1) {
4238     Expr *E = InitList->getInit(0);
4239 
4240     //   - Otherwise, if T is an enumeration with a fixed underlying type,
4241     //     the initializer-list has a single element v, and the initialization
4242     //     is direct-list-initialization, the object is initialized with the
4243     //     value T(v); if a narrowing conversion is required to convert v to
4244     //     the underlying type of T, the program is ill-formed.
4245     auto *ET = DestType->getAs<EnumType>();
4246     if (S.getLangOpts().CPlusPlus17 &&
4247         Kind.getKind() == InitializationKind::IK_DirectList &&
4248         ET && ET->getDecl()->isFixed() &&
4249         !S.Context.hasSameUnqualifiedType(E->getType(), DestType) &&
4250         (E->getType()->isIntegralOrEnumerationType() ||
4251          E->getType()->isFloatingType())) {
4252       // There are two ways that T(v) can work when T is an enumeration type.
4253       // If there is either an implicit conversion sequence from v to T or
4254       // a conversion function that can convert from v to T, then we use that.
4255       // Otherwise, if v is of integral, enumeration, or floating-point type,
4256       // it is converted to the enumeration type via its underlying type.
4257       // There is no overlap possible between these two cases (except when the
4258       // source value is already of the destination type), and the first
4259       // case is handled by the general case for single-element lists below.
4260       ImplicitConversionSequence ICS;
4261       ICS.setStandard();
4262       ICS.Standard.setAsIdentityConversion();
4263       if (!E->isRValue())
4264         ICS.Standard.First = ICK_Lvalue_To_Rvalue;
4265       // If E is of a floating-point type, then the conversion is ill-formed
4266       // due to narrowing, but go through the motions in order to produce the
4267       // right diagnostic.
4268       ICS.Standard.Second = E->getType()->isFloatingType()
4269                                 ? ICK_Floating_Integral
4270                                 : ICK_Integral_Conversion;
4271       ICS.Standard.setFromType(E->getType());
4272       ICS.Standard.setToType(0, E->getType());
4273       ICS.Standard.setToType(1, DestType);
4274       ICS.Standard.setToType(2, DestType);
4275       Sequence.AddConversionSequenceStep(ICS, ICS.Standard.getToType(2),
4276                                          /*TopLevelOfInitList*/true);
4277       Sequence.RewrapReferenceInitList(Entity.getType(), InitList);
4278       return;
4279     }
4280 
4281     //   - Otherwise, if the initializer list has a single element of type E
4282     //     [...references are handled above...], the object or reference is
4283     //     initialized from that element (by copy-initialization for
4284     //     copy-list-initialization, or by direct-initialization for
4285     //     direct-list-initialization); if a narrowing conversion is required
4286     //     to convert the element to T, the program is ill-formed.
4287     //
4288     // Per core-24034, this is direct-initialization if we were performing
4289     // direct-list-initialization and copy-initialization otherwise.
4290     // We can't use InitListChecker for this, because it always performs
4291     // copy-initialization. This only matters if we might use an 'explicit'
4292     // conversion operator, so we only need to handle the cases where the source
4293     // is of record type.
4294     if (InitList->getInit(0)->getType()->isRecordType()) {
4295       InitializationKind SubKind =
4296           Kind.getKind() == InitializationKind::IK_DirectList
4297               ? InitializationKind::CreateDirect(Kind.getLocation(),
4298                                                  InitList->getLBraceLoc(),
4299                                                  InitList->getRBraceLoc())
4300               : Kind;
4301       Expr *SubInit[1] = { InitList->getInit(0) };
4302       Sequence.InitializeFrom(S, Entity, SubKind, SubInit,
4303                               /*TopLevelOfInitList*/true,
4304                               TreatUnavailableAsInvalid);
4305       if (Sequence)
4306         Sequence.RewrapReferenceInitList(Entity.getType(), InitList);
4307       return;
4308     }
4309   }
4310 
4311   InitListChecker CheckInitList(S, Entity, InitList,
4312           DestType, /*VerifyOnly=*/true, TreatUnavailableAsInvalid);
4313   if (CheckInitList.HadError()) {
4314     Sequence.SetFailed(InitializationSequence::FK_ListInitializationFailed);
4315     return;
4316   }
4317 
4318   // Add the list initialization step with the built init list.
4319   Sequence.AddListInitializationStep(DestType);
4320 }
4321 
4322 /// Try a reference initialization that involves calling a conversion
4323 /// function.
4324 static OverloadingResult TryRefInitWithConversionFunction(
4325     Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind,
4326     Expr *Initializer, bool AllowRValues, bool IsLValueRef,
4327     InitializationSequence &Sequence) {
4328   QualType DestType = Entity.getType();
4329   QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
4330   QualType T1 = cv1T1.getUnqualifiedType();
4331   QualType cv2T2 = Initializer->getType();
4332   QualType T2 = cv2T2.getUnqualifiedType();
4333 
4334   bool DerivedToBase;
4335   bool ObjCConversion;
4336   bool ObjCLifetimeConversion;
4337   assert(!S.CompareReferenceRelationship(Initializer->getBeginLoc(), T1, T2,
4338                                          DerivedToBase, ObjCConversion,
4339                                          ObjCLifetimeConversion) &&
4340          "Must have incompatible references when binding via conversion");
4341   (void)DerivedToBase;
4342   (void)ObjCConversion;
4343   (void)ObjCLifetimeConversion;
4344 
4345   // Build the candidate set directly in the initialization sequence
4346   // structure, so that it will persist if we fail.
4347   OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
4348   CandidateSet.clear(OverloadCandidateSet::CSK_InitByUserDefinedConversion);
4349 
4350   // Determine whether we are allowed to call explicit conversion operators.
4351   // Note that none of [over.match.copy], [over.match.conv], nor
4352   // [over.match.ref] permit an explicit constructor to be chosen when
4353   // initializing a reference, not even for direct-initialization.
4354   bool AllowExplicitCtors = false;
4355   bool AllowExplicitConvs = Kind.allowExplicitConversionFunctionsInRefBinding();
4356 
4357   const RecordType *T1RecordType = nullptr;
4358   if (AllowRValues && (T1RecordType = T1->getAs<RecordType>()) &&
4359       S.isCompleteType(Kind.getLocation(), T1)) {
4360     // The type we're converting to is a class type. Enumerate its constructors
4361     // to see if there is a suitable conversion.
4362     CXXRecordDecl *T1RecordDecl = cast<CXXRecordDecl>(T1RecordType->getDecl());
4363 
4364     for (NamedDecl *D : S.LookupConstructors(T1RecordDecl)) {
4365       auto Info = getConstructorInfo(D);
4366       if (!Info.Constructor)
4367         continue;
4368 
4369       if (!Info.Constructor->isInvalidDecl() &&
4370           Info.Constructor->isConvertingConstructor(AllowExplicitCtors)) {
4371         if (Info.ConstructorTmpl)
4372           S.AddTemplateOverloadCandidate(
4373               Info.ConstructorTmpl, Info.FoundDecl,
4374               /*ExplicitArgs*/ nullptr, Initializer, CandidateSet,
4375               /*SuppressUserConversions=*/true,
4376               /*PartialOverloading*/ false, AllowExplicitCtors);
4377         else
4378           S.AddOverloadCandidate(
4379               Info.Constructor, Info.FoundDecl, Initializer, CandidateSet,
4380               /*SuppressUserConversions=*/true,
4381               /*PartialOverloading*/ false, AllowExplicitCtors);
4382       }
4383     }
4384   }
4385   if (T1RecordType && T1RecordType->getDecl()->isInvalidDecl())
4386     return OR_No_Viable_Function;
4387 
4388   const RecordType *T2RecordType = nullptr;
4389   if ((T2RecordType = T2->getAs<RecordType>()) &&
4390       S.isCompleteType(Kind.getLocation(), T2)) {
4391     // The type we're converting from is a class type, enumerate its conversion
4392     // functions.
4393     CXXRecordDecl *T2RecordDecl = cast<CXXRecordDecl>(T2RecordType->getDecl());
4394 
4395     const auto &Conversions = T2RecordDecl->getVisibleConversionFunctions();
4396     for (auto I = Conversions.begin(), E = Conversions.end(); I != E; ++I) {
4397       NamedDecl *D = *I;
4398       CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
4399       if (isa<UsingShadowDecl>(D))
4400         D = cast<UsingShadowDecl>(D)->getTargetDecl();
4401 
4402       FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D);
4403       CXXConversionDecl *Conv;
4404       if (ConvTemplate)
4405         Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
4406       else
4407         Conv = cast<CXXConversionDecl>(D);
4408 
4409       // If the conversion function doesn't return a reference type,
4410       // it can't be considered for this conversion unless we're allowed to
4411       // consider rvalues.
4412       // FIXME: Do we need to make sure that we only consider conversion
4413       // candidates with reference-compatible results? That might be needed to
4414       // break recursion.
4415       if ((AllowExplicitConvs || !Conv->isExplicit()) &&
4416           (AllowRValues ||
4417            Conv->getConversionType()->isLValueReferenceType())) {
4418         if (ConvTemplate)
4419           S.AddTemplateConversionCandidate(
4420               ConvTemplate, I.getPair(), ActingDC, Initializer, DestType,
4421               CandidateSet,
4422               /*AllowObjCConversionOnExplicit=*/false, AllowExplicitConvs);
4423         else
4424           S.AddConversionCandidate(
4425               Conv, I.getPair(), ActingDC, Initializer, DestType, CandidateSet,
4426               /*AllowObjCConversionOnExplicit=*/false, AllowExplicitConvs);
4427       }
4428     }
4429   }
4430   if (T2RecordType && T2RecordType->getDecl()->isInvalidDecl())
4431     return OR_No_Viable_Function;
4432 
4433   SourceLocation DeclLoc = Initializer->getBeginLoc();
4434 
4435   // Perform overload resolution. If it fails, return the failed result.
4436   OverloadCandidateSet::iterator Best;
4437   if (OverloadingResult Result
4438         = CandidateSet.BestViableFunction(S, DeclLoc, Best))
4439     return Result;
4440 
4441   FunctionDecl *Function = Best->Function;
4442   // This is the overload that will be used for this initialization step if we
4443   // use this initialization. Mark it as referenced.
4444   Function->setReferenced();
4445 
4446   // Compute the returned type and value kind of the conversion.
4447   QualType cv3T3;
4448   if (isa<CXXConversionDecl>(Function))
4449     cv3T3 = Function->getReturnType();
4450   else
4451     cv3T3 = T1;
4452 
4453   ExprValueKind VK = VK_RValue;
4454   if (cv3T3->isLValueReferenceType())
4455     VK = VK_LValue;
4456   else if (const auto *RRef = cv3T3->getAs<RValueReferenceType>())
4457     VK = RRef->getPointeeType()->isFunctionType() ? VK_LValue : VK_XValue;
4458   cv3T3 = cv3T3.getNonLValueExprType(S.Context);
4459 
4460   // Add the user-defined conversion step.
4461   bool HadMultipleCandidates = (CandidateSet.size() > 1);
4462   Sequence.AddUserConversionStep(Function, Best->FoundDecl, cv3T3,
4463                                  HadMultipleCandidates);
4464 
4465   // Determine whether we'll need to perform derived-to-base adjustments or
4466   // other conversions.
4467   bool NewDerivedToBase = false;
4468   bool NewObjCConversion = false;
4469   bool NewObjCLifetimeConversion = false;
4470   Sema::ReferenceCompareResult NewRefRelationship
4471     = S.CompareReferenceRelationship(DeclLoc, T1, cv3T3,
4472                                      NewDerivedToBase, NewObjCConversion,
4473                                      NewObjCLifetimeConversion);
4474 
4475   // Add the final conversion sequence, if necessary.
4476   if (NewRefRelationship == Sema::Ref_Incompatible) {
4477     assert(!isa<CXXConstructorDecl>(Function) &&
4478            "should not have conversion after constructor");
4479 
4480     ImplicitConversionSequence ICS;
4481     ICS.setStandard();
4482     ICS.Standard = Best->FinalConversion;
4483     Sequence.AddConversionSequenceStep(ICS, ICS.Standard.getToType(2));
4484 
4485     // Every implicit conversion results in a prvalue, except for a glvalue
4486     // derived-to-base conversion, which we handle below.
4487     cv3T3 = ICS.Standard.getToType(2);
4488     VK = VK_RValue;
4489   }
4490 
4491   //   If the converted initializer is a prvalue, its type T4 is adjusted to
4492   //   type "cv1 T4" and the temporary materialization conversion is applied.
4493   //
4494   // We adjust the cv-qualifications to match the reference regardless of
4495   // whether we have a prvalue so that the AST records the change. In this
4496   // case, T4 is "cv3 T3".
4497   QualType cv1T4 = S.Context.getQualifiedType(cv3T3, cv1T1.getQualifiers());
4498   if (cv1T4.getQualifiers() != cv3T3.getQualifiers())
4499     Sequence.AddQualificationConversionStep(cv1T4, VK);
4500   Sequence.AddReferenceBindingStep(cv1T4, VK == VK_RValue);
4501   VK = IsLValueRef ? VK_LValue : VK_XValue;
4502 
4503   if (NewDerivedToBase)
4504     Sequence.AddDerivedToBaseCastStep(cv1T1, VK);
4505   else if (NewObjCConversion)
4506     Sequence.AddObjCObjectConversionStep(cv1T1);
4507 
4508   return OR_Success;
4509 }
4510 
4511 static void CheckCXX98CompatAccessibleCopy(Sema &S,
4512                                            const InitializedEntity &Entity,
4513                                            Expr *CurInitExpr);
4514 
4515 /// Attempt reference initialization (C++0x [dcl.init.ref])
4516 static void TryReferenceInitialization(Sema &S,
4517                                        const InitializedEntity &Entity,
4518                                        const InitializationKind &Kind,
4519                                        Expr *Initializer,
4520                                        InitializationSequence &Sequence) {
4521   QualType DestType = Entity.getType();
4522   QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
4523   Qualifiers T1Quals;
4524   QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals);
4525   QualType cv2T2 = Initializer->getType();
4526   Qualifiers T2Quals;
4527   QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals);
4528 
4529   // If the initializer is the address of an overloaded function, try
4530   // to resolve the overloaded function. If all goes well, T2 is the
4531   // type of the resulting function.
4532   if (ResolveOverloadedFunctionForReferenceBinding(S, Initializer, cv2T2, T2,
4533                                                    T1, Sequence))
4534     return;
4535 
4536   // Delegate everything else to a subfunction.
4537   TryReferenceInitializationCore(S, Entity, Kind, Initializer, cv1T1, T1,
4538                                  T1Quals, cv2T2, T2, T2Quals, Sequence);
4539 }
4540 
4541 /// Determine whether an expression is a non-referenceable glvalue (one to
4542 /// which a reference can never bind). Attempting to bind a reference to
4543 /// such a glvalue will always create a temporary.
4544 static bool isNonReferenceableGLValue(Expr *E) {
4545   return E->refersToBitField() || E->refersToVectorElement();
4546 }
4547 
4548 /// Reference initialization without resolving overloaded functions.
4549 static void TryReferenceInitializationCore(Sema &S,
4550                                            const InitializedEntity &Entity,
4551                                            const InitializationKind &Kind,
4552                                            Expr *Initializer,
4553                                            QualType cv1T1, QualType T1,
4554                                            Qualifiers T1Quals,
4555                                            QualType cv2T2, QualType T2,
4556                                            Qualifiers T2Quals,
4557                                            InitializationSequence &Sequence) {
4558   QualType DestType = Entity.getType();
4559   SourceLocation DeclLoc = Initializer->getBeginLoc();
4560   // Compute some basic properties of the types and the initializer.
4561   bool isLValueRef = DestType->isLValueReferenceType();
4562   bool isRValueRef = !isLValueRef;
4563   bool DerivedToBase = false;
4564   bool ObjCConversion = false;
4565   bool ObjCLifetimeConversion = false;
4566   Expr::Classification InitCategory = Initializer->Classify(S.Context);
4567   Sema::ReferenceCompareResult RefRelationship
4568     = S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, DerivedToBase,
4569                                      ObjCConversion, ObjCLifetimeConversion);
4570 
4571   // C++0x [dcl.init.ref]p5:
4572   //   A reference to type "cv1 T1" is initialized by an expression of type
4573   //   "cv2 T2" as follows:
4574   //
4575   //     - If the reference is an lvalue reference and the initializer
4576   //       expression
4577   // Note the analogous bullet points for rvalue refs to functions. Because
4578   // there are no function rvalues in C++, rvalue refs to functions are treated
4579   // like lvalue refs.
4580   OverloadingResult ConvOvlResult = OR_Success;
4581   bool T1Function = T1->isFunctionType();
4582   if (isLValueRef || T1Function) {
4583     if (InitCategory.isLValue() && !isNonReferenceableGLValue(Initializer) &&
4584         (RefRelationship == Sema::Ref_Compatible ||
4585          (Kind.isCStyleOrFunctionalCast() &&
4586           RefRelationship == Sema::Ref_Related))) {
4587       //   - is an lvalue (but is not a bit-field), and "cv1 T1" is
4588       //     reference-compatible with "cv2 T2," or
4589       if (T1Quals != T2Quals)
4590         // Convert to cv1 T2. This should only add qualifiers unless this is a
4591         // c-style cast. The removal of qualifiers in that case notionally
4592         // happens after the reference binding, but that doesn't matter.
4593         Sequence.AddQualificationConversionStep(
4594             S.Context.getQualifiedType(T2, T1Quals),
4595             Initializer->getValueKind());
4596       if (DerivedToBase)
4597         Sequence.AddDerivedToBaseCastStep(cv1T1, VK_LValue);
4598       else if (ObjCConversion)
4599         Sequence.AddObjCObjectConversionStep(cv1T1);
4600 
4601       // We only create a temporary here when binding a reference to a
4602       // bit-field or vector element. Those cases are't supposed to be
4603       // handled by this bullet, but the outcome is the same either way.
4604       Sequence.AddReferenceBindingStep(cv1T1, false);
4605       return;
4606     }
4607 
4608     //     - has a class type (i.e., T2 is a class type), where T1 is not
4609     //       reference-related to T2, and can be implicitly converted to an
4610     //       lvalue of type "cv3 T3," where "cv1 T1" is reference-compatible
4611     //       with "cv3 T3" (this conversion is selected by enumerating the
4612     //       applicable conversion functions (13.3.1.6) and choosing the best
4613     //       one through overload resolution (13.3)),
4614     // If we have an rvalue ref to function type here, the rhs must be
4615     // an rvalue. DR1287 removed the "implicitly" here.
4616     if (RefRelationship == Sema::Ref_Incompatible && T2->isRecordType() &&
4617         (isLValueRef || InitCategory.isRValue())) {
4618       ConvOvlResult = TryRefInitWithConversionFunction(
4619           S, Entity, Kind, Initializer, /*AllowRValues*/ isRValueRef,
4620           /*IsLValueRef*/ isLValueRef, Sequence);
4621       if (ConvOvlResult == OR_Success)
4622         return;
4623       if (ConvOvlResult != OR_No_Viable_Function)
4624         Sequence.SetOverloadFailure(
4625             InitializationSequence::FK_ReferenceInitOverloadFailed,
4626             ConvOvlResult);
4627     }
4628   }
4629 
4630   //     - Otherwise, the reference shall be an lvalue reference to a
4631   //       non-volatile const type (i.e., cv1 shall be const), or the reference
4632   //       shall be an rvalue reference.
4633   if (isLValueRef && !(T1Quals.hasConst() && !T1Quals.hasVolatile())) {
4634     if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy)
4635       Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
4636     else if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty())
4637       Sequence.SetOverloadFailure(
4638                         InitializationSequence::FK_ReferenceInitOverloadFailed,
4639                                   ConvOvlResult);
4640     else if (!InitCategory.isLValue())
4641       Sequence.SetFailed(
4642           InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary);
4643     else {
4644       InitializationSequence::FailureKind FK;
4645       switch (RefRelationship) {
4646       case Sema::Ref_Compatible:
4647         if (Initializer->refersToBitField())
4648           FK = InitializationSequence::
4649               FK_NonConstLValueReferenceBindingToBitfield;
4650         else if (Initializer->refersToVectorElement())
4651           FK = InitializationSequence::
4652               FK_NonConstLValueReferenceBindingToVectorElement;
4653         else
4654           llvm_unreachable("unexpected kind of compatible initializer");
4655         break;
4656       case Sema::Ref_Related:
4657         FK = InitializationSequence::FK_ReferenceInitDropsQualifiers;
4658         break;
4659       case Sema::Ref_Incompatible:
4660         FK = InitializationSequence::
4661             FK_NonConstLValueReferenceBindingToUnrelated;
4662         break;
4663       }
4664       Sequence.SetFailed(FK);
4665     }
4666     return;
4667   }
4668 
4669   //    - If the initializer expression
4670   //      - is an
4671   // [<=14] xvalue (but not a bit-field), class prvalue, array prvalue, or
4672   // [1z]   rvalue (but not a bit-field) or
4673   //        function lvalue and "cv1 T1" is reference-compatible with "cv2 T2"
4674   //
4675   // Note: functions are handled above and below rather than here...
4676   if (!T1Function &&
4677       (RefRelationship == Sema::Ref_Compatible ||
4678        (Kind.isCStyleOrFunctionalCast() &&
4679         RefRelationship == Sema::Ref_Related)) &&
4680       ((InitCategory.isXValue() && !isNonReferenceableGLValue(Initializer)) ||
4681        (InitCategory.isPRValue() &&
4682         (S.getLangOpts().CPlusPlus17 || T2->isRecordType() ||
4683          T2->isArrayType())))) {
4684     ExprValueKind ValueKind = InitCategory.isXValue() ? VK_XValue : VK_RValue;
4685     if (InitCategory.isPRValue() && T2->isRecordType()) {
4686       // The corresponding bullet in C++03 [dcl.init.ref]p5 gives the
4687       // compiler the freedom to perform a copy here or bind to the
4688       // object, while C++0x requires that we bind directly to the
4689       // object. Hence, we always bind to the object without making an
4690       // extra copy. However, in C++03 requires that we check for the
4691       // presence of a suitable copy constructor:
4692       //
4693       //   The constructor that would be used to make the copy shall
4694       //   be callable whether or not the copy is actually done.
4695       if (!S.getLangOpts().CPlusPlus11 && !S.getLangOpts().MicrosoftExt)
4696         Sequence.AddExtraneousCopyToTemporary(cv2T2);
4697       else if (S.getLangOpts().CPlusPlus11)
4698         CheckCXX98CompatAccessibleCopy(S, Entity, Initializer);
4699     }
4700 
4701     // C++1z [dcl.init.ref]/5.2.1.2:
4702     //   If the converted initializer is a prvalue, its type T4 is adjusted
4703     //   to type "cv1 T4" and the temporary materialization conversion is
4704     //   applied.
4705     // Postpone address space conversions to after the temporary materialization
4706     // conversion to allow creating temporaries in the alloca address space.
4707     auto T1QualsIgnoreAS = T1Quals;
4708     auto T2QualsIgnoreAS = T2Quals;
4709     if (T1Quals.getAddressSpace() != T2Quals.getAddressSpace()) {
4710       T1QualsIgnoreAS.removeAddressSpace();
4711       T2QualsIgnoreAS.removeAddressSpace();
4712     }
4713     QualType cv1T4 = S.Context.getQualifiedType(cv2T2, T1QualsIgnoreAS);
4714     if (T1QualsIgnoreAS != T2QualsIgnoreAS)
4715       Sequence.AddQualificationConversionStep(cv1T4, ValueKind);
4716     Sequence.AddReferenceBindingStep(cv1T4, ValueKind == VK_RValue);
4717     ValueKind = isLValueRef ? VK_LValue : VK_XValue;
4718     // Add addr space conversion if required.
4719     if (T1Quals.getAddressSpace() != T2Quals.getAddressSpace()) {
4720       auto T4Quals = cv1T4.getQualifiers();
4721       T4Quals.addAddressSpace(T1Quals.getAddressSpace());
4722       QualType cv1T4WithAS = S.Context.getQualifiedType(T2, T4Quals);
4723       Sequence.AddQualificationConversionStep(cv1T4WithAS, ValueKind);
4724     }
4725 
4726     //   In any case, the reference is bound to the resulting glvalue (or to
4727     //   an appropriate base class subobject).
4728     if (DerivedToBase)
4729       Sequence.AddDerivedToBaseCastStep(cv1T1, ValueKind);
4730     else if (ObjCConversion)
4731       Sequence.AddObjCObjectConversionStep(cv1T1);
4732     return;
4733   }
4734 
4735   //       - has a class type (i.e., T2 is a class type), where T1 is not
4736   //         reference-related to T2, and can be implicitly converted to an
4737   //         xvalue, class prvalue, or function lvalue of type "cv3 T3",
4738   //         where "cv1 T1" is reference-compatible with "cv3 T3",
4739   //
4740   // DR1287 removes the "implicitly" here.
4741   if (T2->isRecordType()) {
4742     if (RefRelationship == Sema::Ref_Incompatible) {
4743       ConvOvlResult = TryRefInitWithConversionFunction(
4744           S, Entity, Kind, Initializer, /*AllowRValues*/ true,
4745           /*IsLValueRef*/ isLValueRef, Sequence);
4746       if (ConvOvlResult)
4747         Sequence.SetOverloadFailure(
4748             InitializationSequence::FK_ReferenceInitOverloadFailed,
4749             ConvOvlResult);
4750 
4751       return;
4752     }
4753 
4754     if (RefRelationship == Sema::Ref_Compatible &&
4755         isRValueRef && InitCategory.isLValue()) {
4756       Sequence.SetFailed(
4757         InitializationSequence::FK_RValueReferenceBindingToLValue);
4758       return;
4759     }
4760 
4761     Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers);
4762     return;
4763   }
4764 
4765   //      - Otherwise, a temporary of type "cv1 T1" is created and initialized
4766   //        from the initializer expression using the rules for a non-reference
4767   //        copy-initialization (8.5). The reference is then bound to the
4768   //        temporary. [...]
4769 
4770   // Ignore address space of reference type at this point and perform address
4771   // space conversion after the reference binding step.
4772   QualType cv1T1IgnoreAS =
4773       T1Quals.hasAddressSpace()
4774           ? S.Context.getQualifiedType(T1, T1Quals.withoutAddressSpace())
4775           : cv1T1;
4776 
4777   InitializedEntity TempEntity =
4778       InitializedEntity::InitializeTemporary(cv1T1IgnoreAS);
4779 
4780   // FIXME: Why do we use an implicit conversion here rather than trying
4781   // copy-initialization?
4782   ImplicitConversionSequence ICS
4783     = S.TryImplicitConversion(Initializer, TempEntity.getType(),
4784                               /*SuppressUserConversions=*/false,
4785                               /*AllowExplicit=*/false,
4786                               /*FIXME:InOverloadResolution=*/false,
4787                               /*CStyle=*/Kind.isCStyleOrFunctionalCast(),
4788                               /*AllowObjCWritebackConversion=*/false);
4789 
4790   if (ICS.isBad()) {
4791     // FIXME: Use the conversion function set stored in ICS to turn
4792     // this into an overloading ambiguity diagnostic. However, we need
4793     // to keep that set as an OverloadCandidateSet rather than as some
4794     // other kind of set.
4795     if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty())
4796       Sequence.SetOverloadFailure(
4797                         InitializationSequence::FK_ReferenceInitOverloadFailed,
4798                                   ConvOvlResult);
4799     else if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy)
4800       Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
4801     else
4802       Sequence.SetFailed(InitializationSequence::FK_ReferenceInitFailed);
4803     return;
4804   } else {
4805     Sequence.AddConversionSequenceStep(ICS, TempEntity.getType());
4806   }
4807 
4808   //        [...] If T1 is reference-related to T2, cv1 must be the
4809   //        same cv-qualification as, or greater cv-qualification
4810   //        than, cv2; otherwise, the program is ill-formed.
4811   unsigned T1CVRQuals = T1Quals.getCVRQualifiers();
4812   unsigned T2CVRQuals = T2Quals.getCVRQualifiers();
4813   if ((RefRelationship == Sema::Ref_Related &&
4814        (T1CVRQuals | T2CVRQuals) != T1CVRQuals) ||
4815       !T1Quals.isAddressSpaceSupersetOf(T2Quals)) {
4816     Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers);
4817     return;
4818   }
4819 
4820   //   [...] If T1 is reference-related to T2 and the reference is an rvalue
4821   //   reference, the initializer expression shall not be an lvalue.
4822   if (RefRelationship >= Sema::Ref_Related && !isLValueRef &&
4823       InitCategory.isLValue()) {
4824     Sequence.SetFailed(
4825                     InitializationSequence::FK_RValueReferenceBindingToLValue);
4826     return;
4827   }
4828 
4829   Sequence.AddReferenceBindingStep(cv1T1IgnoreAS, /*bindingTemporary=*/true);
4830 
4831   if (T1Quals.hasAddressSpace()) {
4832     if (!Qualifiers::isAddressSpaceSupersetOf(T1Quals.getAddressSpace(),
4833                                               LangAS::Default)) {
4834       Sequence.SetFailed(
4835           InitializationSequence::FK_ReferenceAddrspaceMismatchTemporary);
4836       return;
4837     }
4838     Sequence.AddQualificationConversionStep(cv1T1, isLValueRef ? VK_LValue
4839                                                                : VK_XValue);
4840   }
4841 }
4842 
4843 /// Attempt character array initialization from a string literal
4844 /// (C++ [dcl.init.string], C99 6.7.8).
4845 static void TryStringLiteralInitialization(Sema &S,
4846                                            const InitializedEntity &Entity,
4847                                            const InitializationKind &Kind,
4848                                            Expr *Initializer,
4849                                        InitializationSequence &Sequence) {
4850   Sequence.AddStringInitStep(Entity.getType());
4851 }
4852 
4853 /// Attempt value initialization (C++ [dcl.init]p7).
4854 static void TryValueInitialization(Sema &S,
4855                                    const InitializedEntity &Entity,
4856                                    const InitializationKind &Kind,
4857                                    InitializationSequence &Sequence,
4858                                    InitListExpr *InitList) {
4859   assert((!InitList || InitList->getNumInits() == 0) &&
4860          "Shouldn't use value-init for non-empty init lists");
4861 
4862   // C++98 [dcl.init]p5, C++11 [dcl.init]p7:
4863   //
4864   //   To value-initialize an object of type T means:
4865   QualType T = Entity.getType();
4866 
4867   //     -- if T is an array type, then each element is value-initialized;
4868   T = S.Context.getBaseElementType(T);
4869 
4870   if (const RecordType *RT = T->getAs<RecordType>()) {
4871     if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
4872       bool NeedZeroInitialization = true;
4873       // C++98:
4874       // -- if T is a class type (clause 9) with a user-declared constructor
4875       //    (12.1), then the default constructor for T is called (and the
4876       //    initialization is ill-formed if T has no accessible default
4877       //    constructor);
4878       // C++11:
4879       // -- if T is a class type (clause 9) with either no default constructor
4880       //    (12.1 [class.ctor]) or a default constructor that is user-provided
4881       //    or deleted, then the object is default-initialized;
4882       //
4883       // Note that the C++11 rule is the same as the C++98 rule if there are no
4884       // defaulted or deleted constructors, so we just use it unconditionally.
4885       CXXConstructorDecl *CD = S.LookupDefaultConstructor(ClassDecl);
4886       if (!CD || !CD->getCanonicalDecl()->isDefaulted() || CD->isDeleted())
4887         NeedZeroInitialization = false;
4888 
4889       // -- if T is a (possibly cv-qualified) non-union class type without a
4890       //    user-provided or deleted default constructor, then the object is
4891       //    zero-initialized and, if T has a non-trivial default constructor,
4892       //    default-initialized;
4893       // The 'non-union' here was removed by DR1502. The 'non-trivial default
4894       // constructor' part was removed by DR1507.
4895       if (NeedZeroInitialization)
4896         Sequence.AddZeroInitializationStep(Entity.getType());
4897 
4898       // C++03:
4899       // -- if T is a non-union class type without a user-declared constructor,
4900       //    then every non-static data member and base class component of T is
4901       //    value-initialized;
4902       // [...] A program that calls for [...] value-initialization of an
4903       // entity of reference type is ill-formed.
4904       //
4905       // C++11 doesn't need this handling, because value-initialization does not
4906       // occur recursively there, and the implicit default constructor is
4907       // defined as deleted in the problematic cases.
4908       if (!S.getLangOpts().CPlusPlus11 &&
4909           ClassDecl->hasUninitializedReferenceMember()) {
4910         Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForReference);
4911         return;
4912       }
4913 
4914       // If this is list-value-initialization, pass the empty init list on when
4915       // building the constructor call. This affects the semantics of a few
4916       // things (such as whether an explicit default constructor can be called).
4917       Expr *InitListAsExpr = InitList;
4918       MultiExprArg Args(&InitListAsExpr, InitList ? 1 : 0);
4919       bool InitListSyntax = InitList;
4920 
4921       // FIXME: Instead of creating a CXXConstructExpr of array type here,
4922       // wrap a class-typed CXXConstructExpr in an ArrayInitLoopExpr.
4923       return TryConstructorInitialization(
4924           S, Entity, Kind, Args, T, Entity.getType(), Sequence, InitListSyntax);
4925     }
4926   }
4927 
4928   Sequence.AddZeroInitializationStep(Entity.getType());
4929 }
4930 
4931 /// Attempt default initialization (C++ [dcl.init]p6).
4932 static void TryDefaultInitialization(Sema &S,
4933                                      const InitializedEntity &Entity,
4934                                      const InitializationKind &Kind,
4935                                      InitializationSequence &Sequence) {
4936   assert(Kind.getKind() == InitializationKind::IK_Default);
4937 
4938   // C++ [dcl.init]p6:
4939   //   To default-initialize an object of type T means:
4940   //     - if T is an array type, each element is default-initialized;
4941   QualType DestType = S.Context.getBaseElementType(Entity.getType());
4942 
4943   //     - if T is a (possibly cv-qualified) class type (Clause 9), the default
4944   //       constructor for T is called (and the initialization is ill-formed if
4945   //       T has no accessible default constructor);
4946   if (DestType->isRecordType() && S.getLangOpts().CPlusPlus) {
4947     TryConstructorInitialization(S, Entity, Kind, None, DestType,
4948                                  Entity.getType(), Sequence);
4949     return;
4950   }
4951 
4952   //     - otherwise, no initialization is performed.
4953 
4954   //   If a program calls for the default initialization of an object of
4955   //   a const-qualified type T, T shall be a class type with a user-provided
4956   //   default constructor.
4957   if (DestType.isConstQualified() && S.getLangOpts().CPlusPlus) {
4958     if (!maybeRecoverWithZeroInitialization(S, Sequence, Entity))
4959       Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst);
4960     return;
4961   }
4962 
4963   // If the destination type has a lifetime property, zero-initialize it.
4964   if (DestType.getQualifiers().hasObjCLifetime()) {
4965     Sequence.AddZeroInitializationStep(Entity.getType());
4966     return;
4967   }
4968 }
4969 
4970 /// Attempt a user-defined conversion between two types (C++ [dcl.init]),
4971 /// which enumerates all conversion functions and performs overload resolution
4972 /// to select the best.
4973 static void TryUserDefinedConversion(Sema &S,
4974                                      QualType DestType,
4975                                      const InitializationKind &Kind,
4976                                      Expr *Initializer,
4977                                      InitializationSequence &Sequence,
4978                                      bool TopLevelOfInitList) {
4979   assert(!DestType->isReferenceType() && "References are handled elsewhere");
4980   QualType SourceType = Initializer->getType();
4981   assert((DestType->isRecordType() || SourceType->isRecordType()) &&
4982          "Must have a class type to perform a user-defined conversion");
4983 
4984   // Build the candidate set directly in the initialization sequence
4985   // structure, so that it will persist if we fail.
4986   OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
4987   CandidateSet.clear(OverloadCandidateSet::CSK_InitByUserDefinedConversion);
4988 
4989   // Determine whether we are allowed to call explicit constructors or
4990   // explicit conversion operators.
4991   bool AllowExplicit = Kind.AllowExplicit();
4992 
4993   if (const RecordType *DestRecordType = DestType->getAs<RecordType>()) {
4994     // The type we're converting to is a class type. Enumerate its constructors
4995     // to see if there is a suitable conversion.
4996     CXXRecordDecl *DestRecordDecl
4997       = cast<CXXRecordDecl>(DestRecordType->getDecl());
4998 
4999     // Try to complete the type we're converting to.
5000     if (S.isCompleteType(Kind.getLocation(), DestType)) {
5001       for (NamedDecl *D : S.LookupConstructors(DestRecordDecl)) {
5002         auto Info = getConstructorInfo(D);
5003         if (!Info.Constructor)
5004           continue;
5005 
5006         if (!Info.Constructor->isInvalidDecl() &&
5007             Info.Constructor->isConvertingConstructor(AllowExplicit)) {
5008           if (Info.ConstructorTmpl)
5009             S.AddTemplateOverloadCandidate(
5010                 Info.ConstructorTmpl, Info.FoundDecl,
5011                 /*ExplicitArgs*/ nullptr, Initializer, CandidateSet,
5012                 /*SuppressUserConversions=*/true,
5013                 /*PartialOverloading*/ false, AllowExplicit);
5014           else
5015             S.AddOverloadCandidate(Info.Constructor, Info.FoundDecl,
5016                                    Initializer, CandidateSet,
5017                                    /*SuppressUserConversions=*/true,
5018                                    /*PartialOverloading*/ false, AllowExplicit);
5019         }
5020       }
5021     }
5022   }
5023 
5024   SourceLocation DeclLoc = Initializer->getBeginLoc();
5025 
5026   if (const RecordType *SourceRecordType = SourceType->getAs<RecordType>()) {
5027     // The type we're converting from is a class type, enumerate its conversion
5028     // functions.
5029 
5030     // We can only enumerate the conversion functions for a complete type; if
5031     // the type isn't complete, simply skip this step.
5032     if (S.isCompleteType(DeclLoc, SourceType)) {
5033       CXXRecordDecl *SourceRecordDecl
5034         = cast<CXXRecordDecl>(SourceRecordType->getDecl());
5035 
5036       const auto &Conversions =
5037           SourceRecordDecl->getVisibleConversionFunctions();
5038       for (auto I = Conversions.begin(), E = Conversions.end(); I != E; ++I) {
5039         NamedDecl *D = *I;
5040         CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
5041         if (isa<UsingShadowDecl>(D))
5042           D = cast<UsingShadowDecl>(D)->getTargetDecl();
5043 
5044         FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D);
5045         CXXConversionDecl *Conv;
5046         if (ConvTemplate)
5047           Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
5048         else
5049           Conv = cast<CXXConversionDecl>(D);
5050 
5051         if (AllowExplicit || !Conv->isExplicit()) {
5052           if (ConvTemplate)
5053             S.AddTemplateConversionCandidate(
5054                 ConvTemplate, I.getPair(), ActingDC, Initializer, DestType,
5055                 CandidateSet, AllowExplicit, AllowExplicit);
5056           else
5057             S.AddConversionCandidate(Conv, I.getPair(), ActingDC, Initializer,
5058                                      DestType, CandidateSet, AllowExplicit,
5059                                      AllowExplicit);
5060         }
5061       }
5062     }
5063   }
5064 
5065   // Perform overload resolution. If it fails, return the failed result.
5066   OverloadCandidateSet::iterator Best;
5067   if (OverloadingResult Result
5068         = CandidateSet.BestViableFunction(S, DeclLoc, Best)) {
5069     Sequence.SetOverloadFailure(
5070                         InitializationSequence::FK_UserConversionOverloadFailed,
5071                                 Result);
5072     return;
5073   }
5074 
5075   FunctionDecl *Function = Best->Function;
5076   Function->setReferenced();
5077   bool HadMultipleCandidates = (CandidateSet.size() > 1);
5078 
5079   if (isa<CXXConstructorDecl>(Function)) {
5080     // Add the user-defined conversion step. Any cv-qualification conversion is
5081     // subsumed by the initialization. Per DR5, the created temporary is of the
5082     // cv-unqualified type of the destination.
5083     Sequence.AddUserConversionStep(Function, Best->FoundDecl,
5084                                    DestType.getUnqualifiedType(),
5085                                    HadMultipleCandidates);
5086 
5087     // C++14 and before:
5088     //   - if the function is a constructor, the call initializes a temporary
5089     //     of the cv-unqualified version of the destination type. The [...]
5090     //     temporary [...] is then used to direct-initialize, according to the
5091     //     rules above, the object that is the destination of the
5092     //     copy-initialization.
5093     // Note that this just performs a simple object copy from the temporary.
5094     //
5095     // C++17:
5096     //   - if the function is a constructor, the call is a prvalue of the
5097     //     cv-unqualified version of the destination type whose return object
5098     //     is initialized by the constructor. The call is used to
5099     //     direct-initialize, according to the rules above, the object that
5100     //     is the destination of the copy-initialization.
5101     // Therefore we need to do nothing further.
5102     //
5103     // FIXME: Mark this copy as extraneous.
5104     if (!S.getLangOpts().CPlusPlus17)
5105       Sequence.AddFinalCopy(DestType);
5106     else if (DestType.hasQualifiers())
5107       Sequence.AddQualificationConversionStep(DestType, VK_RValue);
5108     return;
5109   }
5110 
5111   // Add the user-defined conversion step that calls the conversion function.
5112   QualType ConvType = Function->getCallResultType();
5113   Sequence.AddUserConversionStep(Function, Best->FoundDecl, ConvType,
5114                                  HadMultipleCandidates);
5115 
5116   if (ConvType->getAs<RecordType>()) {
5117     //   The call is used to direct-initialize [...] the object that is the
5118     //   destination of the copy-initialization.
5119     //
5120     // In C++17, this does not call a constructor if we enter /17.6.1:
5121     //   - If the initializer expression is a prvalue and the cv-unqualified
5122     //     version of the source type is the same as the class of the
5123     //     destination [... do not make an extra copy]
5124     //
5125     // FIXME: Mark this copy as extraneous.
5126     if (!S.getLangOpts().CPlusPlus17 ||
5127         Function->getReturnType()->isReferenceType() ||
5128         !S.Context.hasSameUnqualifiedType(ConvType, DestType))
5129       Sequence.AddFinalCopy(DestType);
5130     else if (!S.Context.hasSameType(ConvType, DestType))
5131       Sequence.AddQualificationConversionStep(DestType, VK_RValue);
5132     return;
5133   }
5134 
5135   // If the conversion following the call to the conversion function
5136   // is interesting, add it as a separate step.
5137   if (Best->FinalConversion.First || Best->FinalConversion.Second ||
5138       Best->FinalConversion.Third) {
5139     ImplicitConversionSequence ICS;
5140     ICS.setStandard();
5141     ICS.Standard = Best->FinalConversion;
5142     Sequence.AddConversionSequenceStep(ICS, DestType, TopLevelOfInitList);
5143   }
5144 }
5145 
5146 /// An egregious hack for compatibility with libstdc++-4.2: in <tr1/hashtable>,
5147 /// a function with a pointer return type contains a 'return false;' statement.
5148 /// In C++11, 'false' is not a null pointer, so this breaks the build of any
5149 /// code using that header.
5150 ///
5151 /// Work around this by treating 'return false;' as zero-initializing the result
5152 /// if it's used in a pointer-returning function in a system header.
5153 static bool isLibstdcxxPointerReturnFalseHack(Sema &S,
5154                                               const InitializedEntity &Entity,
5155                                               const Expr *Init) {
5156   return S.getLangOpts().CPlusPlus11 &&
5157          Entity.getKind() == InitializedEntity::EK_Result &&
5158          Entity.getType()->isPointerType() &&
5159          isa<CXXBoolLiteralExpr>(Init) &&
5160          !cast<CXXBoolLiteralExpr>(Init)->getValue() &&
5161          S.getSourceManager().isInSystemHeader(Init->getExprLoc());
5162 }
5163 
5164 /// The non-zero enum values here are indexes into diagnostic alternatives.
5165 enum InvalidICRKind { IIK_okay, IIK_nonlocal, IIK_nonscalar };
5166 
5167 /// Determines whether this expression is an acceptable ICR source.
5168 static InvalidICRKind isInvalidICRSource(ASTContext &C, Expr *e,
5169                                          bool isAddressOf, bool &isWeakAccess) {
5170   // Skip parens.
5171   e = e->IgnoreParens();
5172 
5173   // Skip address-of nodes.
5174   if (UnaryOperator *op = dyn_cast<UnaryOperator>(e)) {
5175     if (op->getOpcode() == UO_AddrOf)
5176       return isInvalidICRSource(C, op->getSubExpr(), /*addressof*/ true,
5177                                 isWeakAccess);
5178 
5179   // Skip certain casts.
5180   } else if (CastExpr *ce = dyn_cast<CastExpr>(e)) {
5181     switch (ce->getCastKind()) {
5182     case CK_Dependent:
5183     case CK_BitCast:
5184     case CK_LValueBitCast:
5185     case CK_NoOp:
5186       return isInvalidICRSource(C, ce->getSubExpr(), isAddressOf, isWeakAccess);
5187 
5188     case CK_ArrayToPointerDecay:
5189       return IIK_nonscalar;
5190 
5191     case CK_NullToPointer:
5192       return IIK_okay;
5193 
5194     default:
5195       break;
5196     }
5197 
5198   // If we have a declaration reference, it had better be a local variable.
5199   } else if (isa<DeclRefExpr>(e)) {
5200     // set isWeakAccess to true, to mean that there will be an implicit
5201     // load which requires a cleanup.
5202     if (e->getType().getObjCLifetime() == Qualifiers::OCL_Weak)
5203       isWeakAccess = true;
5204 
5205     if (!isAddressOf) return IIK_nonlocal;
5206 
5207     VarDecl *var = dyn_cast<VarDecl>(cast<DeclRefExpr>(e)->getDecl());
5208     if (!var) return IIK_nonlocal;
5209 
5210     return (var->hasLocalStorage() ? IIK_okay : IIK_nonlocal);
5211 
5212   // If we have a conditional operator, check both sides.
5213   } else if (ConditionalOperator *cond = dyn_cast<ConditionalOperator>(e)) {
5214     if (InvalidICRKind iik = isInvalidICRSource(C, cond->getLHS(), isAddressOf,
5215                                                 isWeakAccess))
5216       return iik;
5217 
5218     return isInvalidICRSource(C, cond->getRHS(), isAddressOf, isWeakAccess);
5219 
5220   // These are never scalar.
5221   } else if (isa<ArraySubscriptExpr>(e)) {
5222     return IIK_nonscalar;
5223 
5224   // Otherwise, it needs to be a null pointer constant.
5225   } else {
5226     return (e->isNullPointerConstant(C, Expr::NPC_ValueDependentIsNull)
5227             ? IIK_okay : IIK_nonlocal);
5228   }
5229 
5230   return IIK_nonlocal;
5231 }
5232 
5233 /// Check whether the given expression is a valid operand for an
5234 /// indirect copy/restore.
5235 static void checkIndirectCopyRestoreSource(Sema &S, Expr *src) {
5236   assert(src->isRValue());
5237   bool isWeakAccess = false;
5238   InvalidICRKind iik = isInvalidICRSource(S.Context, src, false, isWeakAccess);
5239   // If isWeakAccess to true, there will be an implicit
5240   // load which requires a cleanup.
5241   if (S.getLangOpts().ObjCAutoRefCount && isWeakAccess)
5242     S.Cleanup.setExprNeedsCleanups(true);
5243 
5244   if (iik == IIK_okay) return;
5245 
5246   S.Diag(src->getExprLoc(), diag::err_arc_nonlocal_writeback)
5247     << ((unsigned) iik - 1)  // shift index into diagnostic explanations
5248     << src->getSourceRange();
5249 }
5250 
5251 /// Determine whether we have compatible array types for the
5252 /// purposes of GNU by-copy array initialization.
5253 static bool hasCompatibleArrayTypes(ASTContext &Context, const ArrayType *Dest,
5254                                     const ArrayType *Source) {
5255   // If the source and destination array types are equivalent, we're
5256   // done.
5257   if (Context.hasSameType(QualType(Dest, 0), QualType(Source, 0)))
5258     return true;
5259 
5260   // Make sure that the element types are the same.
5261   if (!Context.hasSameType(Dest->getElementType(), Source->getElementType()))
5262     return false;
5263 
5264   // The only mismatch we allow is when the destination is an
5265   // incomplete array type and the source is a constant array type.
5266   return Source->isConstantArrayType() && Dest->isIncompleteArrayType();
5267 }
5268 
5269 static bool tryObjCWritebackConversion(Sema &S,
5270                                        InitializationSequence &Sequence,
5271                                        const InitializedEntity &Entity,
5272                                        Expr *Initializer) {
5273   bool ArrayDecay = false;
5274   QualType ArgType = Initializer->getType();
5275   QualType ArgPointee;
5276   if (const ArrayType *ArgArrayType = S.Context.getAsArrayType(ArgType)) {
5277     ArrayDecay = true;
5278     ArgPointee = ArgArrayType->getElementType();
5279     ArgType = S.Context.getPointerType(ArgPointee);
5280   }
5281 
5282   // Handle write-back conversion.
5283   QualType ConvertedArgType;
5284   if (!S.isObjCWritebackConversion(ArgType, Entity.getType(),
5285                                    ConvertedArgType))
5286     return false;
5287 
5288   // We should copy unless we're passing to an argument explicitly
5289   // marked 'out'.
5290   bool ShouldCopy = true;
5291   if (ParmVarDecl *param = cast_or_null<ParmVarDecl>(Entity.getDecl()))
5292     ShouldCopy = (param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out);
5293 
5294   // Do we need an lvalue conversion?
5295   if (ArrayDecay || Initializer->isGLValue()) {
5296     ImplicitConversionSequence ICS;
5297     ICS.setStandard();
5298     ICS.Standard.setAsIdentityConversion();
5299 
5300     QualType ResultType;
5301     if (ArrayDecay) {
5302       ICS.Standard.First = ICK_Array_To_Pointer;
5303       ResultType = S.Context.getPointerType(ArgPointee);
5304     } else {
5305       ICS.Standard.First = ICK_Lvalue_To_Rvalue;
5306       ResultType = Initializer->getType().getNonLValueExprType(S.Context);
5307     }
5308 
5309     Sequence.AddConversionSequenceStep(ICS, ResultType);
5310   }
5311 
5312   Sequence.AddPassByIndirectCopyRestoreStep(Entity.getType(), ShouldCopy);
5313   return true;
5314 }
5315 
5316 static bool TryOCLSamplerInitialization(Sema &S,
5317                                         InitializationSequence &Sequence,
5318                                         QualType DestType,
5319                                         Expr *Initializer) {
5320   if (!S.getLangOpts().OpenCL || !DestType->isSamplerT() ||
5321       (!Initializer->isIntegerConstantExpr(S.Context) &&
5322       !Initializer->getType()->isSamplerT()))
5323     return false;
5324 
5325   Sequence.AddOCLSamplerInitStep(DestType);
5326   return true;
5327 }
5328 
5329 static bool IsZeroInitializer(Expr *Initializer, Sema &S) {
5330   return Initializer->isIntegerConstantExpr(S.getASTContext()) &&
5331     (Initializer->EvaluateKnownConstInt(S.getASTContext()) == 0);
5332 }
5333 
5334 static bool TryOCLZeroOpaqueTypeInitialization(Sema &S,
5335                                                InitializationSequence &Sequence,
5336                                                QualType DestType,
5337                                                Expr *Initializer) {
5338   if (!S.getLangOpts().OpenCL)
5339     return false;
5340 
5341   //
5342   // OpenCL 1.2 spec, s6.12.10
5343   //
5344   // The event argument can also be used to associate the
5345   // async_work_group_copy with a previous async copy allowing
5346   // an event to be shared by multiple async copies; otherwise
5347   // event should be zero.
5348   //
5349   if (DestType->isEventT() || DestType->isQueueT()) {
5350     if (!IsZeroInitializer(Initializer, S))
5351       return false;
5352 
5353     Sequence.AddOCLZeroOpaqueTypeStep(DestType);
5354     return true;
5355   }
5356 
5357   // We should allow zero initialization for all types defined in the
5358   // cl_intel_device_side_avc_motion_estimation extension, except
5359   // intel_sub_group_avc_mce_payload_t and intel_sub_group_avc_mce_result_t.
5360   if (S.getOpenCLOptions().isEnabled(
5361           "cl_intel_device_side_avc_motion_estimation") &&
5362       DestType->isOCLIntelSubgroupAVCType()) {
5363     if (DestType->isOCLIntelSubgroupAVCMcePayloadType() ||
5364         DestType->isOCLIntelSubgroupAVCMceResultType())
5365       return false;
5366     if (!IsZeroInitializer(Initializer, S))
5367       return false;
5368 
5369     Sequence.AddOCLZeroOpaqueTypeStep(DestType);
5370     return true;
5371   }
5372 
5373   return false;
5374 }
5375 
5376 InitializationSequence::InitializationSequence(Sema &S,
5377                                                const InitializedEntity &Entity,
5378                                                const InitializationKind &Kind,
5379                                                MultiExprArg Args,
5380                                                bool TopLevelOfInitList,
5381                                                bool TreatUnavailableAsInvalid)
5382     : FailedCandidateSet(Kind.getLocation(), OverloadCandidateSet::CSK_Normal) {
5383   InitializeFrom(S, Entity, Kind, Args, TopLevelOfInitList,
5384                  TreatUnavailableAsInvalid);
5385 }
5386 
5387 /// Tries to get a FunctionDecl out of `E`. If it succeeds and we can take the
5388 /// address of that function, this returns true. Otherwise, it returns false.
5389 static bool isExprAnUnaddressableFunction(Sema &S, const Expr *E) {
5390   auto *DRE = dyn_cast<DeclRefExpr>(E);
5391   if (!DRE || !isa<FunctionDecl>(DRE->getDecl()))
5392     return false;
5393 
5394   return !S.checkAddressOfFunctionIsAvailable(
5395       cast<FunctionDecl>(DRE->getDecl()));
5396 }
5397 
5398 /// Determine whether we can perform an elementwise array copy for this kind
5399 /// of entity.
5400 static bool canPerformArrayCopy(const InitializedEntity &Entity) {
5401   switch (Entity.getKind()) {
5402   case InitializedEntity::EK_LambdaCapture:
5403     // C++ [expr.prim.lambda]p24:
5404     //   For array members, the array elements are direct-initialized in
5405     //   increasing subscript order.
5406     return true;
5407 
5408   case InitializedEntity::EK_Variable:
5409     // C++ [dcl.decomp]p1:
5410     //   [...] each element is copy-initialized or direct-initialized from the
5411     //   corresponding element of the assignment-expression [...]
5412     return isa<DecompositionDecl>(Entity.getDecl());
5413 
5414   case InitializedEntity::EK_Member:
5415     // C++ [class.copy.ctor]p14:
5416     //   - if the member is an array, each element is direct-initialized with
5417     //     the corresponding subobject of x
5418     return Entity.isImplicitMemberInitializer();
5419 
5420   case InitializedEntity::EK_ArrayElement:
5421     // All the above cases are intended to apply recursively, even though none
5422     // of them actually say that.
5423     if (auto *E = Entity.getParent())
5424       return canPerformArrayCopy(*E);
5425     break;
5426 
5427   default:
5428     break;
5429   }
5430 
5431   return false;
5432 }
5433 
5434 void InitializationSequence::InitializeFrom(Sema &S,
5435                                             const InitializedEntity &Entity,
5436                                             const InitializationKind &Kind,
5437                                             MultiExprArg Args,
5438                                             bool TopLevelOfInitList,
5439                                             bool TreatUnavailableAsInvalid) {
5440   ASTContext &Context = S.Context;
5441 
5442   // Eliminate non-overload placeholder types in the arguments.  We
5443   // need to do this before checking whether types are dependent
5444   // because lowering a pseudo-object expression might well give us
5445   // something of dependent type.
5446   for (unsigned I = 0, E = Args.size(); I != E; ++I)
5447     if (Args[I]->getType()->isNonOverloadPlaceholderType()) {
5448       // FIXME: should we be doing this here?
5449       ExprResult result = S.CheckPlaceholderExpr(Args[I]);
5450       if (result.isInvalid()) {
5451         SetFailed(FK_PlaceholderType);
5452         return;
5453       }
5454       Args[I] = result.get();
5455     }
5456 
5457   // C++0x [dcl.init]p16:
5458   //   The semantics of initializers are as follows. The destination type is
5459   //   the type of the object or reference being initialized and the source
5460   //   type is the type of the initializer expression. The source type is not
5461   //   defined when the initializer is a braced-init-list or when it is a
5462   //   parenthesized list of expressions.
5463   QualType DestType = Entity.getType();
5464 
5465   if (DestType->isDependentType() ||
5466       Expr::hasAnyTypeDependentArguments(Args)) {
5467     SequenceKind = DependentSequence;
5468     return;
5469   }
5470 
5471   // Almost everything is a normal sequence.
5472   setSequenceKind(NormalSequence);
5473 
5474   QualType SourceType;
5475   Expr *Initializer = nullptr;
5476   if (Args.size() == 1) {
5477     Initializer = Args[0];
5478     if (S.getLangOpts().ObjC) {
5479       if (S.CheckObjCBridgeRelatedConversions(Initializer->getBeginLoc(),
5480                                               DestType, Initializer->getType(),
5481                                               Initializer) ||
5482           S.ConversionToObjCStringLiteralCheck(DestType, Initializer))
5483         Args[0] = Initializer;
5484     }
5485     if (!isa<InitListExpr>(Initializer))
5486       SourceType = Initializer->getType();
5487   }
5488 
5489   //     - If the initializer is a (non-parenthesized) braced-init-list, the
5490   //       object is list-initialized (8.5.4).
5491   if (Kind.getKind() != InitializationKind::IK_Direct) {
5492     if (InitListExpr *InitList = dyn_cast_or_null<InitListExpr>(Initializer)) {
5493       TryListInitialization(S, Entity, Kind, InitList, *this,
5494                             TreatUnavailableAsInvalid);
5495       return;
5496     }
5497   }
5498 
5499   //     - If the destination type is a reference type, see 8.5.3.
5500   if (DestType->isReferenceType()) {
5501     // C++0x [dcl.init.ref]p1:
5502     //   A variable declared to be a T& or T&&, that is, "reference to type T"
5503     //   (8.3.2), shall be initialized by an object, or function, of type T or
5504     //   by an object that can be converted into a T.
5505     // (Therefore, multiple arguments are not permitted.)
5506     if (Args.size() != 1)
5507       SetFailed(FK_TooManyInitsForReference);
5508     // C++17 [dcl.init.ref]p5:
5509     //   A reference [...] is initialized by an expression [...] as follows:
5510     // If the initializer is not an expression, presumably we should reject,
5511     // but the standard fails to actually say so.
5512     else if (isa<InitListExpr>(Args[0]))
5513       SetFailed(FK_ParenthesizedListInitForReference);
5514     else
5515       TryReferenceInitialization(S, Entity, Kind, Args[0], *this);
5516     return;
5517   }
5518 
5519   //     - If the initializer is (), the object is value-initialized.
5520   if (Kind.getKind() == InitializationKind::IK_Value ||
5521       (Kind.getKind() == InitializationKind::IK_Direct && Args.empty())) {
5522     TryValueInitialization(S, Entity, Kind, *this);
5523     return;
5524   }
5525 
5526   // Handle default initialization.
5527   if (Kind.getKind() == InitializationKind::IK_Default) {
5528     TryDefaultInitialization(S, Entity, Kind, *this);
5529     return;
5530   }
5531 
5532   //     - If the destination type is an array of characters, an array of
5533   //       char16_t, an array of char32_t, or an array of wchar_t, and the
5534   //       initializer is a string literal, see 8.5.2.
5535   //     - Otherwise, if the destination type is an array, the program is
5536   //       ill-formed.
5537   if (const ArrayType *DestAT = Context.getAsArrayType(DestType)) {
5538     if (Initializer && isa<VariableArrayType>(DestAT)) {
5539       SetFailed(FK_VariableLengthArrayHasInitializer);
5540       return;
5541     }
5542 
5543     if (Initializer) {
5544       switch (IsStringInit(Initializer, DestAT, Context)) {
5545       case SIF_None:
5546         TryStringLiteralInitialization(S, Entity, Kind, Initializer, *this);
5547         return;
5548       case SIF_NarrowStringIntoWideChar:
5549         SetFailed(FK_NarrowStringIntoWideCharArray);
5550         return;
5551       case SIF_WideStringIntoChar:
5552         SetFailed(FK_WideStringIntoCharArray);
5553         return;
5554       case SIF_IncompatWideStringIntoWideChar:
5555         SetFailed(FK_IncompatWideStringIntoWideChar);
5556         return;
5557       case SIF_PlainStringIntoUTF8Char:
5558         SetFailed(FK_PlainStringIntoUTF8Char);
5559         return;
5560       case SIF_UTF8StringIntoPlainChar:
5561         SetFailed(FK_UTF8StringIntoPlainChar);
5562         return;
5563       case SIF_Other:
5564         break;
5565       }
5566     }
5567 
5568     // Some kinds of initialization permit an array to be initialized from
5569     // another array of the same type, and perform elementwise initialization.
5570     if (Initializer && isa<ConstantArrayType>(DestAT) &&
5571         S.Context.hasSameUnqualifiedType(Initializer->getType(),
5572                                          Entity.getType()) &&
5573         canPerformArrayCopy(Entity)) {
5574       // If source is a prvalue, use it directly.
5575       if (Initializer->getValueKind() == VK_RValue) {
5576         AddArrayInitStep(DestType, /*IsGNUExtension*/false);
5577         return;
5578       }
5579 
5580       // Emit element-at-a-time copy loop.
5581       InitializedEntity Element =
5582           InitializedEntity::InitializeElement(S.Context, 0, Entity);
5583       QualType InitEltT =
5584           Context.getAsArrayType(Initializer->getType())->getElementType();
5585       OpaqueValueExpr OVE(Initializer->getExprLoc(), InitEltT,
5586                           Initializer->getValueKind(),
5587                           Initializer->getObjectKind());
5588       Expr *OVEAsExpr = &OVE;
5589       InitializeFrom(S, Element, Kind, OVEAsExpr, TopLevelOfInitList,
5590                      TreatUnavailableAsInvalid);
5591       if (!Failed())
5592         AddArrayInitLoopStep(Entity.getType(), InitEltT);
5593       return;
5594     }
5595 
5596     // Note: as an GNU C extension, we allow initialization of an
5597     // array from a compound literal that creates an array of the same
5598     // type, so long as the initializer has no side effects.
5599     if (!S.getLangOpts().CPlusPlus && Initializer &&
5600         isa<CompoundLiteralExpr>(Initializer->IgnoreParens()) &&
5601         Initializer->getType()->isArrayType()) {
5602       const ArrayType *SourceAT
5603         = Context.getAsArrayType(Initializer->getType());
5604       if (!hasCompatibleArrayTypes(S.Context, DestAT, SourceAT))
5605         SetFailed(FK_ArrayTypeMismatch);
5606       else if (Initializer->HasSideEffects(S.Context))
5607         SetFailed(FK_NonConstantArrayInit);
5608       else {
5609         AddArrayInitStep(DestType, /*IsGNUExtension*/true);
5610       }
5611     }
5612     // Note: as a GNU C++ extension, we allow list-initialization of a
5613     // class member of array type from a parenthesized initializer list.
5614     else if (S.getLangOpts().CPlusPlus &&
5615              Entity.getKind() == InitializedEntity::EK_Member &&
5616              Initializer && isa<InitListExpr>(Initializer)) {
5617       TryListInitialization(S, Entity, Kind, cast<InitListExpr>(Initializer),
5618                             *this, TreatUnavailableAsInvalid);
5619       AddParenthesizedArrayInitStep(DestType);
5620     } else if (DestAT->getElementType()->isCharType())
5621       SetFailed(FK_ArrayNeedsInitListOrStringLiteral);
5622     else if (IsWideCharCompatible(DestAT->getElementType(), Context))
5623       SetFailed(FK_ArrayNeedsInitListOrWideStringLiteral);
5624     else
5625       SetFailed(FK_ArrayNeedsInitList);
5626 
5627     return;
5628   }
5629 
5630   // Determine whether we should consider writeback conversions for
5631   // Objective-C ARC.
5632   bool allowObjCWritebackConversion = S.getLangOpts().ObjCAutoRefCount &&
5633          Entity.isParameterKind();
5634 
5635   // We're at the end of the line for C: it's either a write-back conversion
5636   // or it's a C assignment. There's no need to check anything else.
5637   if (!S.getLangOpts().CPlusPlus) {
5638     // If allowed, check whether this is an Objective-C writeback conversion.
5639     if (allowObjCWritebackConversion &&
5640         tryObjCWritebackConversion(S, *this, Entity, Initializer)) {
5641       return;
5642     }
5643 
5644     if (TryOCLSamplerInitialization(S, *this, DestType, Initializer))
5645       return;
5646 
5647     if (TryOCLZeroOpaqueTypeInitialization(S, *this, DestType, Initializer))
5648       return;
5649 
5650     // Handle initialization in C
5651     AddCAssignmentStep(DestType);
5652     MaybeProduceObjCObject(S, *this, Entity);
5653     return;
5654   }
5655 
5656   assert(S.getLangOpts().CPlusPlus);
5657 
5658   //     - If the destination type is a (possibly cv-qualified) class type:
5659   if (DestType->isRecordType()) {
5660     //     - If the initialization is direct-initialization, or if it is
5661     //       copy-initialization where the cv-unqualified version of the
5662     //       source type is the same class as, or a derived class of, the
5663     //       class of the destination, constructors are considered. [...]
5664     if (Kind.getKind() == InitializationKind::IK_Direct ||
5665         (Kind.getKind() == InitializationKind::IK_Copy &&
5666          (Context.hasSameUnqualifiedType(SourceType, DestType) ||
5667           S.IsDerivedFrom(Initializer->getBeginLoc(), SourceType, DestType))))
5668       TryConstructorInitialization(S, Entity, Kind, Args,
5669                                    DestType, DestType, *this);
5670     //     - Otherwise (i.e., for the remaining copy-initialization cases),
5671     //       user-defined conversion sequences that can convert from the source
5672     //       type to the destination type or (when a conversion function is
5673     //       used) to a derived class thereof are enumerated as described in
5674     //       13.3.1.4, and the best one is chosen through overload resolution
5675     //       (13.3).
5676     else
5677       TryUserDefinedConversion(S, DestType, Kind, Initializer, *this,
5678                                TopLevelOfInitList);
5679     return;
5680   }
5681 
5682   assert(Args.size() >= 1 && "Zero-argument case handled above");
5683 
5684   // The remaining cases all need a source type.
5685   if (Args.size() > 1) {
5686     SetFailed(FK_TooManyInitsForScalar);
5687     return;
5688   } else if (isa<InitListExpr>(Args[0])) {
5689     SetFailed(FK_ParenthesizedListInitForScalar);
5690     return;
5691   }
5692 
5693   //    - Otherwise, if the source type is a (possibly cv-qualified) class
5694   //      type, conversion functions are considered.
5695   if (!SourceType.isNull() && SourceType->isRecordType()) {
5696     // For a conversion to _Atomic(T) from either T or a class type derived
5697     // from T, initialize the T object then convert to _Atomic type.
5698     bool NeedAtomicConversion = false;
5699     if (const AtomicType *Atomic = DestType->getAs<AtomicType>()) {
5700       if (Context.hasSameUnqualifiedType(SourceType, Atomic->getValueType()) ||
5701           S.IsDerivedFrom(Initializer->getBeginLoc(), SourceType,
5702                           Atomic->getValueType())) {
5703         DestType = Atomic->getValueType();
5704         NeedAtomicConversion = true;
5705       }
5706     }
5707 
5708     TryUserDefinedConversion(S, DestType, Kind, Initializer, *this,
5709                              TopLevelOfInitList);
5710     MaybeProduceObjCObject(S, *this, Entity);
5711     if (!Failed() && NeedAtomicConversion)
5712       AddAtomicConversionStep(Entity.getType());
5713     return;
5714   }
5715 
5716   //    - Otherwise, the initial value of the object being initialized is the
5717   //      (possibly converted) value of the initializer expression. Standard
5718   //      conversions (Clause 4) will be used, if necessary, to convert the
5719   //      initializer expression to the cv-unqualified version of the
5720   //      destination type; no user-defined conversions are considered.
5721 
5722   ImplicitConversionSequence ICS
5723     = S.TryImplicitConversion(Initializer, DestType,
5724                               /*SuppressUserConversions*/true,
5725                               /*AllowExplicitConversions*/ false,
5726                               /*InOverloadResolution*/ false,
5727                               /*CStyle=*/Kind.isCStyleOrFunctionalCast(),
5728                               allowObjCWritebackConversion);
5729 
5730   if (ICS.isStandard() &&
5731       ICS.Standard.Second == ICK_Writeback_Conversion) {
5732     // Objective-C ARC writeback conversion.
5733 
5734     // We should copy unless we're passing to an argument explicitly
5735     // marked 'out'.
5736     bool ShouldCopy = true;
5737     if (ParmVarDecl *Param = cast_or_null<ParmVarDecl>(Entity.getDecl()))
5738       ShouldCopy = (Param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out);
5739 
5740     // If there was an lvalue adjustment, add it as a separate conversion.
5741     if (ICS.Standard.First == ICK_Array_To_Pointer ||
5742         ICS.Standard.First == ICK_Lvalue_To_Rvalue) {
5743       ImplicitConversionSequence LvalueICS;
5744       LvalueICS.setStandard();
5745       LvalueICS.Standard.setAsIdentityConversion();
5746       LvalueICS.Standard.setAllToTypes(ICS.Standard.getToType(0));
5747       LvalueICS.Standard.First = ICS.Standard.First;
5748       AddConversionSequenceStep(LvalueICS, ICS.Standard.getToType(0));
5749     }
5750 
5751     AddPassByIndirectCopyRestoreStep(DestType, ShouldCopy);
5752   } else if (ICS.isBad()) {
5753     DeclAccessPair dap;
5754     if (isLibstdcxxPointerReturnFalseHack(S, Entity, Initializer)) {
5755       AddZeroInitializationStep(Entity.getType());
5756     } else if (Initializer->getType() == Context.OverloadTy &&
5757                !S.ResolveAddressOfOverloadedFunction(Initializer, DestType,
5758                                                      false, dap))
5759       SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
5760     else if (Initializer->getType()->isFunctionType() &&
5761              isExprAnUnaddressableFunction(S, Initializer))
5762       SetFailed(InitializationSequence::FK_AddressOfUnaddressableFunction);
5763     else
5764       SetFailed(InitializationSequence::FK_ConversionFailed);
5765   } else {
5766     AddConversionSequenceStep(ICS, DestType, TopLevelOfInitList);
5767 
5768     MaybeProduceObjCObject(S, *this, Entity);
5769   }
5770 }
5771 
5772 InitializationSequence::~InitializationSequence() {
5773   for (auto &S : Steps)
5774     S.Destroy();
5775 }
5776 
5777 //===----------------------------------------------------------------------===//
5778 // Perform initialization
5779 //===----------------------------------------------------------------------===//
5780 static Sema::AssignmentAction
5781 getAssignmentAction(const InitializedEntity &Entity, bool Diagnose = false) {
5782   switch(Entity.getKind()) {
5783   case InitializedEntity::EK_Variable:
5784   case InitializedEntity::EK_New:
5785   case InitializedEntity::EK_Exception:
5786   case InitializedEntity::EK_Base:
5787   case InitializedEntity::EK_Delegating:
5788     return Sema::AA_Initializing;
5789 
5790   case InitializedEntity::EK_Parameter:
5791     if (Entity.getDecl() &&
5792         isa<ObjCMethodDecl>(Entity.getDecl()->getDeclContext()))
5793       return Sema::AA_Sending;
5794 
5795     return Sema::AA_Passing;
5796 
5797   case InitializedEntity::EK_Parameter_CF_Audited:
5798     if (Entity.getDecl() &&
5799       isa<ObjCMethodDecl>(Entity.getDecl()->getDeclContext()))
5800       return Sema::AA_Sending;
5801 
5802     return !Diagnose ? Sema::AA_Passing : Sema::AA_Passing_CFAudited;
5803 
5804   case InitializedEntity::EK_Result:
5805   case InitializedEntity::EK_StmtExprResult: // FIXME: Not quite right.
5806     return Sema::AA_Returning;
5807 
5808   case InitializedEntity::EK_Temporary:
5809   case InitializedEntity::EK_RelatedResult:
5810     // FIXME: Can we tell apart casting vs. converting?
5811     return Sema::AA_Casting;
5812 
5813   case InitializedEntity::EK_Member:
5814   case InitializedEntity::EK_Binding:
5815   case InitializedEntity::EK_ArrayElement:
5816   case InitializedEntity::EK_VectorElement:
5817   case InitializedEntity::EK_ComplexElement:
5818   case InitializedEntity::EK_BlockElement:
5819   case InitializedEntity::EK_LambdaToBlockConversionBlockElement:
5820   case InitializedEntity::EK_LambdaCapture:
5821   case InitializedEntity::EK_CompoundLiteralInit:
5822     return Sema::AA_Initializing;
5823   }
5824 
5825   llvm_unreachable("Invalid EntityKind!");
5826 }
5827 
5828 /// Whether we should bind a created object as a temporary when
5829 /// initializing the given entity.
5830 static bool shouldBindAsTemporary(const InitializedEntity &Entity) {
5831   switch (Entity.getKind()) {
5832   case InitializedEntity::EK_ArrayElement:
5833   case InitializedEntity::EK_Member:
5834   case InitializedEntity::EK_Result:
5835   case InitializedEntity::EK_StmtExprResult:
5836   case InitializedEntity::EK_New:
5837   case InitializedEntity::EK_Variable:
5838   case InitializedEntity::EK_Base:
5839   case InitializedEntity::EK_Delegating:
5840   case InitializedEntity::EK_VectorElement:
5841   case InitializedEntity::EK_ComplexElement:
5842   case InitializedEntity::EK_Exception:
5843   case InitializedEntity::EK_BlockElement:
5844   case InitializedEntity::EK_LambdaToBlockConversionBlockElement:
5845   case InitializedEntity::EK_LambdaCapture:
5846   case InitializedEntity::EK_CompoundLiteralInit:
5847     return false;
5848 
5849   case InitializedEntity::EK_Parameter:
5850   case InitializedEntity::EK_Parameter_CF_Audited:
5851   case InitializedEntity::EK_Temporary:
5852   case InitializedEntity::EK_RelatedResult:
5853   case InitializedEntity::EK_Binding:
5854     return true;
5855   }
5856 
5857   llvm_unreachable("missed an InitializedEntity kind?");
5858 }
5859 
5860 /// Whether the given entity, when initialized with an object
5861 /// created for that initialization, requires destruction.
5862 static bool shouldDestroyEntity(const InitializedEntity &Entity) {
5863   switch (Entity.getKind()) {
5864     case InitializedEntity::EK_Result:
5865     case InitializedEntity::EK_StmtExprResult:
5866     case InitializedEntity::EK_New:
5867     case InitializedEntity::EK_Base:
5868     case InitializedEntity::EK_Delegating:
5869     case InitializedEntity::EK_VectorElement:
5870     case InitializedEntity::EK_ComplexElement:
5871     case InitializedEntity::EK_BlockElement:
5872     case InitializedEntity::EK_LambdaToBlockConversionBlockElement:
5873     case InitializedEntity::EK_LambdaCapture:
5874       return false;
5875 
5876     case InitializedEntity::EK_Member:
5877     case InitializedEntity::EK_Binding:
5878     case InitializedEntity::EK_Variable:
5879     case InitializedEntity::EK_Parameter:
5880     case InitializedEntity::EK_Parameter_CF_Audited:
5881     case InitializedEntity::EK_Temporary:
5882     case InitializedEntity::EK_ArrayElement:
5883     case InitializedEntity::EK_Exception:
5884     case InitializedEntity::EK_CompoundLiteralInit:
5885     case InitializedEntity::EK_RelatedResult:
5886       return true;
5887   }
5888 
5889   llvm_unreachable("missed an InitializedEntity kind?");
5890 }
5891 
5892 /// Get the location at which initialization diagnostics should appear.
5893 static SourceLocation getInitializationLoc(const InitializedEntity &Entity,
5894                                            Expr *Initializer) {
5895   switch (Entity.getKind()) {
5896   case InitializedEntity::EK_Result:
5897   case InitializedEntity::EK_StmtExprResult:
5898     return Entity.getReturnLoc();
5899 
5900   case InitializedEntity::EK_Exception:
5901     return Entity.getThrowLoc();
5902 
5903   case InitializedEntity::EK_Variable:
5904   case InitializedEntity::EK_Binding:
5905     return Entity.getDecl()->getLocation();
5906 
5907   case InitializedEntity::EK_LambdaCapture:
5908     return Entity.getCaptureLoc();
5909 
5910   case InitializedEntity::EK_ArrayElement:
5911   case InitializedEntity::EK_Member:
5912   case InitializedEntity::EK_Parameter:
5913   case InitializedEntity::EK_Parameter_CF_Audited:
5914   case InitializedEntity::EK_Temporary:
5915   case InitializedEntity::EK_New:
5916   case InitializedEntity::EK_Base:
5917   case InitializedEntity::EK_Delegating:
5918   case InitializedEntity::EK_VectorElement:
5919   case InitializedEntity::EK_ComplexElement:
5920   case InitializedEntity::EK_BlockElement:
5921   case InitializedEntity::EK_LambdaToBlockConversionBlockElement:
5922   case InitializedEntity::EK_CompoundLiteralInit:
5923   case InitializedEntity::EK_RelatedResult:
5924     return Initializer->getBeginLoc();
5925   }
5926   llvm_unreachable("missed an InitializedEntity kind?");
5927 }
5928 
5929 /// Make a (potentially elidable) temporary copy of the object
5930 /// provided by the given initializer by calling the appropriate copy
5931 /// constructor.
5932 ///
5933 /// \param S The Sema object used for type-checking.
5934 ///
5935 /// \param T The type of the temporary object, which must either be
5936 /// the type of the initializer expression or a superclass thereof.
5937 ///
5938 /// \param Entity The entity being initialized.
5939 ///
5940 /// \param CurInit The initializer expression.
5941 ///
5942 /// \param IsExtraneousCopy Whether this is an "extraneous" copy that
5943 /// is permitted in C++03 (but not C++0x) when binding a reference to
5944 /// an rvalue.
5945 ///
5946 /// \returns An expression that copies the initializer expression into
5947 /// a temporary object, or an error expression if a copy could not be
5948 /// created.
5949 static ExprResult CopyObject(Sema &S,
5950                              QualType T,
5951                              const InitializedEntity &Entity,
5952                              ExprResult CurInit,
5953                              bool IsExtraneousCopy) {
5954   if (CurInit.isInvalid())
5955     return CurInit;
5956   // Determine which class type we're copying to.
5957   Expr *CurInitExpr = (Expr *)CurInit.get();
5958   CXXRecordDecl *Class = nullptr;
5959   if (const RecordType *Record = T->getAs<RecordType>())
5960     Class = cast<CXXRecordDecl>(Record->getDecl());
5961   if (!Class)
5962     return CurInit;
5963 
5964   SourceLocation Loc = getInitializationLoc(Entity, CurInit.get());
5965 
5966   // Make sure that the type we are copying is complete.
5967   if (S.RequireCompleteType(Loc, T, diag::err_temp_copy_incomplete))
5968     return CurInit;
5969 
5970   // Perform overload resolution using the class's constructors. Per
5971   // C++11 [dcl.init]p16, second bullet for class types, this initialization
5972   // is direct-initialization.
5973   OverloadCandidateSet CandidateSet(Loc, OverloadCandidateSet::CSK_Normal);
5974   DeclContext::lookup_result Ctors = S.LookupConstructors(Class);
5975 
5976   OverloadCandidateSet::iterator Best;
5977   switch (ResolveConstructorOverload(
5978       S, Loc, CurInitExpr, CandidateSet, T, Ctors, Best,
5979       /*CopyInitializing=*/false, /*AllowExplicit=*/true,
5980       /*OnlyListConstructors=*/false, /*IsListInit=*/false,
5981       /*SecondStepOfCopyInit=*/true)) {
5982   case OR_Success:
5983     break;
5984 
5985   case OR_No_Viable_Function:
5986     CandidateSet.NoteCandidates(
5987         PartialDiagnosticAt(
5988             Loc, S.PDiag(IsExtraneousCopy && !S.isSFINAEContext()
5989                              ? diag::ext_rvalue_to_reference_temp_copy_no_viable
5990                              : diag::err_temp_copy_no_viable)
5991                      << (int)Entity.getKind() << CurInitExpr->getType()
5992                      << CurInitExpr->getSourceRange()),
5993         S, OCD_AllCandidates, CurInitExpr);
5994     if (!IsExtraneousCopy || S.isSFINAEContext())
5995       return ExprError();
5996     return CurInit;
5997 
5998   case OR_Ambiguous:
5999     CandidateSet.NoteCandidates(
6000         PartialDiagnosticAt(Loc, S.PDiag(diag::err_temp_copy_ambiguous)
6001                                      << (int)Entity.getKind()
6002                                      << CurInitExpr->getType()
6003                                      << CurInitExpr->getSourceRange()),
6004         S, OCD_ViableCandidates, CurInitExpr);
6005     return ExprError();
6006 
6007   case OR_Deleted:
6008     S.Diag(Loc, diag::err_temp_copy_deleted)
6009       << (int)Entity.getKind() << CurInitExpr->getType()
6010       << CurInitExpr->getSourceRange();
6011     S.NoteDeletedFunction(Best->Function);
6012     return ExprError();
6013   }
6014 
6015   bool HadMultipleCandidates = CandidateSet.size() > 1;
6016 
6017   CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Best->Function);
6018   SmallVector<Expr*, 8> ConstructorArgs;
6019   CurInit.get(); // Ownership transferred into MultiExprArg, below.
6020 
6021   S.CheckConstructorAccess(Loc, Constructor, Best->FoundDecl, Entity,
6022                            IsExtraneousCopy);
6023 
6024   if (IsExtraneousCopy) {
6025     // If this is a totally extraneous copy for C++03 reference
6026     // binding purposes, just return the original initialization
6027     // expression. We don't generate an (elided) copy operation here
6028     // because doing so would require us to pass down a flag to avoid
6029     // infinite recursion, where each step adds another extraneous,
6030     // elidable copy.
6031 
6032     // Instantiate the default arguments of any extra parameters in
6033     // the selected copy constructor, as if we were going to create a
6034     // proper call to the copy constructor.
6035     for (unsigned I = 1, N = Constructor->getNumParams(); I != N; ++I) {
6036       ParmVarDecl *Parm = Constructor->getParamDecl(I);
6037       if (S.RequireCompleteType(Loc, Parm->getType(),
6038                                 diag::err_call_incomplete_argument))
6039         break;
6040 
6041       // Build the default argument expression; we don't actually care
6042       // if this succeeds or not, because this routine will complain
6043       // if there was a problem.
6044       S.BuildCXXDefaultArgExpr(Loc, Constructor, Parm);
6045     }
6046 
6047     return CurInitExpr;
6048   }
6049 
6050   // Determine the arguments required to actually perform the
6051   // constructor call (we might have derived-to-base conversions, or
6052   // the copy constructor may have default arguments).
6053   if (S.CompleteConstructorCall(Constructor, CurInitExpr, Loc, ConstructorArgs))
6054     return ExprError();
6055 
6056   // C++0x [class.copy]p32:
6057   //   When certain criteria are met, an implementation is allowed to
6058   //   omit the copy/move construction of a class object, even if the
6059   //   copy/move constructor and/or destructor for the object have
6060   //   side effects. [...]
6061   //     - when a temporary class object that has not been bound to a
6062   //       reference (12.2) would be copied/moved to a class object
6063   //       with the same cv-unqualified type, the copy/move operation
6064   //       can be omitted by constructing the temporary object
6065   //       directly into the target of the omitted copy/move
6066   //
6067   // Note that the other three bullets are handled elsewhere. Copy
6068   // elision for return statements and throw expressions are handled as part
6069   // of constructor initialization, while copy elision for exception handlers
6070   // is handled by the run-time.
6071   //
6072   // FIXME: If the function parameter is not the same type as the temporary, we
6073   // should still be able to elide the copy, but we don't have a way to
6074   // represent in the AST how much should be elided in this case.
6075   bool Elidable =
6076       CurInitExpr->isTemporaryObject(S.Context, Class) &&
6077       S.Context.hasSameUnqualifiedType(
6078           Best->Function->getParamDecl(0)->getType().getNonReferenceType(),
6079           CurInitExpr->getType());
6080 
6081   // Actually perform the constructor call.
6082   CurInit = S.BuildCXXConstructExpr(Loc, T, Best->FoundDecl, Constructor,
6083                                     Elidable,
6084                                     ConstructorArgs,
6085                                     HadMultipleCandidates,
6086                                     /*ListInit*/ false,
6087                                     /*StdInitListInit*/ false,
6088                                     /*ZeroInit*/ false,
6089                                     CXXConstructExpr::CK_Complete,
6090                                     SourceRange());
6091 
6092   // If we're supposed to bind temporaries, do so.
6093   if (!CurInit.isInvalid() && shouldBindAsTemporary(Entity))
6094     CurInit = S.MaybeBindToTemporary(CurInit.getAs<Expr>());
6095   return CurInit;
6096 }
6097 
6098 /// Check whether elidable copy construction for binding a reference to
6099 /// a temporary would have succeeded if we were building in C++98 mode, for
6100 /// -Wc++98-compat.
6101 static void CheckCXX98CompatAccessibleCopy(Sema &S,
6102                                            const InitializedEntity &Entity,
6103                                            Expr *CurInitExpr) {
6104   assert(S.getLangOpts().CPlusPlus11);
6105 
6106   const RecordType *Record = CurInitExpr->getType()->getAs<RecordType>();
6107   if (!Record)
6108     return;
6109 
6110   SourceLocation Loc = getInitializationLoc(Entity, CurInitExpr);
6111   if (S.Diags.isIgnored(diag::warn_cxx98_compat_temp_copy, Loc))
6112     return;
6113 
6114   // Find constructors which would have been considered.
6115   OverloadCandidateSet CandidateSet(Loc, OverloadCandidateSet::CSK_Normal);
6116   DeclContext::lookup_result Ctors =
6117       S.LookupConstructors(cast<CXXRecordDecl>(Record->getDecl()));
6118 
6119   // Perform overload resolution.
6120   OverloadCandidateSet::iterator Best;
6121   OverloadingResult OR = ResolveConstructorOverload(
6122       S, Loc, CurInitExpr, CandidateSet, CurInitExpr->getType(), Ctors, Best,
6123       /*CopyInitializing=*/false, /*AllowExplicit=*/true,
6124       /*OnlyListConstructors=*/false, /*IsListInit=*/false,
6125       /*SecondStepOfCopyInit=*/true);
6126 
6127   PartialDiagnostic Diag = S.PDiag(diag::warn_cxx98_compat_temp_copy)
6128     << OR << (int)Entity.getKind() << CurInitExpr->getType()
6129     << CurInitExpr->getSourceRange();
6130 
6131   switch (OR) {
6132   case OR_Success:
6133     S.CheckConstructorAccess(Loc, cast<CXXConstructorDecl>(Best->Function),
6134                              Best->FoundDecl, Entity, Diag);
6135     // FIXME: Check default arguments as far as that's possible.
6136     break;
6137 
6138   case OR_No_Viable_Function:
6139     CandidateSet.NoteCandidates(PartialDiagnosticAt(Loc, Diag), S,
6140                                 OCD_AllCandidates, CurInitExpr);
6141     break;
6142 
6143   case OR_Ambiguous:
6144     CandidateSet.NoteCandidates(PartialDiagnosticAt(Loc, Diag), S,
6145                                 OCD_ViableCandidates, CurInitExpr);
6146     break;
6147 
6148   case OR_Deleted:
6149     S.Diag(Loc, Diag);
6150     S.NoteDeletedFunction(Best->Function);
6151     break;
6152   }
6153 }
6154 
6155 void InitializationSequence::PrintInitLocationNote(Sema &S,
6156                                               const InitializedEntity &Entity) {
6157   if (Entity.isParameterKind() && Entity.getDecl()) {
6158     if (Entity.getDecl()->getLocation().isInvalid())
6159       return;
6160 
6161     if (Entity.getDecl()->getDeclName())
6162       S.Diag(Entity.getDecl()->getLocation(), diag::note_parameter_named_here)
6163         << Entity.getDecl()->getDeclName();
6164     else
6165       S.Diag(Entity.getDecl()->getLocation(), diag::note_parameter_here);
6166   }
6167   else if (Entity.getKind() == InitializedEntity::EK_RelatedResult &&
6168            Entity.getMethodDecl())
6169     S.Diag(Entity.getMethodDecl()->getLocation(),
6170            diag::note_method_return_type_change)
6171       << Entity.getMethodDecl()->getDeclName();
6172 }
6173 
6174 /// Returns true if the parameters describe a constructor initialization of
6175 /// an explicit temporary object, e.g. "Point(x, y)".
6176 static bool isExplicitTemporary(const InitializedEntity &Entity,
6177                                 const InitializationKind &Kind,
6178                                 unsigned NumArgs) {
6179   switch (Entity.getKind()) {
6180   case InitializedEntity::EK_Temporary:
6181   case InitializedEntity::EK_CompoundLiteralInit:
6182   case InitializedEntity::EK_RelatedResult:
6183     break;
6184   default:
6185     return false;
6186   }
6187 
6188   switch (Kind.getKind()) {
6189   case InitializationKind::IK_DirectList:
6190     return true;
6191   // FIXME: Hack to work around cast weirdness.
6192   case InitializationKind::IK_Direct:
6193   case InitializationKind::IK_Value:
6194     return NumArgs != 1;
6195   default:
6196     return false;
6197   }
6198 }
6199 
6200 static ExprResult
6201 PerformConstructorInitialization(Sema &S,
6202                                  const InitializedEntity &Entity,
6203                                  const InitializationKind &Kind,
6204                                  MultiExprArg Args,
6205                                  const InitializationSequence::Step& Step,
6206                                  bool &ConstructorInitRequiresZeroInit,
6207                                  bool IsListInitialization,
6208                                  bool IsStdInitListInitialization,
6209                                  SourceLocation LBraceLoc,
6210                                  SourceLocation RBraceLoc) {
6211   unsigned NumArgs = Args.size();
6212   CXXConstructorDecl *Constructor
6213     = cast<CXXConstructorDecl>(Step.Function.Function);
6214   bool HadMultipleCandidates = Step.Function.HadMultipleCandidates;
6215 
6216   // Build a call to the selected constructor.
6217   SmallVector<Expr*, 8> ConstructorArgs;
6218   SourceLocation Loc = (Kind.isCopyInit() && Kind.getEqualLoc().isValid())
6219                          ? Kind.getEqualLoc()
6220                          : Kind.getLocation();
6221 
6222   if (Kind.getKind() == InitializationKind::IK_Default) {
6223     // Force even a trivial, implicit default constructor to be
6224     // semantically checked. We do this explicitly because we don't build
6225     // the definition for completely trivial constructors.
6226     assert(Constructor->getParent() && "No parent class for constructor.");
6227     if (Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
6228         Constructor->isTrivial() && !Constructor->isUsed(false))
6229       S.DefineImplicitDefaultConstructor(Loc, Constructor);
6230   }
6231 
6232   ExprResult CurInit((Expr *)nullptr);
6233 
6234   // C++ [over.match.copy]p1:
6235   //   - When initializing a temporary to be bound to the first parameter
6236   //     of a constructor that takes a reference to possibly cv-qualified
6237   //     T as its first argument, called with a single argument in the
6238   //     context of direct-initialization, explicit conversion functions
6239   //     are also considered.
6240   bool AllowExplicitConv =
6241       Kind.AllowExplicit() && !Kind.isCopyInit() && Args.size() == 1 &&
6242       hasCopyOrMoveCtorParam(S.Context,
6243                              getConstructorInfo(Step.Function.FoundDecl));
6244 
6245   // Determine the arguments required to actually perform the constructor
6246   // call.
6247   if (S.CompleteConstructorCall(Constructor, Args,
6248                                 Loc, ConstructorArgs,
6249                                 AllowExplicitConv,
6250                                 IsListInitialization))
6251     return ExprError();
6252 
6253 
6254   if (isExplicitTemporary(Entity, Kind, NumArgs)) {
6255     // An explicitly-constructed temporary, e.g., X(1, 2).
6256     if (S.DiagnoseUseOfDecl(Constructor, Loc))
6257       return ExprError();
6258 
6259     TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo();
6260     if (!TSInfo)
6261       TSInfo = S.Context.getTrivialTypeSourceInfo(Entity.getType(), Loc);
6262     SourceRange ParenOrBraceRange =
6263         (Kind.getKind() == InitializationKind::IK_DirectList)
6264         ? SourceRange(LBraceLoc, RBraceLoc)
6265         : Kind.getParenOrBraceRange();
6266 
6267     if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(
6268             Step.Function.FoundDecl.getDecl())) {
6269       Constructor = S.findInheritingConstructor(Loc, Constructor, Shadow);
6270       if (S.DiagnoseUseOfDecl(Constructor, Loc))
6271         return ExprError();
6272     }
6273     S.MarkFunctionReferenced(Loc, Constructor);
6274 
6275     CurInit = CXXTemporaryObjectExpr::Create(
6276         S.Context, Constructor,
6277         Entity.getType().getNonLValueExprType(S.Context), TSInfo,
6278         ConstructorArgs, ParenOrBraceRange, HadMultipleCandidates,
6279         IsListInitialization, IsStdInitListInitialization,
6280         ConstructorInitRequiresZeroInit);
6281   } else {
6282     CXXConstructExpr::ConstructionKind ConstructKind =
6283       CXXConstructExpr::CK_Complete;
6284 
6285     if (Entity.getKind() == InitializedEntity::EK_Base) {
6286       ConstructKind = Entity.getBaseSpecifier()->isVirtual() ?
6287         CXXConstructExpr::CK_VirtualBase :
6288         CXXConstructExpr::CK_NonVirtualBase;
6289     } else if (Entity.getKind() == InitializedEntity::EK_Delegating) {
6290       ConstructKind = CXXConstructExpr::CK_Delegating;
6291     }
6292 
6293     // Only get the parenthesis or brace range if it is a list initialization or
6294     // direct construction.
6295     SourceRange ParenOrBraceRange;
6296     if (IsListInitialization)
6297       ParenOrBraceRange = SourceRange(LBraceLoc, RBraceLoc);
6298     else if (Kind.getKind() == InitializationKind::IK_Direct)
6299       ParenOrBraceRange = Kind.getParenOrBraceRange();
6300 
6301     // If the entity allows NRVO, mark the construction as elidable
6302     // unconditionally.
6303     if (Entity.allowsNRVO())
6304       CurInit = S.BuildCXXConstructExpr(Loc, Step.Type,
6305                                         Step.Function.FoundDecl,
6306                                         Constructor, /*Elidable=*/true,
6307                                         ConstructorArgs,
6308                                         HadMultipleCandidates,
6309                                         IsListInitialization,
6310                                         IsStdInitListInitialization,
6311                                         ConstructorInitRequiresZeroInit,
6312                                         ConstructKind,
6313                                         ParenOrBraceRange);
6314     else
6315       CurInit = S.BuildCXXConstructExpr(Loc, Step.Type,
6316                                         Step.Function.FoundDecl,
6317                                         Constructor,
6318                                         ConstructorArgs,
6319                                         HadMultipleCandidates,
6320                                         IsListInitialization,
6321                                         IsStdInitListInitialization,
6322                                         ConstructorInitRequiresZeroInit,
6323                                         ConstructKind,
6324                                         ParenOrBraceRange);
6325   }
6326   if (CurInit.isInvalid())
6327     return ExprError();
6328 
6329   // Only check access if all of that succeeded.
6330   S.CheckConstructorAccess(Loc, Constructor, Step.Function.FoundDecl, Entity);
6331   if (S.DiagnoseUseOfDecl(Step.Function.FoundDecl, Loc))
6332     return ExprError();
6333 
6334   if (const ArrayType *AT = S.Context.getAsArrayType(Entity.getType()))
6335     if (checkDestructorReference(S.Context.getBaseElementType(AT), Loc, S))
6336       return ExprError();
6337 
6338   if (shouldBindAsTemporary(Entity))
6339     CurInit = S.MaybeBindToTemporary(CurInit.get());
6340 
6341   return CurInit;
6342 }
6343 
6344 namespace {
6345 enum LifetimeKind {
6346   /// The lifetime of a temporary bound to this entity ends at the end of the
6347   /// full-expression, and that's (probably) fine.
6348   LK_FullExpression,
6349 
6350   /// The lifetime of a temporary bound to this entity is extended to the
6351   /// lifeitme of the entity itself.
6352   LK_Extended,
6353 
6354   /// The lifetime of a temporary bound to this entity probably ends too soon,
6355   /// because the entity is allocated in a new-expression.
6356   LK_New,
6357 
6358   /// The lifetime of a temporary bound to this entity ends too soon, because
6359   /// the entity is a return object.
6360   LK_Return,
6361 
6362   /// The lifetime of a temporary bound to this entity ends too soon, because
6363   /// the entity is the result of a statement expression.
6364   LK_StmtExprResult,
6365 
6366   /// This is a mem-initializer: if it would extend a temporary (other than via
6367   /// a default member initializer), the program is ill-formed.
6368   LK_MemInitializer,
6369 };
6370 using LifetimeResult =
6371     llvm::PointerIntPair<const InitializedEntity *, 3, LifetimeKind>;
6372 }
6373 
6374 /// Determine the declaration which an initialized entity ultimately refers to,
6375 /// for the purpose of lifetime-extending a temporary bound to a reference in
6376 /// the initialization of \p Entity.
6377 static LifetimeResult getEntityLifetime(
6378     const InitializedEntity *Entity,
6379     const InitializedEntity *InitField = nullptr) {
6380   // C++11 [class.temporary]p5:
6381   switch (Entity->getKind()) {
6382   case InitializedEntity::EK_Variable:
6383     //   The temporary [...] persists for the lifetime of the reference
6384     return {Entity, LK_Extended};
6385 
6386   case InitializedEntity::EK_Member:
6387     // For subobjects, we look at the complete object.
6388     if (Entity->getParent())
6389       return getEntityLifetime(Entity->getParent(), Entity);
6390 
6391     //   except:
6392     // C++17 [class.base.init]p8:
6393     //   A temporary expression bound to a reference member in a
6394     //   mem-initializer is ill-formed.
6395     // C++17 [class.base.init]p11:
6396     //   A temporary expression bound to a reference member from a
6397     //   default member initializer is ill-formed.
6398     //
6399     // The context of p11 and its example suggest that it's only the use of a
6400     // default member initializer from a constructor that makes the program
6401     // ill-formed, not its mere existence, and that it can even be used by
6402     // aggregate initialization.
6403     return {Entity, Entity->isDefaultMemberInitializer() ? LK_Extended
6404                                                          : LK_MemInitializer};
6405 
6406   case InitializedEntity::EK_Binding:
6407     // Per [dcl.decomp]p3, the binding is treated as a variable of reference
6408     // type.
6409     return {Entity, LK_Extended};
6410 
6411   case InitializedEntity::EK_Parameter:
6412   case InitializedEntity::EK_Parameter_CF_Audited:
6413     //   -- A temporary bound to a reference parameter in a function call
6414     //      persists until the completion of the full-expression containing
6415     //      the call.
6416     return {nullptr, LK_FullExpression};
6417 
6418   case InitializedEntity::EK_Result:
6419     //   -- The lifetime of a temporary bound to the returned value in a
6420     //      function return statement is not extended; the temporary is
6421     //      destroyed at the end of the full-expression in the return statement.
6422     return {nullptr, LK_Return};
6423 
6424   case InitializedEntity::EK_StmtExprResult:
6425     // FIXME: Should we lifetime-extend through the result of a statement
6426     // expression?
6427     return {nullptr, LK_StmtExprResult};
6428 
6429   case InitializedEntity::EK_New:
6430     //   -- A temporary bound to a reference in a new-initializer persists
6431     //      until the completion of the full-expression containing the
6432     //      new-initializer.
6433     return {nullptr, LK_New};
6434 
6435   case InitializedEntity::EK_Temporary:
6436   case InitializedEntity::EK_CompoundLiteralInit:
6437   case InitializedEntity::EK_RelatedResult:
6438     // We don't yet know the storage duration of the surrounding temporary.
6439     // Assume it's got full-expression duration for now, it will patch up our
6440     // storage duration if that's not correct.
6441     return {nullptr, LK_FullExpression};
6442 
6443   case InitializedEntity::EK_ArrayElement:
6444     // For subobjects, we look at the complete object.
6445     return getEntityLifetime(Entity->getParent(), InitField);
6446 
6447   case InitializedEntity::EK_Base:
6448     // For subobjects, we look at the complete object.
6449     if (Entity->getParent())
6450       return getEntityLifetime(Entity->getParent(), InitField);
6451     return {InitField, LK_MemInitializer};
6452 
6453   case InitializedEntity::EK_Delegating:
6454     // We can reach this case for aggregate initialization in a constructor:
6455     //   struct A { int &&r; };
6456     //   struct B : A { B() : A{0} {} };
6457     // In this case, use the outermost field decl as the context.
6458     return {InitField, LK_MemInitializer};
6459 
6460   case InitializedEntity::EK_BlockElement:
6461   case InitializedEntity::EK_LambdaToBlockConversionBlockElement:
6462   case InitializedEntity::EK_LambdaCapture:
6463   case InitializedEntity::EK_VectorElement:
6464   case InitializedEntity::EK_ComplexElement:
6465     return {nullptr, LK_FullExpression};
6466 
6467   case InitializedEntity::EK_Exception:
6468     // FIXME: Can we diagnose lifetime problems with exceptions?
6469     return {nullptr, LK_FullExpression};
6470   }
6471   llvm_unreachable("unknown entity kind");
6472 }
6473 
6474 namespace {
6475 enum ReferenceKind {
6476   /// Lifetime would be extended by a reference binding to a temporary.
6477   RK_ReferenceBinding,
6478   /// Lifetime would be extended by a std::initializer_list object binding to
6479   /// its backing array.
6480   RK_StdInitializerList,
6481 };
6482 
6483 /// A temporary or local variable. This will be one of:
6484 ///  * A MaterializeTemporaryExpr.
6485 ///  * A DeclRefExpr whose declaration is a local.
6486 ///  * An AddrLabelExpr.
6487 ///  * A BlockExpr for a block with captures.
6488 using Local = Expr*;
6489 
6490 /// Expressions we stepped over when looking for the local state. Any steps
6491 /// that would inhibit lifetime extension or take us out of subexpressions of
6492 /// the initializer are included.
6493 struct IndirectLocalPathEntry {
6494   enum EntryKind {
6495     DefaultInit,
6496     AddressOf,
6497     VarInit,
6498     LValToRVal,
6499     LifetimeBoundCall,
6500   } Kind;
6501   Expr *E;
6502   const Decl *D = nullptr;
6503   IndirectLocalPathEntry() {}
6504   IndirectLocalPathEntry(EntryKind K, Expr *E) : Kind(K), E(E) {}
6505   IndirectLocalPathEntry(EntryKind K, Expr *E, const Decl *D)
6506       : Kind(K), E(E), D(D) {}
6507 };
6508 
6509 using IndirectLocalPath = llvm::SmallVectorImpl<IndirectLocalPathEntry>;
6510 
6511 struct RevertToOldSizeRAII {
6512   IndirectLocalPath &Path;
6513   unsigned OldSize = Path.size();
6514   RevertToOldSizeRAII(IndirectLocalPath &Path) : Path(Path) {}
6515   ~RevertToOldSizeRAII() { Path.resize(OldSize); }
6516 };
6517 
6518 using LocalVisitor = llvm::function_ref<bool(IndirectLocalPath &Path, Local L,
6519                                              ReferenceKind RK)>;
6520 }
6521 
6522 static bool isVarOnPath(IndirectLocalPath &Path, VarDecl *VD) {
6523   for (auto E : Path)
6524     if (E.Kind == IndirectLocalPathEntry::VarInit && E.D == VD)
6525       return true;
6526   return false;
6527 }
6528 
6529 static bool pathContainsInit(IndirectLocalPath &Path) {
6530   return llvm::any_of(Path, [=](IndirectLocalPathEntry E) {
6531     return E.Kind == IndirectLocalPathEntry::DefaultInit ||
6532            E.Kind == IndirectLocalPathEntry::VarInit;
6533   });
6534 }
6535 
6536 static void visitLocalsRetainedByInitializer(IndirectLocalPath &Path,
6537                                              Expr *Init, LocalVisitor Visit,
6538                                              bool RevisitSubinits);
6539 
6540 static void visitLocalsRetainedByReferenceBinding(IndirectLocalPath &Path,
6541                                                   Expr *Init, ReferenceKind RK,
6542                                                   LocalVisitor Visit);
6543 
6544 static bool implicitObjectParamIsLifetimeBound(const FunctionDecl *FD) {
6545   const TypeSourceInfo *TSI = FD->getTypeSourceInfo();
6546   if (!TSI)
6547     return false;
6548   // Don't declare this variable in the second operand of the for-statement;
6549   // GCC miscompiles that by ending its lifetime before evaluating the
6550   // third operand. See gcc.gnu.org/PR86769.
6551   AttributedTypeLoc ATL;
6552   for (TypeLoc TL = TSI->getTypeLoc();
6553        (ATL = TL.getAsAdjusted<AttributedTypeLoc>());
6554        TL = ATL.getModifiedLoc()) {
6555     if (ATL.getAttrAs<LifetimeBoundAttr>())
6556       return true;
6557   }
6558   return false;
6559 }
6560 
6561 static void visitLifetimeBoundArguments(IndirectLocalPath &Path, Expr *Call,
6562                                         LocalVisitor Visit) {
6563   const FunctionDecl *Callee;
6564   ArrayRef<Expr*> Args;
6565 
6566   if (auto *CE = dyn_cast<CallExpr>(Call)) {
6567     Callee = CE->getDirectCallee();
6568     Args = llvm::makeArrayRef(CE->getArgs(), CE->getNumArgs());
6569   } else {
6570     auto *CCE = cast<CXXConstructExpr>(Call);
6571     Callee = CCE->getConstructor();
6572     Args = llvm::makeArrayRef(CCE->getArgs(), CCE->getNumArgs());
6573   }
6574   if (!Callee)
6575     return;
6576 
6577   Expr *ObjectArg = nullptr;
6578   if (isa<CXXOperatorCallExpr>(Call) && Callee->isCXXInstanceMember()) {
6579     ObjectArg = Args[0];
6580     Args = Args.slice(1);
6581   } else if (auto *MCE = dyn_cast<CXXMemberCallExpr>(Call)) {
6582     ObjectArg = MCE->getImplicitObjectArgument();
6583   }
6584 
6585   auto VisitLifetimeBoundArg = [&](const Decl *D, Expr *Arg) {
6586     Path.push_back({IndirectLocalPathEntry::LifetimeBoundCall, Arg, D});
6587     if (Arg->isGLValue())
6588       visitLocalsRetainedByReferenceBinding(Path, Arg, RK_ReferenceBinding,
6589                                             Visit);
6590     else
6591       visitLocalsRetainedByInitializer(Path, Arg, Visit, true);
6592     Path.pop_back();
6593   };
6594 
6595   if (ObjectArg && implicitObjectParamIsLifetimeBound(Callee))
6596     VisitLifetimeBoundArg(Callee, ObjectArg);
6597 
6598   for (unsigned I = 0,
6599                 N = std::min<unsigned>(Callee->getNumParams(), Args.size());
6600        I != N; ++I) {
6601     if (Callee->getParamDecl(I)->hasAttr<LifetimeBoundAttr>())
6602       VisitLifetimeBoundArg(Callee->getParamDecl(I), Args[I]);
6603   }
6604 }
6605 
6606 /// Visit the locals that would be reachable through a reference bound to the
6607 /// glvalue expression \c Init.
6608 static void visitLocalsRetainedByReferenceBinding(IndirectLocalPath &Path,
6609                                                   Expr *Init, ReferenceKind RK,
6610                                                   LocalVisitor Visit) {
6611   RevertToOldSizeRAII RAII(Path);
6612 
6613   // Walk past any constructs which we can lifetime-extend across.
6614   Expr *Old;
6615   do {
6616     Old = Init;
6617 
6618     if (auto *FE = dyn_cast<FullExpr>(Init))
6619       Init = FE->getSubExpr();
6620 
6621     if (InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) {
6622       // If this is just redundant braces around an initializer, step over it.
6623       if (ILE->isTransparent())
6624         Init = ILE->getInit(0);
6625     }
6626 
6627     // Step over any subobject adjustments; we may have a materialized
6628     // temporary inside them.
6629     Init = const_cast<Expr *>(Init->skipRValueSubobjectAdjustments());
6630 
6631     // Per current approach for DR1376, look through casts to reference type
6632     // when performing lifetime extension.
6633     if (CastExpr *CE = dyn_cast<CastExpr>(Init))
6634       if (CE->getSubExpr()->isGLValue())
6635         Init = CE->getSubExpr();
6636 
6637     // Per the current approach for DR1299, look through array element access
6638     // on array glvalues when performing lifetime extension.
6639     if (auto *ASE = dyn_cast<ArraySubscriptExpr>(Init)) {
6640       Init = ASE->getBase();
6641       auto *ICE = dyn_cast<ImplicitCastExpr>(Init);
6642       if (ICE && ICE->getCastKind() == CK_ArrayToPointerDecay)
6643         Init = ICE->getSubExpr();
6644       else
6645         // We can't lifetime extend through this but we might still find some
6646         // retained temporaries.
6647         return visitLocalsRetainedByInitializer(Path, Init, Visit, true);
6648     }
6649 
6650     // Step into CXXDefaultInitExprs so we can diagnose cases where a
6651     // constructor inherits one as an implicit mem-initializer.
6652     if (auto *DIE = dyn_cast<CXXDefaultInitExpr>(Init)) {
6653       Path.push_back(
6654           {IndirectLocalPathEntry::DefaultInit, DIE, DIE->getField()});
6655       Init = DIE->getExpr();
6656     }
6657   } while (Init != Old);
6658 
6659   if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(Init)) {
6660     if (Visit(Path, Local(MTE), RK))
6661       visitLocalsRetainedByInitializer(Path, MTE->GetTemporaryExpr(), Visit,
6662                                        true);
6663   }
6664 
6665   if (isa<CallExpr>(Init))
6666     return visitLifetimeBoundArguments(Path, Init, Visit);
6667 
6668   switch (Init->getStmtClass()) {
6669   case Stmt::DeclRefExprClass: {
6670     // If we find the name of a local non-reference parameter, we could have a
6671     // lifetime problem.
6672     auto *DRE = cast<DeclRefExpr>(Init);
6673     auto *VD = dyn_cast<VarDecl>(DRE->getDecl());
6674     if (VD && VD->hasLocalStorage() &&
6675         !DRE->refersToEnclosingVariableOrCapture()) {
6676       if (!VD->getType()->isReferenceType()) {
6677         Visit(Path, Local(DRE), RK);
6678       } else if (isa<ParmVarDecl>(DRE->getDecl())) {
6679         // The lifetime of a reference parameter is unknown; assume it's OK
6680         // for now.
6681         break;
6682       } else if (VD->getInit() && !isVarOnPath(Path, VD)) {
6683         Path.push_back({IndirectLocalPathEntry::VarInit, DRE, VD});
6684         visitLocalsRetainedByReferenceBinding(Path, VD->getInit(),
6685                                               RK_ReferenceBinding, Visit);
6686       }
6687     }
6688     break;
6689   }
6690 
6691   case Stmt::UnaryOperatorClass: {
6692     // The only unary operator that make sense to handle here
6693     // is Deref.  All others don't resolve to a "name."  This includes
6694     // handling all sorts of rvalues passed to a unary operator.
6695     const UnaryOperator *U = cast<UnaryOperator>(Init);
6696     if (U->getOpcode() == UO_Deref)
6697       visitLocalsRetainedByInitializer(Path, U->getSubExpr(), Visit, true);
6698     break;
6699   }
6700 
6701   case Stmt::OMPArraySectionExprClass: {
6702     visitLocalsRetainedByInitializer(
6703         Path, cast<OMPArraySectionExpr>(Init)->getBase(), Visit, true);
6704     break;
6705   }
6706 
6707   case Stmt::ConditionalOperatorClass:
6708   case Stmt::BinaryConditionalOperatorClass: {
6709     auto *C = cast<AbstractConditionalOperator>(Init);
6710     if (!C->getTrueExpr()->getType()->isVoidType())
6711       visitLocalsRetainedByReferenceBinding(Path, C->getTrueExpr(), RK, Visit);
6712     if (!C->getFalseExpr()->getType()->isVoidType())
6713       visitLocalsRetainedByReferenceBinding(Path, C->getFalseExpr(), RK, Visit);
6714     break;
6715   }
6716 
6717   // FIXME: Visit the left-hand side of an -> or ->*.
6718 
6719   default:
6720     break;
6721   }
6722 }
6723 
6724 /// Visit the locals that would be reachable through an object initialized by
6725 /// the prvalue expression \c Init.
6726 static void visitLocalsRetainedByInitializer(IndirectLocalPath &Path,
6727                                              Expr *Init, LocalVisitor Visit,
6728                                              bool RevisitSubinits) {
6729   RevertToOldSizeRAII RAII(Path);
6730 
6731   Expr *Old;
6732   do {
6733     Old = Init;
6734 
6735     // Step into CXXDefaultInitExprs so we can diagnose cases where a
6736     // constructor inherits one as an implicit mem-initializer.
6737     if (auto *DIE = dyn_cast<CXXDefaultInitExpr>(Init)) {
6738       Path.push_back({IndirectLocalPathEntry::DefaultInit, DIE, DIE->getField()});
6739       Init = DIE->getExpr();
6740     }
6741 
6742     if (auto *FE = dyn_cast<FullExpr>(Init))
6743       Init = FE->getSubExpr();
6744 
6745     // Dig out the expression which constructs the extended temporary.
6746     Init = const_cast<Expr *>(Init->skipRValueSubobjectAdjustments());
6747 
6748     if (CXXBindTemporaryExpr *BTE = dyn_cast<CXXBindTemporaryExpr>(Init))
6749       Init = BTE->getSubExpr();
6750 
6751     Init = Init->IgnoreParens();
6752 
6753     // Step over value-preserving rvalue casts.
6754     if (auto *CE = dyn_cast<CastExpr>(Init)) {
6755       switch (CE->getCastKind()) {
6756       case CK_LValueToRValue:
6757         // If we can match the lvalue to a const object, we can look at its
6758         // initializer.
6759         Path.push_back({IndirectLocalPathEntry::LValToRVal, CE});
6760         return visitLocalsRetainedByReferenceBinding(
6761             Path, Init, RK_ReferenceBinding,
6762             [&](IndirectLocalPath &Path, Local L, ReferenceKind RK) -> bool {
6763           if (auto *DRE = dyn_cast<DeclRefExpr>(L)) {
6764             auto *VD = dyn_cast<VarDecl>(DRE->getDecl());
6765             if (VD && VD->getType().isConstQualified() && VD->getInit() &&
6766                 !isVarOnPath(Path, VD)) {
6767               Path.push_back({IndirectLocalPathEntry::VarInit, DRE, VD});
6768               visitLocalsRetainedByInitializer(Path, VD->getInit(), Visit, true);
6769             }
6770           } else if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(L)) {
6771             if (MTE->getType().isConstQualified())
6772               visitLocalsRetainedByInitializer(Path, MTE->GetTemporaryExpr(),
6773                                                Visit, true);
6774           }
6775           return false;
6776         });
6777 
6778         // We assume that objects can be retained by pointers cast to integers,
6779         // but not if the integer is cast to floating-point type or to _Complex.
6780         // We assume that casts to 'bool' do not preserve enough information to
6781         // retain a local object.
6782       case CK_NoOp:
6783       case CK_BitCast:
6784       case CK_BaseToDerived:
6785       case CK_DerivedToBase:
6786       case CK_UncheckedDerivedToBase:
6787       case CK_Dynamic:
6788       case CK_ToUnion:
6789       case CK_UserDefinedConversion:
6790       case CK_ConstructorConversion:
6791       case CK_IntegralToPointer:
6792       case CK_PointerToIntegral:
6793       case CK_VectorSplat:
6794       case CK_IntegralCast:
6795       case CK_CPointerToObjCPointerCast:
6796       case CK_BlockPointerToObjCPointerCast:
6797       case CK_AnyPointerToBlockPointerCast:
6798       case CK_AddressSpaceConversion:
6799         break;
6800 
6801       case CK_ArrayToPointerDecay:
6802         // Model array-to-pointer decay as taking the address of the array
6803         // lvalue.
6804         Path.push_back({IndirectLocalPathEntry::AddressOf, CE});
6805         return visitLocalsRetainedByReferenceBinding(Path, CE->getSubExpr(),
6806                                                      RK_ReferenceBinding, Visit);
6807 
6808       default:
6809         return;
6810       }
6811 
6812       Init = CE->getSubExpr();
6813     }
6814   } while (Old != Init);
6815 
6816   // C++17 [dcl.init.list]p6:
6817   //   initializing an initializer_list object from the array extends the
6818   //   lifetime of the array exactly like binding a reference to a temporary.
6819   if (auto *ILE = dyn_cast<CXXStdInitializerListExpr>(Init))
6820     return visitLocalsRetainedByReferenceBinding(Path, ILE->getSubExpr(),
6821                                                  RK_StdInitializerList, Visit);
6822 
6823   if (InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) {
6824     // We already visited the elements of this initializer list while
6825     // performing the initialization. Don't visit them again unless we've
6826     // changed the lifetime of the initialized entity.
6827     if (!RevisitSubinits)
6828       return;
6829 
6830     if (ILE->isTransparent())
6831       return visitLocalsRetainedByInitializer(Path, ILE->getInit(0), Visit,
6832                                               RevisitSubinits);
6833 
6834     if (ILE->getType()->isArrayType()) {
6835       for (unsigned I = 0, N = ILE->getNumInits(); I != N; ++I)
6836         visitLocalsRetainedByInitializer(Path, ILE->getInit(I), Visit,
6837                                          RevisitSubinits);
6838       return;
6839     }
6840 
6841     if (CXXRecordDecl *RD = ILE->getType()->getAsCXXRecordDecl()) {
6842       assert(RD->isAggregate() && "aggregate init on non-aggregate");
6843 
6844       // If we lifetime-extend a braced initializer which is initializing an
6845       // aggregate, and that aggregate contains reference members which are
6846       // bound to temporaries, those temporaries are also lifetime-extended.
6847       if (RD->isUnion() && ILE->getInitializedFieldInUnion() &&
6848           ILE->getInitializedFieldInUnion()->getType()->isReferenceType())
6849         visitLocalsRetainedByReferenceBinding(Path, ILE->getInit(0),
6850                                               RK_ReferenceBinding, Visit);
6851       else {
6852         unsigned Index = 0;
6853         for (; Index < RD->getNumBases() && Index < ILE->getNumInits(); ++Index)
6854           visitLocalsRetainedByInitializer(Path, ILE->getInit(Index), Visit,
6855                                            RevisitSubinits);
6856         for (const auto *I : RD->fields()) {
6857           if (Index >= ILE->getNumInits())
6858             break;
6859           if (I->isUnnamedBitfield())
6860             continue;
6861           Expr *SubInit = ILE->getInit(Index);
6862           if (I->getType()->isReferenceType())
6863             visitLocalsRetainedByReferenceBinding(Path, SubInit,
6864                                                   RK_ReferenceBinding, Visit);
6865           else
6866             // This might be either aggregate-initialization of a member or
6867             // initialization of a std::initializer_list object. Regardless,
6868             // we should recursively lifetime-extend that initializer.
6869             visitLocalsRetainedByInitializer(Path, SubInit, Visit,
6870                                              RevisitSubinits);
6871           ++Index;
6872         }
6873       }
6874     }
6875     return;
6876   }
6877 
6878   // The lifetime of an init-capture is that of the closure object constructed
6879   // by a lambda-expression.
6880   if (auto *LE = dyn_cast<LambdaExpr>(Init)) {
6881     for (Expr *E : LE->capture_inits()) {
6882       if (!E)
6883         continue;
6884       if (E->isGLValue())
6885         visitLocalsRetainedByReferenceBinding(Path, E, RK_ReferenceBinding,
6886                                               Visit);
6887       else
6888         visitLocalsRetainedByInitializer(Path, E, Visit, true);
6889     }
6890   }
6891 
6892   if (isa<CallExpr>(Init) || isa<CXXConstructExpr>(Init))
6893     return visitLifetimeBoundArguments(Path, Init, Visit);
6894 
6895   switch (Init->getStmtClass()) {
6896   case Stmt::UnaryOperatorClass: {
6897     auto *UO = cast<UnaryOperator>(Init);
6898     // If the initializer is the address of a local, we could have a lifetime
6899     // problem.
6900     if (UO->getOpcode() == UO_AddrOf) {
6901       // If this is &rvalue, then it's ill-formed and we have already diagnosed
6902       // it. Don't produce a redundant warning about the lifetime of the
6903       // temporary.
6904       if (isa<MaterializeTemporaryExpr>(UO->getSubExpr()))
6905         return;
6906 
6907       Path.push_back({IndirectLocalPathEntry::AddressOf, UO});
6908       visitLocalsRetainedByReferenceBinding(Path, UO->getSubExpr(),
6909                                             RK_ReferenceBinding, Visit);
6910     }
6911     break;
6912   }
6913 
6914   case Stmt::BinaryOperatorClass: {
6915     // Handle pointer arithmetic.
6916     auto *BO = cast<BinaryOperator>(Init);
6917     BinaryOperatorKind BOK = BO->getOpcode();
6918     if (!BO->getType()->isPointerType() || (BOK != BO_Add && BOK != BO_Sub))
6919       break;
6920 
6921     if (BO->getLHS()->getType()->isPointerType())
6922       visitLocalsRetainedByInitializer(Path, BO->getLHS(), Visit, true);
6923     else if (BO->getRHS()->getType()->isPointerType())
6924       visitLocalsRetainedByInitializer(Path, BO->getRHS(), Visit, true);
6925     break;
6926   }
6927 
6928   case Stmt::ConditionalOperatorClass:
6929   case Stmt::BinaryConditionalOperatorClass: {
6930     auto *C = cast<AbstractConditionalOperator>(Init);
6931     // In C++, we can have a throw-expression operand, which has 'void' type
6932     // and isn't interesting from a lifetime perspective.
6933     if (!C->getTrueExpr()->getType()->isVoidType())
6934       visitLocalsRetainedByInitializer(Path, C->getTrueExpr(), Visit, true);
6935     if (!C->getFalseExpr()->getType()->isVoidType())
6936       visitLocalsRetainedByInitializer(Path, C->getFalseExpr(), Visit, true);
6937     break;
6938   }
6939 
6940   case Stmt::BlockExprClass:
6941     if (cast<BlockExpr>(Init)->getBlockDecl()->hasCaptures()) {
6942       // This is a local block, whose lifetime is that of the function.
6943       Visit(Path, Local(cast<BlockExpr>(Init)), RK_ReferenceBinding);
6944     }
6945     break;
6946 
6947   case Stmt::AddrLabelExprClass:
6948     // We want to warn if the address of a label would escape the function.
6949     Visit(Path, Local(cast<AddrLabelExpr>(Init)), RK_ReferenceBinding);
6950     break;
6951 
6952   default:
6953     break;
6954   }
6955 }
6956 
6957 /// Determine whether this is an indirect path to a temporary that we are
6958 /// supposed to lifetime-extend along (but don't).
6959 static bool shouldLifetimeExtendThroughPath(const IndirectLocalPath &Path) {
6960   for (auto Elem : Path) {
6961     if (Elem.Kind != IndirectLocalPathEntry::DefaultInit)
6962       return false;
6963   }
6964   return true;
6965 }
6966 
6967 /// Find the range for the first interesting entry in the path at or after I.
6968 static SourceRange nextPathEntryRange(const IndirectLocalPath &Path, unsigned I,
6969                                       Expr *E) {
6970   for (unsigned N = Path.size(); I != N; ++I) {
6971     switch (Path[I].Kind) {
6972     case IndirectLocalPathEntry::AddressOf:
6973     case IndirectLocalPathEntry::LValToRVal:
6974     case IndirectLocalPathEntry::LifetimeBoundCall:
6975       // These exist primarily to mark the path as not permitting or
6976       // supporting lifetime extension.
6977       break;
6978 
6979     case IndirectLocalPathEntry::DefaultInit:
6980     case IndirectLocalPathEntry::VarInit:
6981       return Path[I].E->getSourceRange();
6982     }
6983   }
6984   return E->getSourceRange();
6985 }
6986 
6987 void Sema::checkInitializerLifetime(const InitializedEntity &Entity,
6988                                     Expr *Init) {
6989   LifetimeResult LR = getEntityLifetime(&Entity);
6990   LifetimeKind LK = LR.getInt();
6991   const InitializedEntity *ExtendingEntity = LR.getPointer();
6992 
6993   // If this entity doesn't have an interesting lifetime, don't bother looking
6994   // for temporaries within its initializer.
6995   if (LK == LK_FullExpression)
6996     return;
6997 
6998   auto TemporaryVisitor = [&](IndirectLocalPath &Path, Local L,
6999                               ReferenceKind RK) -> bool {
7000     SourceRange DiagRange = nextPathEntryRange(Path, 0, L);
7001     SourceLocation DiagLoc = DiagRange.getBegin();
7002 
7003     switch (LK) {
7004     case LK_FullExpression:
7005       llvm_unreachable("already handled this");
7006 
7007     case LK_Extended: {
7008       auto *MTE = dyn_cast<MaterializeTemporaryExpr>(L);
7009       if (!MTE) {
7010         // The initialized entity has lifetime beyond the full-expression,
7011         // and the local entity does too, so don't warn.
7012         //
7013         // FIXME: We should consider warning if a static / thread storage
7014         // duration variable retains an automatic storage duration local.
7015         return false;
7016       }
7017 
7018       // Lifetime-extend the temporary.
7019       if (Path.empty()) {
7020         // Update the storage duration of the materialized temporary.
7021         // FIXME: Rebuild the expression instead of mutating it.
7022         MTE->setExtendingDecl(ExtendingEntity->getDecl(),
7023                               ExtendingEntity->allocateManglingNumber());
7024         // Also visit the temporaries lifetime-extended by this initializer.
7025         return true;
7026       }
7027 
7028       if (shouldLifetimeExtendThroughPath(Path)) {
7029         // We're supposed to lifetime-extend the temporary along this path (per
7030         // the resolution of DR1815), but we don't support that yet.
7031         //
7032         // FIXME: Properly handle this situation. Perhaps the easiest approach
7033         // would be to clone the initializer expression on each use that would
7034         // lifetime extend its temporaries.
7035         Diag(DiagLoc, diag::warn_unsupported_lifetime_extension)
7036             << RK << DiagRange;
7037       } else {
7038         // If the path goes through the initialization of a variable or field,
7039         // it can't possibly reach a temporary created in this full-expression.
7040         // We will have already diagnosed any problems with the initializer.
7041         if (pathContainsInit(Path))
7042           return false;
7043 
7044         Diag(DiagLoc, diag::warn_dangling_variable)
7045             << RK << !Entity.getParent()
7046             << ExtendingEntity->getDecl()->isImplicit()
7047             << ExtendingEntity->getDecl() << Init->isGLValue() << DiagRange;
7048       }
7049       break;
7050     }
7051 
7052     case LK_MemInitializer: {
7053       if (isa<MaterializeTemporaryExpr>(L)) {
7054         // Under C++ DR1696, if a mem-initializer (or a default member
7055         // initializer used by the absence of one) would lifetime-extend a
7056         // temporary, the program is ill-formed.
7057         if (auto *ExtendingDecl =
7058                 ExtendingEntity ? ExtendingEntity->getDecl() : nullptr) {
7059           bool IsSubobjectMember = ExtendingEntity != &Entity;
7060           Diag(DiagLoc, shouldLifetimeExtendThroughPath(Path)
7061                             ? diag::err_dangling_member
7062                             : diag::warn_dangling_member)
7063               << ExtendingDecl << IsSubobjectMember << RK << DiagRange;
7064           // Don't bother adding a note pointing to the field if we're inside
7065           // its default member initializer; our primary diagnostic points to
7066           // the same place in that case.
7067           if (Path.empty() ||
7068               Path.back().Kind != IndirectLocalPathEntry::DefaultInit) {
7069             Diag(ExtendingDecl->getLocation(),
7070                  diag::note_lifetime_extending_member_declared_here)
7071                 << RK << IsSubobjectMember;
7072           }
7073         } else {
7074           // We have a mem-initializer but no particular field within it; this
7075           // is either a base class or a delegating initializer directly
7076           // initializing the base-class from something that doesn't live long
7077           // enough.
7078           //
7079           // FIXME: Warn on this.
7080           return false;
7081         }
7082       } else {
7083         // Paths via a default initializer can only occur during error recovery
7084         // (there's no other way that a default initializer can refer to a
7085         // local). Don't produce a bogus warning on those cases.
7086         if (pathContainsInit(Path))
7087           return false;
7088 
7089         auto *DRE = dyn_cast<DeclRefExpr>(L);
7090         auto *VD = DRE ? dyn_cast<VarDecl>(DRE->getDecl()) : nullptr;
7091         if (!VD) {
7092           // A member was initialized to a local block.
7093           // FIXME: Warn on this.
7094           return false;
7095         }
7096 
7097         if (auto *Member =
7098                 ExtendingEntity ? ExtendingEntity->getDecl() : nullptr) {
7099           bool IsPointer = Member->getType()->isAnyPointerType();
7100           Diag(DiagLoc, IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
7101                                   : diag::warn_bind_ref_member_to_parameter)
7102               << Member << VD << isa<ParmVarDecl>(VD) << DiagRange;
7103           Diag(Member->getLocation(),
7104                diag::note_ref_or_ptr_member_declared_here)
7105               << (unsigned)IsPointer;
7106         }
7107       }
7108       break;
7109     }
7110 
7111     case LK_New:
7112       if (isa<MaterializeTemporaryExpr>(L)) {
7113         Diag(DiagLoc, RK == RK_ReferenceBinding
7114                           ? diag::warn_new_dangling_reference
7115                           : diag::warn_new_dangling_initializer_list)
7116             << !Entity.getParent() << DiagRange;
7117       } else {
7118         // We can't determine if the allocation outlives the local declaration.
7119         return false;
7120       }
7121       break;
7122 
7123     case LK_Return:
7124     case LK_StmtExprResult:
7125       if (auto *DRE = dyn_cast<DeclRefExpr>(L)) {
7126         // We can't determine if the local variable outlives the statement
7127         // expression.
7128         if (LK == LK_StmtExprResult)
7129           return false;
7130         Diag(DiagLoc, diag::warn_ret_stack_addr_ref)
7131             << Entity.getType()->isReferenceType() << DRE->getDecl()
7132             << isa<ParmVarDecl>(DRE->getDecl()) << DiagRange;
7133       } else if (isa<BlockExpr>(L)) {
7134         Diag(DiagLoc, diag::err_ret_local_block) << DiagRange;
7135       } else if (isa<AddrLabelExpr>(L)) {
7136         // Don't warn when returning a label from a statement expression.
7137         // Leaving the scope doesn't end its lifetime.
7138         if (LK == LK_StmtExprResult)
7139           return false;
7140         Diag(DiagLoc, diag::warn_ret_addr_label) << DiagRange;
7141       } else {
7142         Diag(DiagLoc, diag::warn_ret_local_temp_addr_ref)
7143          << Entity.getType()->isReferenceType() << DiagRange;
7144       }
7145       break;
7146     }
7147 
7148     for (unsigned I = 0; I != Path.size(); ++I) {
7149       auto Elem = Path[I];
7150 
7151       switch (Elem.Kind) {
7152       case IndirectLocalPathEntry::AddressOf:
7153       case IndirectLocalPathEntry::LValToRVal:
7154         // These exist primarily to mark the path as not permitting or
7155         // supporting lifetime extension.
7156         break;
7157 
7158       case IndirectLocalPathEntry::LifetimeBoundCall:
7159         // FIXME: Consider adding a note for this.
7160         break;
7161 
7162       case IndirectLocalPathEntry::DefaultInit: {
7163         auto *FD = cast<FieldDecl>(Elem.D);
7164         Diag(FD->getLocation(), diag::note_init_with_default_member_initalizer)
7165             << FD << nextPathEntryRange(Path, I + 1, L);
7166         break;
7167       }
7168 
7169       case IndirectLocalPathEntry::VarInit:
7170         const VarDecl *VD = cast<VarDecl>(Elem.D);
7171         Diag(VD->getLocation(), diag::note_local_var_initializer)
7172             << VD->getType()->isReferenceType()
7173             << VD->isImplicit() << VD->getDeclName()
7174             << nextPathEntryRange(Path, I + 1, L);
7175         break;
7176       }
7177     }
7178 
7179     // We didn't lifetime-extend, so don't go any further; we don't need more
7180     // warnings or errors on inner temporaries within this one's initializer.
7181     return false;
7182   };
7183 
7184   llvm::SmallVector<IndirectLocalPathEntry, 8> Path;
7185   if (Init->isGLValue())
7186     visitLocalsRetainedByReferenceBinding(Path, Init, RK_ReferenceBinding,
7187                                           TemporaryVisitor);
7188   else
7189     visitLocalsRetainedByInitializer(Path, Init, TemporaryVisitor, false);
7190 }
7191 
7192 static void DiagnoseNarrowingInInitList(Sema &S,
7193                                         const ImplicitConversionSequence &ICS,
7194                                         QualType PreNarrowingType,
7195                                         QualType EntityType,
7196                                         const Expr *PostInit);
7197 
7198 /// Provide warnings when std::move is used on construction.
7199 static void CheckMoveOnConstruction(Sema &S, const Expr *InitExpr,
7200                                     bool IsReturnStmt) {
7201   if (!InitExpr)
7202     return;
7203 
7204   if (S.inTemplateInstantiation())
7205     return;
7206 
7207   QualType DestType = InitExpr->getType();
7208   if (!DestType->isRecordType())
7209     return;
7210 
7211   unsigned DiagID = 0;
7212   if (IsReturnStmt) {
7213     const CXXConstructExpr *CCE =
7214         dyn_cast<CXXConstructExpr>(InitExpr->IgnoreParens());
7215     if (!CCE || CCE->getNumArgs() != 1)
7216       return;
7217 
7218     if (!CCE->getConstructor()->isCopyOrMoveConstructor())
7219       return;
7220 
7221     InitExpr = CCE->getArg(0)->IgnoreImpCasts();
7222   }
7223 
7224   // Find the std::move call and get the argument.
7225   const CallExpr *CE = dyn_cast<CallExpr>(InitExpr->IgnoreParens());
7226   if (!CE || !CE->isCallToStdMove())
7227     return;
7228 
7229   const Expr *Arg = CE->getArg(0)->IgnoreImplicit();
7230 
7231   if (IsReturnStmt) {
7232     const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg->IgnoreParenImpCasts());
7233     if (!DRE || DRE->refersToEnclosingVariableOrCapture())
7234       return;
7235 
7236     const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl());
7237     if (!VD || !VD->hasLocalStorage())
7238       return;
7239 
7240     // __block variables are not moved implicitly.
7241     if (VD->hasAttr<BlocksAttr>())
7242       return;
7243 
7244     QualType SourceType = VD->getType();
7245     if (!SourceType->isRecordType())
7246       return;
7247 
7248     if (!S.Context.hasSameUnqualifiedType(DestType, SourceType)) {
7249       return;
7250     }
7251 
7252     // If we're returning a function parameter, copy elision
7253     // is not possible.
7254     if (isa<ParmVarDecl>(VD))
7255       DiagID = diag::warn_redundant_move_on_return;
7256     else
7257       DiagID = diag::warn_pessimizing_move_on_return;
7258   } else {
7259     DiagID = diag::warn_pessimizing_move_on_initialization;
7260     const Expr *ArgStripped = Arg->IgnoreImplicit()->IgnoreParens();
7261     if (!ArgStripped->isRValue() || !ArgStripped->getType()->isRecordType())
7262       return;
7263   }
7264 
7265   S.Diag(CE->getBeginLoc(), DiagID);
7266 
7267   // Get all the locations for a fix-it.  Don't emit the fix-it if any location
7268   // is within a macro.
7269   SourceLocation CallBegin = CE->getCallee()->getBeginLoc();
7270   if (CallBegin.isMacroID())
7271     return;
7272   SourceLocation RParen = CE->getRParenLoc();
7273   if (RParen.isMacroID())
7274     return;
7275   SourceLocation LParen;
7276   SourceLocation ArgLoc = Arg->getBeginLoc();
7277 
7278   // Special testing for the argument location.  Since the fix-it needs the
7279   // location right before the argument, the argument location can be in a
7280   // macro only if it is at the beginning of the macro.
7281   while (ArgLoc.isMacroID() &&
7282          S.getSourceManager().isAtStartOfImmediateMacroExpansion(ArgLoc)) {
7283     ArgLoc = S.getSourceManager().getImmediateExpansionRange(ArgLoc).getBegin();
7284   }
7285 
7286   if (LParen.isMacroID())
7287     return;
7288 
7289   LParen = ArgLoc.getLocWithOffset(-1);
7290 
7291   S.Diag(CE->getBeginLoc(), diag::note_remove_move)
7292       << FixItHint::CreateRemoval(SourceRange(CallBegin, LParen))
7293       << FixItHint::CreateRemoval(SourceRange(RParen, RParen));
7294 }
7295 
7296 static void CheckForNullPointerDereference(Sema &S, const Expr *E) {
7297   // Check to see if we are dereferencing a null pointer.  If so, this is
7298   // undefined behavior, so warn about it.  This only handles the pattern
7299   // "*null", which is a very syntactic check.
7300   if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E->IgnoreParenCasts()))
7301     if (UO->getOpcode() == UO_Deref &&
7302         UO->getSubExpr()->IgnoreParenCasts()->
7303         isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull)) {
7304     S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO,
7305                           S.PDiag(diag::warn_binding_null_to_reference)
7306                             << UO->getSubExpr()->getSourceRange());
7307   }
7308 }
7309 
7310 MaterializeTemporaryExpr *
7311 Sema::CreateMaterializeTemporaryExpr(QualType T, Expr *Temporary,
7312                                      bool BoundToLvalueReference) {
7313   auto MTE = new (Context)
7314       MaterializeTemporaryExpr(T, Temporary, BoundToLvalueReference);
7315 
7316   // Order an ExprWithCleanups for lifetime marks.
7317   //
7318   // TODO: It'll be good to have a single place to check the access of the
7319   // destructor and generate ExprWithCleanups for various uses. Currently these
7320   // are done in both CreateMaterializeTemporaryExpr and MaybeBindToTemporary,
7321   // but there may be a chance to merge them.
7322   Cleanup.setExprNeedsCleanups(false);
7323   return MTE;
7324 }
7325 
7326 ExprResult Sema::TemporaryMaterializationConversion(Expr *E) {
7327   // In C++98, we don't want to implicitly create an xvalue.
7328   // FIXME: This means that AST consumers need to deal with "prvalues" that
7329   // denote materialized temporaries. Maybe we should add another ValueKind
7330   // for "xvalue pretending to be a prvalue" for C++98 support.
7331   if (!E->isRValue() || !getLangOpts().CPlusPlus11)
7332     return E;
7333 
7334   // C++1z [conv.rval]/1: T shall be a complete type.
7335   // FIXME: Does this ever matter (can we form a prvalue of incomplete type)?
7336   // If so, we should check for a non-abstract class type here too.
7337   QualType T = E->getType();
7338   if (RequireCompleteType(E->getExprLoc(), T, diag::err_incomplete_type))
7339     return ExprError();
7340 
7341   return CreateMaterializeTemporaryExpr(E->getType(), E, false);
7342 }
7343 
7344 ExprResult Sema::PerformQualificationConversion(Expr *E, QualType Ty,
7345                                                 ExprValueKind VK,
7346                                                 CheckedConversionKind CCK) {
7347 
7348   CastKind CK = CK_NoOp;
7349 
7350   if (VK == VK_RValue) {
7351     auto PointeeTy = Ty->getPointeeType();
7352     auto ExprPointeeTy = E->getType()->getPointeeType();
7353     if (!PointeeTy.isNull() &&
7354         PointeeTy.getAddressSpace() != ExprPointeeTy.getAddressSpace())
7355       CK = CK_AddressSpaceConversion;
7356   } else if (Ty.getAddressSpace() != E->getType().getAddressSpace()) {
7357     CK = CK_AddressSpaceConversion;
7358   }
7359 
7360   return ImpCastExprToType(E, Ty, CK, VK, /*BasePath=*/nullptr, CCK);
7361 }
7362 
7363 ExprResult InitializationSequence::Perform(Sema &S,
7364                                            const InitializedEntity &Entity,
7365                                            const InitializationKind &Kind,
7366                                            MultiExprArg Args,
7367                                            QualType *ResultType) {
7368   if (Failed()) {
7369     Diagnose(S, Entity, Kind, Args);
7370     return ExprError();
7371   }
7372   if (!ZeroInitializationFixit.empty()) {
7373     unsigned DiagID = diag::err_default_init_const;
7374     if (Decl *D = Entity.getDecl())
7375       if (S.getLangOpts().MSVCCompat && D->hasAttr<SelectAnyAttr>())
7376         DiagID = diag::ext_default_init_const;
7377 
7378     // The initialization would have succeeded with this fixit. Since the fixit
7379     // is on the error, we need to build a valid AST in this case, so this isn't
7380     // handled in the Failed() branch above.
7381     QualType DestType = Entity.getType();
7382     S.Diag(Kind.getLocation(), DiagID)
7383         << DestType << (bool)DestType->getAs<RecordType>()
7384         << FixItHint::CreateInsertion(ZeroInitializationFixitLoc,
7385                                       ZeroInitializationFixit);
7386   }
7387 
7388   if (getKind() == DependentSequence) {
7389     // If the declaration is a non-dependent, incomplete array type
7390     // that has an initializer, then its type will be completed once
7391     // the initializer is instantiated.
7392     if (ResultType && !Entity.getType()->isDependentType() &&
7393         Args.size() == 1) {
7394       QualType DeclType = Entity.getType();
7395       if (const IncompleteArrayType *ArrayT
7396                            = S.Context.getAsIncompleteArrayType(DeclType)) {
7397         // FIXME: We don't currently have the ability to accurately
7398         // compute the length of an initializer list without
7399         // performing full type-checking of the initializer list
7400         // (since we have to determine where braces are implicitly
7401         // introduced and such).  So, we fall back to making the array
7402         // type a dependently-sized array type with no specified
7403         // bound.
7404         if (isa<InitListExpr>((Expr *)Args[0])) {
7405           SourceRange Brackets;
7406 
7407           // Scavange the location of the brackets from the entity, if we can.
7408           if (auto *DD = dyn_cast_or_null<DeclaratorDecl>(Entity.getDecl())) {
7409             if (TypeSourceInfo *TInfo = DD->getTypeSourceInfo()) {
7410               TypeLoc TL = TInfo->getTypeLoc();
7411               if (IncompleteArrayTypeLoc ArrayLoc =
7412                       TL.getAs<IncompleteArrayTypeLoc>())
7413                 Brackets = ArrayLoc.getBracketsRange();
7414             }
7415           }
7416 
7417           *ResultType
7418             = S.Context.getDependentSizedArrayType(ArrayT->getElementType(),
7419                                                    /*NumElts=*/nullptr,
7420                                                    ArrayT->getSizeModifier(),
7421                                        ArrayT->getIndexTypeCVRQualifiers(),
7422                                                    Brackets);
7423         }
7424 
7425       }
7426     }
7427     if (Kind.getKind() == InitializationKind::IK_Direct &&
7428         !Kind.isExplicitCast()) {
7429       // Rebuild the ParenListExpr.
7430       SourceRange ParenRange = Kind.getParenOrBraceRange();
7431       return S.ActOnParenListExpr(ParenRange.getBegin(), ParenRange.getEnd(),
7432                                   Args);
7433     }
7434     assert(Kind.getKind() == InitializationKind::IK_Copy ||
7435            Kind.isExplicitCast() ||
7436            Kind.getKind() == InitializationKind::IK_DirectList);
7437     return ExprResult(Args[0]);
7438   }
7439 
7440   // No steps means no initialization.
7441   if (Steps.empty())
7442     return ExprResult((Expr *)nullptr);
7443 
7444   if (S.getLangOpts().CPlusPlus11 && Entity.getType()->isReferenceType() &&
7445       Args.size() == 1 && isa<InitListExpr>(Args[0]) &&
7446       !Entity.isParameterKind()) {
7447     // Produce a C++98 compatibility warning if we are initializing a reference
7448     // from an initializer list. For parameters, we produce a better warning
7449     // elsewhere.
7450     Expr *Init = Args[0];
7451     S.Diag(Init->getBeginLoc(), diag::warn_cxx98_compat_reference_list_init)
7452         << Init->getSourceRange();
7453   }
7454 
7455   // OpenCL v2.0 s6.13.11.1. atomic variables can be initialized in global scope
7456   QualType ETy = Entity.getType();
7457   Qualifiers TyQualifiers = ETy.getQualifiers();
7458   bool HasGlobalAS = TyQualifiers.hasAddressSpace() &&
7459                      TyQualifiers.getAddressSpace() == LangAS::opencl_global;
7460 
7461   if (S.getLangOpts().OpenCLVersion >= 200 &&
7462       ETy->isAtomicType() && !HasGlobalAS &&
7463       Entity.getKind() == InitializedEntity::EK_Variable && Args.size() > 0) {
7464     S.Diag(Args[0]->getBeginLoc(), diag::err_opencl_atomic_init)
7465         << 1
7466         << SourceRange(Entity.getDecl()->getBeginLoc(), Args[0]->getEndLoc());
7467     return ExprError();
7468   }
7469 
7470   QualType DestType = Entity.getType().getNonReferenceType();
7471   // FIXME: Ugly hack around the fact that Entity.getType() is not
7472   // the same as Entity.getDecl()->getType() in cases involving type merging,
7473   //  and we want latter when it makes sense.
7474   if (ResultType)
7475     *ResultType = Entity.getDecl() ? Entity.getDecl()->getType() :
7476                                      Entity.getType();
7477 
7478   ExprResult CurInit((Expr *)nullptr);
7479   SmallVector<Expr*, 4> ArrayLoopCommonExprs;
7480 
7481   // For initialization steps that start with a single initializer,
7482   // grab the only argument out the Args and place it into the "current"
7483   // initializer.
7484   switch (Steps.front().Kind) {
7485   case SK_ResolveAddressOfOverloadedFunction:
7486   case SK_CastDerivedToBaseRValue:
7487   case SK_CastDerivedToBaseXValue:
7488   case SK_CastDerivedToBaseLValue:
7489   case SK_BindReference:
7490   case SK_BindReferenceToTemporary:
7491   case SK_FinalCopy:
7492   case SK_ExtraneousCopyToTemporary:
7493   case SK_UserConversion:
7494   case SK_QualificationConversionLValue:
7495   case SK_QualificationConversionXValue:
7496   case SK_QualificationConversionRValue:
7497   case SK_AtomicConversion:
7498   case SK_ConversionSequence:
7499   case SK_ConversionSequenceNoNarrowing:
7500   case SK_ListInitialization:
7501   case SK_UnwrapInitList:
7502   case SK_RewrapInitList:
7503   case SK_CAssignment:
7504   case SK_StringInit:
7505   case SK_ObjCObjectConversion:
7506   case SK_ArrayLoopIndex:
7507   case SK_ArrayLoopInit:
7508   case SK_ArrayInit:
7509   case SK_GNUArrayInit:
7510   case SK_ParenthesizedArrayInit:
7511   case SK_PassByIndirectCopyRestore:
7512   case SK_PassByIndirectRestore:
7513   case SK_ProduceObjCObject:
7514   case SK_StdInitializerList:
7515   case SK_OCLSamplerInit:
7516   case SK_OCLZeroOpaqueType: {
7517     assert(Args.size() == 1);
7518     CurInit = Args[0];
7519     if (!CurInit.get()) return ExprError();
7520     break;
7521   }
7522 
7523   case SK_ConstructorInitialization:
7524   case SK_ConstructorInitializationFromList:
7525   case SK_StdInitializerListConstructorCall:
7526   case SK_ZeroInitialization:
7527     break;
7528   }
7529 
7530   // Promote from an unevaluated context to an unevaluated list context in
7531   // C++11 list-initialization; we need to instantiate entities usable in
7532   // constant expressions here in order to perform narrowing checks =(
7533   EnterExpressionEvaluationContext Evaluated(
7534       S, EnterExpressionEvaluationContext::InitList,
7535       CurInit.get() && isa<InitListExpr>(CurInit.get()));
7536 
7537   // C++ [class.abstract]p2:
7538   //   no objects of an abstract class can be created except as subobjects
7539   //   of a class derived from it
7540   auto checkAbstractType = [&](QualType T) -> bool {
7541     if (Entity.getKind() == InitializedEntity::EK_Base ||
7542         Entity.getKind() == InitializedEntity::EK_Delegating)
7543       return false;
7544     return S.RequireNonAbstractType(Kind.getLocation(), T,
7545                                     diag::err_allocation_of_abstract_type);
7546   };
7547 
7548   // Walk through the computed steps for the initialization sequence,
7549   // performing the specified conversions along the way.
7550   bool ConstructorInitRequiresZeroInit = false;
7551   for (step_iterator Step = step_begin(), StepEnd = step_end();
7552        Step != StepEnd; ++Step) {
7553     if (CurInit.isInvalid())
7554       return ExprError();
7555 
7556     QualType SourceType = CurInit.get() ? CurInit.get()->getType() : QualType();
7557 
7558     switch (Step->Kind) {
7559     case SK_ResolveAddressOfOverloadedFunction:
7560       // Overload resolution determined which function invoke; update the
7561       // initializer to reflect that choice.
7562       S.CheckAddressOfMemberAccess(CurInit.get(), Step->Function.FoundDecl);
7563       if (S.DiagnoseUseOfDecl(Step->Function.FoundDecl, Kind.getLocation()))
7564         return ExprError();
7565       CurInit = S.FixOverloadedFunctionReference(CurInit,
7566                                                  Step->Function.FoundDecl,
7567                                                  Step->Function.Function);
7568       break;
7569 
7570     case SK_CastDerivedToBaseRValue:
7571     case SK_CastDerivedToBaseXValue:
7572     case SK_CastDerivedToBaseLValue: {
7573       // We have a derived-to-base cast that produces either an rvalue or an
7574       // lvalue. Perform that cast.
7575 
7576       CXXCastPath BasePath;
7577 
7578       // Casts to inaccessible base classes are allowed with C-style casts.
7579       bool IgnoreBaseAccess = Kind.isCStyleOrFunctionalCast();
7580       if (S.CheckDerivedToBaseConversion(
7581               SourceType, Step->Type, CurInit.get()->getBeginLoc(),
7582               CurInit.get()->getSourceRange(), &BasePath, IgnoreBaseAccess))
7583         return ExprError();
7584 
7585       ExprValueKind VK =
7586           Step->Kind == SK_CastDerivedToBaseLValue ?
7587               VK_LValue :
7588               (Step->Kind == SK_CastDerivedToBaseXValue ?
7589                    VK_XValue :
7590                    VK_RValue);
7591       CurInit =
7592           ImplicitCastExpr::Create(S.Context, Step->Type, CK_DerivedToBase,
7593                                    CurInit.get(), &BasePath, VK);
7594       break;
7595     }
7596 
7597     case SK_BindReference:
7598       // Reference binding does not have any corresponding ASTs.
7599 
7600       // Check exception specifications
7601       if (S.CheckExceptionSpecCompatibility(CurInit.get(), DestType))
7602         return ExprError();
7603 
7604       // We don't check for e.g. function pointers here, since address
7605       // availability checks should only occur when the function first decays
7606       // into a pointer or reference.
7607       if (CurInit.get()->getType()->isFunctionProtoType()) {
7608         if (auto *DRE = dyn_cast<DeclRefExpr>(CurInit.get()->IgnoreParens())) {
7609           if (auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
7610             if (!S.checkAddressOfFunctionIsAvailable(FD, /*Complain=*/true,
7611                                                      DRE->getBeginLoc()))
7612               return ExprError();
7613           }
7614         }
7615       }
7616 
7617       CheckForNullPointerDereference(S, CurInit.get());
7618       break;
7619 
7620     case SK_BindReferenceToTemporary: {
7621       // Make sure the "temporary" is actually an rvalue.
7622       assert(CurInit.get()->isRValue() && "not a temporary");
7623 
7624       // Check exception specifications
7625       if (S.CheckExceptionSpecCompatibility(CurInit.get(), DestType))
7626         return ExprError();
7627 
7628       // Materialize the temporary into memory.
7629       MaterializeTemporaryExpr *MTE = S.CreateMaterializeTemporaryExpr(
7630           Step->Type, CurInit.get(), Entity.getType()->isLValueReferenceType());
7631       CurInit = MTE;
7632 
7633       // If we're extending this temporary to automatic storage duration -- we
7634       // need to register its cleanup during the full-expression's cleanups.
7635       if (MTE->getStorageDuration() == SD_Automatic &&
7636           MTE->getType().isDestructedType())
7637         S.Cleanup.setExprNeedsCleanups(true);
7638       break;
7639     }
7640 
7641     case SK_FinalCopy:
7642       if (checkAbstractType(Step->Type))
7643         return ExprError();
7644 
7645       // If the overall initialization is initializing a temporary, we already
7646       // bound our argument if it was necessary to do so. If not (if we're
7647       // ultimately initializing a non-temporary), our argument needs to be
7648       // bound since it's initializing a function parameter.
7649       // FIXME: This is a mess. Rationalize temporary destruction.
7650       if (!shouldBindAsTemporary(Entity))
7651         CurInit = S.MaybeBindToTemporary(CurInit.get());
7652       CurInit = CopyObject(S, Step->Type, Entity, CurInit,
7653                            /*IsExtraneousCopy=*/false);
7654       break;
7655 
7656     case SK_ExtraneousCopyToTemporary:
7657       CurInit = CopyObject(S, Step->Type, Entity, CurInit,
7658                            /*IsExtraneousCopy=*/true);
7659       break;
7660 
7661     case SK_UserConversion: {
7662       // We have a user-defined conversion that invokes either a constructor
7663       // or a conversion function.
7664       CastKind CastKind;
7665       FunctionDecl *Fn = Step->Function.Function;
7666       DeclAccessPair FoundFn = Step->Function.FoundDecl;
7667       bool HadMultipleCandidates = Step->Function.HadMultipleCandidates;
7668       bool CreatedObject = false;
7669       if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Fn)) {
7670         // Build a call to the selected constructor.
7671         SmallVector<Expr*, 8> ConstructorArgs;
7672         SourceLocation Loc = CurInit.get()->getBeginLoc();
7673 
7674         // Determine the arguments required to actually perform the constructor
7675         // call.
7676         Expr *Arg = CurInit.get();
7677         if (S.CompleteConstructorCall(Constructor,
7678                                       MultiExprArg(&Arg, 1),
7679                                       Loc, ConstructorArgs))
7680           return ExprError();
7681 
7682         // Build an expression that constructs a temporary.
7683         CurInit = S.BuildCXXConstructExpr(Loc, Step->Type,
7684                                           FoundFn, Constructor,
7685                                           ConstructorArgs,
7686                                           HadMultipleCandidates,
7687                                           /*ListInit*/ false,
7688                                           /*StdInitListInit*/ false,
7689                                           /*ZeroInit*/ false,
7690                                           CXXConstructExpr::CK_Complete,
7691                                           SourceRange());
7692         if (CurInit.isInvalid())
7693           return ExprError();
7694 
7695         S.CheckConstructorAccess(Kind.getLocation(), Constructor, FoundFn,
7696                                  Entity);
7697         if (S.DiagnoseUseOfDecl(FoundFn, Kind.getLocation()))
7698           return ExprError();
7699 
7700         CastKind = CK_ConstructorConversion;
7701         CreatedObject = true;
7702       } else {
7703         // Build a call to the conversion function.
7704         CXXConversionDecl *Conversion = cast<CXXConversionDecl>(Fn);
7705         S.CheckMemberOperatorAccess(Kind.getLocation(), CurInit.get(), nullptr,
7706                                     FoundFn);
7707         if (S.DiagnoseUseOfDecl(FoundFn, Kind.getLocation()))
7708           return ExprError();
7709 
7710         CurInit = S.BuildCXXMemberCallExpr(CurInit.get(), FoundFn, Conversion,
7711                                            HadMultipleCandidates);
7712         if (CurInit.isInvalid())
7713           return ExprError();
7714 
7715         CastKind = CK_UserDefinedConversion;
7716         CreatedObject = Conversion->getReturnType()->isRecordType();
7717       }
7718 
7719       if (CreatedObject && checkAbstractType(CurInit.get()->getType()))
7720         return ExprError();
7721 
7722       CurInit = ImplicitCastExpr::Create(S.Context, CurInit.get()->getType(),
7723                                          CastKind, CurInit.get(), nullptr,
7724                                          CurInit.get()->getValueKind());
7725 
7726       if (shouldBindAsTemporary(Entity))
7727         // The overall entity is temporary, so this expression should be
7728         // destroyed at the end of its full-expression.
7729         CurInit = S.MaybeBindToTemporary(CurInit.getAs<Expr>());
7730       else if (CreatedObject && shouldDestroyEntity(Entity)) {
7731         // The object outlasts the full-expression, but we need to prepare for
7732         // a destructor being run on it.
7733         // FIXME: It makes no sense to do this here. This should happen
7734         // regardless of how we initialized the entity.
7735         QualType T = CurInit.get()->getType();
7736         if (const RecordType *Record = T->getAs<RecordType>()) {
7737           CXXDestructorDecl *Destructor
7738             = S.LookupDestructor(cast<CXXRecordDecl>(Record->getDecl()));
7739           S.CheckDestructorAccess(CurInit.get()->getBeginLoc(), Destructor,
7740                                   S.PDiag(diag::err_access_dtor_temp) << T);
7741           S.MarkFunctionReferenced(CurInit.get()->getBeginLoc(), Destructor);
7742           if (S.DiagnoseUseOfDecl(Destructor, CurInit.get()->getBeginLoc()))
7743             return ExprError();
7744         }
7745       }
7746       break;
7747     }
7748 
7749     case SK_QualificationConversionLValue:
7750     case SK_QualificationConversionXValue:
7751     case SK_QualificationConversionRValue: {
7752       // Perform a qualification conversion; these can never go wrong.
7753       ExprValueKind VK =
7754           Step->Kind == SK_QualificationConversionLValue
7755               ? VK_LValue
7756               : (Step->Kind == SK_QualificationConversionXValue ? VK_XValue
7757                                                                 : VK_RValue);
7758       CurInit = S.PerformQualificationConversion(CurInit.get(), Step->Type, VK);
7759       break;
7760     }
7761 
7762     case SK_AtomicConversion: {
7763       assert(CurInit.get()->isRValue() && "cannot convert glvalue to atomic");
7764       CurInit = S.ImpCastExprToType(CurInit.get(), Step->Type,
7765                                     CK_NonAtomicToAtomic, VK_RValue);
7766       break;
7767     }
7768 
7769     case SK_ConversionSequence:
7770     case SK_ConversionSequenceNoNarrowing: {
7771       if (const auto *FromPtrType =
7772               CurInit.get()->getType()->getAs<PointerType>()) {
7773         if (const auto *ToPtrType = Step->Type->getAs<PointerType>()) {
7774           if (FromPtrType->getPointeeType()->hasAttr(attr::NoDeref) &&
7775               !ToPtrType->getPointeeType()->hasAttr(attr::NoDeref)) {
7776             S.Diag(CurInit.get()->getExprLoc(),
7777                    diag::warn_noderef_to_dereferenceable_pointer)
7778                 << CurInit.get()->getSourceRange();
7779           }
7780         }
7781       }
7782 
7783       Sema::CheckedConversionKind CCK
7784         = Kind.isCStyleCast()? Sema::CCK_CStyleCast
7785         : Kind.isFunctionalCast()? Sema::CCK_FunctionalCast
7786         : Kind.isExplicitCast()? Sema::CCK_OtherCast
7787         : Sema::CCK_ImplicitConversion;
7788       ExprResult CurInitExprRes =
7789         S.PerformImplicitConversion(CurInit.get(), Step->Type, *Step->ICS,
7790                                     getAssignmentAction(Entity), CCK);
7791       if (CurInitExprRes.isInvalid())
7792         return ExprError();
7793 
7794       S.DiscardMisalignedMemberAddress(Step->Type.getTypePtr(), CurInit.get());
7795 
7796       CurInit = CurInitExprRes;
7797 
7798       if (Step->Kind == SK_ConversionSequenceNoNarrowing &&
7799           S.getLangOpts().CPlusPlus)
7800         DiagnoseNarrowingInInitList(S, *Step->ICS, SourceType, Entity.getType(),
7801                                     CurInit.get());
7802 
7803       break;
7804     }
7805 
7806     case SK_ListInitialization: {
7807       if (checkAbstractType(Step->Type))
7808         return ExprError();
7809 
7810       InitListExpr *InitList = cast<InitListExpr>(CurInit.get());
7811       // If we're not initializing the top-level entity, we need to create an
7812       // InitializeTemporary entity for our target type.
7813       QualType Ty = Step->Type;
7814       bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty);
7815       InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(Ty);
7816       InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity;
7817       InitListChecker PerformInitList(S, InitEntity,
7818           InitList, Ty, /*VerifyOnly=*/false,
7819           /*TreatUnavailableAsInvalid=*/false);
7820       if (PerformInitList.HadError())
7821         return ExprError();
7822 
7823       // Hack: We must update *ResultType if available in order to set the
7824       // bounds of arrays, e.g. in 'int ar[] = {1, 2, 3};'.
7825       // Worst case: 'const int (&arref)[] = {1, 2, 3};'.
7826       if (ResultType &&
7827           ResultType->getNonReferenceType()->isIncompleteArrayType()) {
7828         if ((*ResultType)->isRValueReferenceType())
7829           Ty = S.Context.getRValueReferenceType(Ty);
7830         else if ((*ResultType)->isLValueReferenceType())
7831           Ty = S.Context.getLValueReferenceType(Ty,
7832             (*ResultType)->getAs<LValueReferenceType>()->isSpelledAsLValue());
7833         *ResultType = Ty;
7834       }
7835 
7836       InitListExpr *StructuredInitList =
7837           PerformInitList.getFullyStructuredList();
7838       CurInit.get();
7839       CurInit = shouldBindAsTemporary(InitEntity)
7840           ? S.MaybeBindToTemporary(StructuredInitList)
7841           : StructuredInitList;
7842       break;
7843     }
7844 
7845     case SK_ConstructorInitializationFromList: {
7846       if (checkAbstractType(Step->Type))
7847         return ExprError();
7848 
7849       // When an initializer list is passed for a parameter of type "reference
7850       // to object", we don't get an EK_Temporary entity, but instead an
7851       // EK_Parameter entity with reference type.
7852       // FIXME: This is a hack. What we really should do is create a user
7853       // conversion step for this case, but this makes it considerably more
7854       // complicated. For now, this will do.
7855       InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(
7856                                         Entity.getType().getNonReferenceType());
7857       bool UseTemporary = Entity.getType()->isReferenceType();
7858       assert(Args.size() == 1 && "expected a single argument for list init");
7859       InitListExpr *InitList = cast<InitListExpr>(Args[0]);
7860       S.Diag(InitList->getExprLoc(), diag::warn_cxx98_compat_ctor_list_init)
7861         << InitList->getSourceRange();
7862       MultiExprArg Arg(InitList->getInits(), InitList->getNumInits());
7863       CurInit = PerformConstructorInitialization(S, UseTemporary ? TempEntity :
7864                                                                    Entity,
7865                                                  Kind, Arg, *Step,
7866                                                ConstructorInitRequiresZeroInit,
7867                                                /*IsListInitialization*/true,
7868                                                /*IsStdInitListInit*/false,
7869                                                InitList->getLBraceLoc(),
7870                                                InitList->getRBraceLoc());
7871       break;
7872     }
7873 
7874     case SK_UnwrapInitList:
7875       CurInit = cast<InitListExpr>(CurInit.get())->getInit(0);
7876       break;
7877 
7878     case SK_RewrapInitList: {
7879       Expr *E = CurInit.get();
7880       InitListExpr *Syntactic = Step->WrappingSyntacticList;
7881       InitListExpr *ILE = new (S.Context) InitListExpr(S.Context,
7882           Syntactic->getLBraceLoc(), E, Syntactic->getRBraceLoc());
7883       ILE->setSyntacticForm(Syntactic);
7884       ILE->setType(E->getType());
7885       ILE->setValueKind(E->getValueKind());
7886       CurInit = ILE;
7887       break;
7888     }
7889 
7890     case SK_ConstructorInitialization:
7891     case SK_StdInitializerListConstructorCall: {
7892       if (checkAbstractType(Step->Type))
7893         return ExprError();
7894 
7895       // When an initializer list is passed for a parameter of type "reference
7896       // to object", we don't get an EK_Temporary entity, but instead an
7897       // EK_Parameter entity with reference type.
7898       // FIXME: This is a hack. What we really should do is create a user
7899       // conversion step for this case, but this makes it considerably more
7900       // complicated. For now, this will do.
7901       InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(
7902                                         Entity.getType().getNonReferenceType());
7903       bool UseTemporary = Entity.getType()->isReferenceType();
7904       bool IsStdInitListInit =
7905           Step->Kind == SK_StdInitializerListConstructorCall;
7906       Expr *Source = CurInit.get();
7907       SourceRange Range = Kind.hasParenOrBraceRange()
7908                               ? Kind.getParenOrBraceRange()
7909                               : SourceRange();
7910       CurInit = PerformConstructorInitialization(
7911           S, UseTemporary ? TempEntity : Entity, Kind,
7912           Source ? MultiExprArg(Source) : Args, *Step,
7913           ConstructorInitRequiresZeroInit,
7914           /*IsListInitialization*/ IsStdInitListInit,
7915           /*IsStdInitListInitialization*/ IsStdInitListInit,
7916           /*LBraceLoc*/ Range.getBegin(),
7917           /*RBraceLoc*/ Range.getEnd());
7918       break;
7919     }
7920 
7921     case SK_ZeroInitialization: {
7922       step_iterator NextStep = Step;
7923       ++NextStep;
7924       if (NextStep != StepEnd &&
7925           (NextStep->Kind == SK_ConstructorInitialization ||
7926            NextStep->Kind == SK_ConstructorInitializationFromList)) {
7927         // The need for zero-initialization is recorded directly into
7928         // the call to the object's constructor within the next step.
7929         ConstructorInitRequiresZeroInit = true;
7930       } else if (Kind.getKind() == InitializationKind::IK_Value &&
7931                  S.getLangOpts().CPlusPlus &&
7932                  !Kind.isImplicitValueInit()) {
7933         TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo();
7934         if (!TSInfo)
7935           TSInfo = S.Context.getTrivialTypeSourceInfo(Step->Type,
7936                                                     Kind.getRange().getBegin());
7937 
7938         CurInit = new (S.Context) CXXScalarValueInitExpr(
7939             Entity.getType().getNonLValueExprType(S.Context), TSInfo,
7940             Kind.getRange().getEnd());
7941       } else {
7942         CurInit = new (S.Context) ImplicitValueInitExpr(Step->Type);
7943       }
7944       break;
7945     }
7946 
7947     case SK_CAssignment: {
7948       QualType SourceType = CurInit.get()->getType();
7949 
7950       // Save off the initial CurInit in case we need to emit a diagnostic
7951       ExprResult InitialCurInit = CurInit;
7952       ExprResult Result = CurInit;
7953       Sema::AssignConvertType ConvTy =
7954         S.CheckSingleAssignmentConstraints(Step->Type, Result, true,
7955             Entity.getKind() == InitializedEntity::EK_Parameter_CF_Audited);
7956       if (Result.isInvalid())
7957         return ExprError();
7958       CurInit = Result;
7959 
7960       // If this is a call, allow conversion to a transparent union.
7961       ExprResult CurInitExprRes = CurInit;
7962       if (ConvTy != Sema::Compatible &&
7963           Entity.isParameterKind() &&
7964           S.CheckTransparentUnionArgumentConstraints(Step->Type, CurInitExprRes)
7965             == Sema::Compatible)
7966         ConvTy = Sema::Compatible;
7967       if (CurInitExprRes.isInvalid())
7968         return ExprError();
7969       CurInit = CurInitExprRes;
7970 
7971       bool Complained;
7972       if (S.DiagnoseAssignmentResult(ConvTy, Kind.getLocation(),
7973                                      Step->Type, SourceType,
7974                                      InitialCurInit.get(),
7975                                      getAssignmentAction(Entity, true),
7976                                      &Complained)) {
7977         PrintInitLocationNote(S, Entity);
7978         return ExprError();
7979       } else if (Complained)
7980         PrintInitLocationNote(S, Entity);
7981       break;
7982     }
7983 
7984     case SK_StringInit: {
7985       QualType Ty = Step->Type;
7986       CheckStringInit(CurInit.get(), ResultType ? *ResultType : Ty,
7987                       S.Context.getAsArrayType(Ty), S);
7988       break;
7989     }
7990 
7991     case SK_ObjCObjectConversion:
7992       CurInit = S.ImpCastExprToType(CurInit.get(), Step->Type,
7993                           CK_ObjCObjectLValueCast,
7994                           CurInit.get()->getValueKind());
7995       break;
7996 
7997     case SK_ArrayLoopIndex: {
7998       Expr *Cur = CurInit.get();
7999       Expr *BaseExpr = new (S.Context)
8000           OpaqueValueExpr(Cur->getExprLoc(), Cur->getType(),
8001                           Cur->getValueKind(), Cur->getObjectKind(), Cur);
8002       Expr *IndexExpr =
8003           new (S.Context) ArrayInitIndexExpr(S.Context.getSizeType());
8004       CurInit = S.CreateBuiltinArraySubscriptExpr(
8005           BaseExpr, Kind.getLocation(), IndexExpr, Kind.getLocation());
8006       ArrayLoopCommonExprs.push_back(BaseExpr);
8007       break;
8008     }
8009 
8010     case SK_ArrayLoopInit: {
8011       assert(!ArrayLoopCommonExprs.empty() &&
8012              "mismatched SK_ArrayLoopIndex and SK_ArrayLoopInit");
8013       Expr *Common = ArrayLoopCommonExprs.pop_back_val();
8014       CurInit = new (S.Context) ArrayInitLoopExpr(Step->Type, Common,
8015                                                   CurInit.get());
8016       break;
8017     }
8018 
8019     case SK_GNUArrayInit:
8020       // Okay: we checked everything before creating this step. Note that
8021       // this is a GNU extension.
8022       S.Diag(Kind.getLocation(), diag::ext_array_init_copy)
8023         << Step->Type << CurInit.get()->getType()
8024         << CurInit.get()->getSourceRange();
8025       updateGNUCompoundLiteralRValue(CurInit.get());
8026       LLVM_FALLTHROUGH;
8027     case SK_ArrayInit:
8028       // If the destination type is an incomplete array type, update the
8029       // type accordingly.
8030       if (ResultType) {
8031         if (const IncompleteArrayType *IncompleteDest
8032                            = S.Context.getAsIncompleteArrayType(Step->Type)) {
8033           if (const ConstantArrayType *ConstantSource
8034                  = S.Context.getAsConstantArrayType(CurInit.get()->getType())) {
8035             *ResultType = S.Context.getConstantArrayType(
8036                                              IncompleteDest->getElementType(),
8037                                              ConstantSource->getSize(),
8038                                              ArrayType::Normal, 0);
8039           }
8040         }
8041       }
8042       break;
8043 
8044     case SK_ParenthesizedArrayInit:
8045       // Okay: we checked everything before creating this step. Note that
8046       // this is a GNU extension.
8047       S.Diag(Kind.getLocation(), diag::ext_array_init_parens)
8048         << CurInit.get()->getSourceRange();
8049       break;
8050 
8051     case SK_PassByIndirectCopyRestore:
8052     case SK_PassByIndirectRestore:
8053       checkIndirectCopyRestoreSource(S, CurInit.get());
8054       CurInit = new (S.Context) ObjCIndirectCopyRestoreExpr(
8055           CurInit.get(), Step->Type,
8056           Step->Kind == SK_PassByIndirectCopyRestore);
8057       break;
8058 
8059     case SK_ProduceObjCObject:
8060       CurInit =
8061           ImplicitCastExpr::Create(S.Context, Step->Type, CK_ARCProduceObject,
8062                                    CurInit.get(), nullptr, VK_RValue);
8063       break;
8064 
8065     case SK_StdInitializerList: {
8066       S.Diag(CurInit.get()->getExprLoc(),
8067              diag::warn_cxx98_compat_initializer_list_init)
8068         << CurInit.get()->getSourceRange();
8069 
8070       // Materialize the temporary into memory.
8071       MaterializeTemporaryExpr *MTE = S.CreateMaterializeTemporaryExpr(
8072           CurInit.get()->getType(), CurInit.get(),
8073           /*BoundToLvalueReference=*/false);
8074 
8075       // Wrap it in a construction of a std::initializer_list<T>.
8076       CurInit = new (S.Context) CXXStdInitializerListExpr(Step->Type, MTE);
8077 
8078       // Bind the result, in case the library has given initializer_list a
8079       // non-trivial destructor.
8080       if (shouldBindAsTemporary(Entity))
8081         CurInit = S.MaybeBindToTemporary(CurInit.get());
8082       break;
8083     }
8084 
8085     case SK_OCLSamplerInit: {
8086       // Sampler initialization have 5 cases:
8087       //   1. function argument passing
8088       //      1a. argument is a file-scope variable
8089       //      1b. argument is a function-scope variable
8090       //      1c. argument is one of caller function's parameters
8091       //   2. variable initialization
8092       //      2a. initializing a file-scope variable
8093       //      2b. initializing a function-scope variable
8094       //
8095       // For file-scope variables, since they cannot be initialized by function
8096       // call of __translate_sampler_initializer in LLVM IR, their references
8097       // need to be replaced by a cast from their literal initializers to
8098       // sampler type. Since sampler variables can only be used in function
8099       // calls as arguments, we only need to replace them when handling the
8100       // argument passing.
8101       assert(Step->Type->isSamplerT() &&
8102              "Sampler initialization on non-sampler type.");
8103       Expr *Init = CurInit.get();
8104       QualType SourceType = Init->getType();
8105       // Case 1
8106       if (Entity.isParameterKind()) {
8107         if (!SourceType->isSamplerT() && !SourceType->isIntegerType()) {
8108           S.Diag(Kind.getLocation(), diag::err_sampler_argument_required)
8109             << SourceType;
8110           break;
8111         } else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Init)) {
8112           auto Var = cast<VarDecl>(DRE->getDecl());
8113           // Case 1b and 1c
8114           // No cast from integer to sampler is needed.
8115           if (!Var->hasGlobalStorage()) {
8116             CurInit = ImplicitCastExpr::Create(S.Context, Step->Type,
8117                                                CK_LValueToRValue, Init,
8118                                                /*BasePath=*/nullptr, VK_RValue);
8119             break;
8120           }
8121           // Case 1a
8122           // For function call with a file-scope sampler variable as argument,
8123           // get the integer literal.
8124           // Do not diagnose if the file-scope variable does not have initializer
8125           // since this has already been diagnosed when parsing the variable
8126           // declaration.
8127           if (!Var->getInit() || !isa<ImplicitCastExpr>(Var->getInit()))
8128             break;
8129           Init = cast<ImplicitCastExpr>(const_cast<Expr*>(
8130             Var->getInit()))->getSubExpr();
8131           SourceType = Init->getType();
8132         }
8133       } else {
8134         // Case 2
8135         // Check initializer is 32 bit integer constant.
8136         // If the initializer is taken from global variable, do not diagnose since
8137         // this has already been done when parsing the variable declaration.
8138         if (!Init->isConstantInitializer(S.Context, false))
8139           break;
8140 
8141         if (!SourceType->isIntegerType() ||
8142             32 != S.Context.getIntWidth(SourceType)) {
8143           S.Diag(Kind.getLocation(), diag::err_sampler_initializer_not_integer)
8144             << SourceType;
8145           break;
8146         }
8147 
8148         Expr::EvalResult EVResult;
8149         Init->EvaluateAsInt(EVResult, S.Context);
8150         llvm::APSInt Result = EVResult.Val.getInt();
8151         const uint64_t SamplerValue = Result.getLimitedValue();
8152         // 32-bit value of sampler's initializer is interpreted as
8153         // bit-field with the following structure:
8154         // |unspecified|Filter|Addressing Mode| Normalized Coords|
8155         // |31        6|5    4|3             1|                 0|
8156         // This structure corresponds to enum values of sampler properties
8157         // defined in SPIR spec v1.2 and also opencl-c.h
8158         unsigned AddressingMode  = (0x0E & SamplerValue) >> 1;
8159         unsigned FilterMode      = (0x30 & SamplerValue) >> 4;
8160         if (FilterMode != 1 && FilterMode != 2 &&
8161             !S.getOpenCLOptions().isEnabled(
8162                 "cl_intel_device_side_avc_motion_estimation"))
8163           S.Diag(Kind.getLocation(),
8164                  diag::warn_sampler_initializer_invalid_bits)
8165                  << "Filter Mode";
8166         if (AddressingMode > 4)
8167           S.Diag(Kind.getLocation(),
8168                  diag::warn_sampler_initializer_invalid_bits)
8169                  << "Addressing Mode";
8170       }
8171 
8172       // Cases 1a, 2a and 2b
8173       // Insert cast from integer to sampler.
8174       CurInit = S.ImpCastExprToType(Init, S.Context.OCLSamplerTy,
8175                                       CK_IntToOCLSampler);
8176       break;
8177     }
8178     case SK_OCLZeroOpaqueType: {
8179       assert((Step->Type->isEventT() || Step->Type->isQueueT() ||
8180               Step->Type->isOCLIntelSubgroupAVCType()) &&
8181              "Wrong type for initialization of OpenCL opaque type.");
8182 
8183       CurInit = S.ImpCastExprToType(CurInit.get(), Step->Type,
8184                                     CK_ZeroToOCLOpaqueType,
8185                                     CurInit.get()->getValueKind());
8186       break;
8187     }
8188     }
8189   }
8190 
8191   // Check whether the initializer has a shorter lifetime than the initialized
8192   // entity, and if not, either lifetime-extend or warn as appropriate.
8193   if (auto *Init = CurInit.get())
8194     S.checkInitializerLifetime(Entity, Init);
8195 
8196   // Diagnose non-fatal problems with the completed initialization.
8197   if (Entity.getKind() == InitializedEntity::EK_Member &&
8198       cast<FieldDecl>(Entity.getDecl())->isBitField())
8199     S.CheckBitFieldInitialization(Kind.getLocation(),
8200                                   cast<FieldDecl>(Entity.getDecl()),
8201                                   CurInit.get());
8202 
8203   // Check for std::move on construction.
8204   if (const Expr *E = CurInit.get()) {
8205     CheckMoveOnConstruction(S, E,
8206                             Entity.getKind() == InitializedEntity::EK_Result);
8207   }
8208 
8209   return CurInit;
8210 }
8211 
8212 /// Somewhere within T there is an uninitialized reference subobject.
8213 /// Dig it out and diagnose it.
8214 static bool DiagnoseUninitializedReference(Sema &S, SourceLocation Loc,
8215                                            QualType T) {
8216   if (T->isReferenceType()) {
8217     S.Diag(Loc, diag::err_reference_without_init)
8218       << T.getNonReferenceType();
8219     return true;
8220   }
8221 
8222   CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
8223   if (!RD || !RD->hasUninitializedReferenceMember())
8224     return false;
8225 
8226   for (const auto *FI : RD->fields()) {
8227     if (FI->isUnnamedBitfield())
8228       continue;
8229 
8230     if (DiagnoseUninitializedReference(S, FI->getLocation(), FI->getType())) {
8231       S.Diag(Loc, diag::note_value_initialization_here) << RD;
8232       return true;
8233     }
8234   }
8235 
8236   for (const auto &BI : RD->bases()) {
8237     if (DiagnoseUninitializedReference(S, BI.getBeginLoc(), BI.getType())) {
8238       S.Diag(Loc, diag::note_value_initialization_here) << RD;
8239       return true;
8240     }
8241   }
8242 
8243   return false;
8244 }
8245 
8246 
8247 //===----------------------------------------------------------------------===//
8248 // Diagnose initialization failures
8249 //===----------------------------------------------------------------------===//
8250 
8251 /// Emit notes associated with an initialization that failed due to a
8252 /// "simple" conversion failure.
8253 static void emitBadConversionNotes(Sema &S, const InitializedEntity &entity,
8254                                    Expr *op) {
8255   QualType destType = entity.getType();
8256   if (destType.getNonReferenceType()->isObjCObjectPointerType() &&
8257       op->getType()->isObjCObjectPointerType()) {
8258 
8259     // Emit a possible note about the conversion failing because the
8260     // operand is a message send with a related result type.
8261     S.EmitRelatedResultTypeNote(op);
8262 
8263     // Emit a possible note about a return failing because we're
8264     // expecting a related result type.
8265     if (entity.getKind() == InitializedEntity::EK_Result)
8266       S.EmitRelatedResultTypeNoteForReturn(destType);
8267   }
8268 }
8269 
8270 static void diagnoseListInit(Sema &S, const InitializedEntity &Entity,
8271                              InitListExpr *InitList) {
8272   QualType DestType = Entity.getType();
8273 
8274   QualType E;
8275   if (S.getLangOpts().CPlusPlus11 && S.isStdInitializerList(DestType, &E)) {
8276     QualType ArrayType = S.Context.getConstantArrayType(
8277         E.withConst(),
8278         llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()),
8279                     InitList->getNumInits()),
8280         clang::ArrayType::Normal, 0);
8281     InitializedEntity HiddenArray =
8282         InitializedEntity::InitializeTemporary(ArrayType);
8283     return diagnoseListInit(S, HiddenArray, InitList);
8284   }
8285 
8286   if (DestType->isReferenceType()) {
8287     // A list-initialization failure for a reference means that we tried to
8288     // create a temporary of the inner type (per [dcl.init.list]p3.6) and the
8289     // inner initialization failed.
8290     QualType T = DestType->getAs<ReferenceType>()->getPointeeType();
8291     diagnoseListInit(S, InitializedEntity::InitializeTemporary(T), InitList);
8292     SourceLocation Loc = InitList->getBeginLoc();
8293     if (auto *D = Entity.getDecl())
8294       Loc = D->getLocation();
8295     S.Diag(Loc, diag::note_in_reference_temporary_list_initializer) << T;
8296     return;
8297   }
8298 
8299   InitListChecker DiagnoseInitList(S, Entity, InitList, DestType,
8300                                    /*VerifyOnly=*/false,
8301                                    /*TreatUnavailableAsInvalid=*/false);
8302   assert(DiagnoseInitList.HadError() &&
8303          "Inconsistent init list check result.");
8304 }
8305 
8306 bool InitializationSequence::Diagnose(Sema &S,
8307                                       const InitializedEntity &Entity,
8308                                       const InitializationKind &Kind,
8309                                       ArrayRef<Expr *> Args) {
8310   if (!Failed())
8311     return false;
8312 
8313   // When we want to diagnose only one element of a braced-init-list,
8314   // we need to factor it out.
8315   Expr *OnlyArg;
8316   if (Args.size() == 1) {
8317     auto *List = dyn_cast<InitListExpr>(Args[0]);
8318     if (List && List->getNumInits() == 1)
8319       OnlyArg = List->getInit(0);
8320     else
8321       OnlyArg = Args[0];
8322   }
8323   else
8324     OnlyArg = nullptr;
8325 
8326   QualType DestType = Entity.getType();
8327   switch (Failure) {
8328   case FK_TooManyInitsForReference:
8329     // FIXME: Customize for the initialized entity?
8330     if (Args.empty()) {
8331       // Dig out the reference subobject which is uninitialized and diagnose it.
8332       // If this is value-initialization, this could be nested some way within
8333       // the target type.
8334       assert(Kind.getKind() == InitializationKind::IK_Value ||
8335              DestType->isReferenceType());
8336       bool Diagnosed =
8337         DiagnoseUninitializedReference(S, Kind.getLocation(), DestType);
8338       assert(Diagnosed && "couldn't find uninitialized reference to diagnose");
8339       (void)Diagnosed;
8340     } else  // FIXME: diagnostic below could be better!
8341       S.Diag(Kind.getLocation(), diag::err_reference_has_multiple_inits)
8342           << SourceRange(Args.front()->getBeginLoc(), Args.back()->getEndLoc());
8343     break;
8344   case FK_ParenthesizedListInitForReference:
8345     S.Diag(Kind.getLocation(), diag::err_list_init_in_parens)
8346       << 1 << Entity.getType() << Args[0]->getSourceRange();
8347     break;
8348 
8349   case FK_ArrayNeedsInitList:
8350     S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 0;
8351     break;
8352   case FK_ArrayNeedsInitListOrStringLiteral:
8353     S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 1;
8354     break;
8355   case FK_ArrayNeedsInitListOrWideStringLiteral:
8356     S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 2;
8357     break;
8358   case FK_NarrowStringIntoWideCharArray:
8359     S.Diag(Kind.getLocation(), diag::err_array_init_narrow_string_into_wchar);
8360     break;
8361   case FK_WideStringIntoCharArray:
8362     S.Diag(Kind.getLocation(), diag::err_array_init_wide_string_into_char);
8363     break;
8364   case FK_IncompatWideStringIntoWideChar:
8365     S.Diag(Kind.getLocation(),
8366            diag::err_array_init_incompat_wide_string_into_wchar);
8367     break;
8368   case FK_PlainStringIntoUTF8Char:
8369     S.Diag(Kind.getLocation(),
8370            diag::err_array_init_plain_string_into_char8_t);
8371     S.Diag(Args.front()->getBeginLoc(),
8372            diag::note_array_init_plain_string_into_char8_t)
8373         << FixItHint::CreateInsertion(Args.front()->getBeginLoc(), "u8");
8374     break;
8375   case FK_UTF8StringIntoPlainChar:
8376     S.Diag(Kind.getLocation(),
8377            diag::err_array_init_utf8_string_into_char)
8378       << S.getLangOpts().CPlusPlus2a;
8379     break;
8380   case FK_ArrayTypeMismatch:
8381   case FK_NonConstantArrayInit:
8382     S.Diag(Kind.getLocation(),
8383            (Failure == FK_ArrayTypeMismatch
8384               ? diag::err_array_init_different_type
8385               : diag::err_array_init_non_constant_array))
8386       << DestType.getNonReferenceType()
8387       << OnlyArg->getType()
8388       << Args[0]->getSourceRange();
8389     break;
8390 
8391   case FK_VariableLengthArrayHasInitializer:
8392     S.Diag(Kind.getLocation(), diag::err_variable_object_no_init)
8393       << Args[0]->getSourceRange();
8394     break;
8395 
8396   case FK_AddressOfOverloadFailed: {
8397     DeclAccessPair Found;
8398     S.ResolveAddressOfOverloadedFunction(OnlyArg,
8399                                          DestType.getNonReferenceType(),
8400                                          true,
8401                                          Found);
8402     break;
8403   }
8404 
8405   case FK_AddressOfUnaddressableFunction: {
8406     auto *FD = cast<FunctionDecl>(cast<DeclRefExpr>(OnlyArg)->getDecl());
8407     S.checkAddressOfFunctionIsAvailable(FD, /*Complain=*/true,
8408                                         OnlyArg->getBeginLoc());
8409     break;
8410   }
8411 
8412   case FK_ReferenceInitOverloadFailed:
8413   case FK_UserConversionOverloadFailed:
8414     switch (FailedOverloadResult) {
8415     case OR_Ambiguous:
8416 
8417       FailedCandidateSet.NoteCandidates(
8418           PartialDiagnosticAt(
8419               Kind.getLocation(),
8420               Failure == FK_UserConversionOverloadFailed
8421                   ? (S.PDiag(diag::err_typecheck_ambiguous_condition)
8422                      << OnlyArg->getType() << DestType
8423                      << Args[0]->getSourceRange())
8424                   : (S.PDiag(diag::err_ref_init_ambiguous)
8425                      << DestType << OnlyArg->getType()
8426                      << Args[0]->getSourceRange())),
8427           S, OCD_ViableCandidates, Args);
8428       break;
8429 
8430     case OR_No_Viable_Function: {
8431       auto Cands = FailedCandidateSet.CompleteCandidates(S, OCD_AllCandidates, Args);
8432       if (!S.RequireCompleteType(Kind.getLocation(),
8433                                  DestType.getNonReferenceType(),
8434                           diag::err_typecheck_nonviable_condition_incomplete,
8435                                OnlyArg->getType(), Args[0]->getSourceRange()))
8436         S.Diag(Kind.getLocation(), diag::err_typecheck_nonviable_condition)
8437           << (Entity.getKind() == InitializedEntity::EK_Result)
8438           << OnlyArg->getType() << Args[0]->getSourceRange()
8439           << DestType.getNonReferenceType();
8440 
8441       FailedCandidateSet.NoteCandidates(S, Args, Cands);
8442       break;
8443     }
8444     case OR_Deleted: {
8445       S.Diag(Kind.getLocation(), diag::err_typecheck_deleted_function)
8446         << OnlyArg->getType() << DestType.getNonReferenceType()
8447         << Args[0]->getSourceRange();
8448       OverloadCandidateSet::iterator Best;
8449       OverloadingResult Ovl
8450         = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best);
8451       if (Ovl == OR_Deleted) {
8452         S.NoteDeletedFunction(Best->Function);
8453       } else {
8454         llvm_unreachable("Inconsistent overload resolution?");
8455       }
8456       break;
8457     }
8458 
8459     case OR_Success:
8460       llvm_unreachable("Conversion did not fail!");
8461     }
8462     break;
8463 
8464   case FK_NonConstLValueReferenceBindingToTemporary:
8465     if (isa<InitListExpr>(Args[0])) {
8466       S.Diag(Kind.getLocation(),
8467              diag::err_lvalue_reference_bind_to_initlist)
8468       << DestType.getNonReferenceType().isVolatileQualified()
8469       << DestType.getNonReferenceType()
8470       << Args[0]->getSourceRange();
8471       break;
8472     }
8473     LLVM_FALLTHROUGH;
8474 
8475   case FK_NonConstLValueReferenceBindingToUnrelated:
8476     S.Diag(Kind.getLocation(),
8477            Failure == FK_NonConstLValueReferenceBindingToTemporary
8478              ? diag::err_lvalue_reference_bind_to_temporary
8479              : diag::err_lvalue_reference_bind_to_unrelated)
8480       << DestType.getNonReferenceType().isVolatileQualified()
8481       << DestType.getNonReferenceType()
8482       << OnlyArg->getType()
8483       << Args[0]->getSourceRange();
8484     break;
8485 
8486   case FK_NonConstLValueReferenceBindingToBitfield: {
8487     // We don't necessarily have an unambiguous source bit-field.
8488     FieldDecl *BitField = Args[0]->getSourceBitField();
8489     S.Diag(Kind.getLocation(), diag::err_reference_bind_to_bitfield)
8490       << DestType.isVolatileQualified()
8491       << (BitField ? BitField->getDeclName() : DeclarationName())
8492       << (BitField != nullptr)
8493       << Args[0]->getSourceRange();
8494     if (BitField)
8495       S.Diag(BitField->getLocation(), diag::note_bitfield_decl);
8496     break;
8497   }
8498 
8499   case FK_NonConstLValueReferenceBindingToVectorElement:
8500     S.Diag(Kind.getLocation(), diag::err_reference_bind_to_vector_element)
8501       << DestType.isVolatileQualified()
8502       << Args[0]->getSourceRange();
8503     break;
8504 
8505   case FK_RValueReferenceBindingToLValue:
8506     S.Diag(Kind.getLocation(), diag::err_lvalue_to_rvalue_ref)
8507       << DestType.getNonReferenceType() << OnlyArg->getType()
8508       << Args[0]->getSourceRange();
8509     break;
8510 
8511   case FK_ReferenceAddrspaceMismatchTemporary:
8512     S.Diag(Kind.getLocation(), diag::err_reference_bind_temporary_addrspace)
8513         << DestType << Args[0]->getSourceRange();
8514     break;
8515 
8516   case FK_ReferenceInitDropsQualifiers: {
8517     QualType SourceType = OnlyArg->getType();
8518     QualType NonRefType = DestType.getNonReferenceType();
8519     Qualifiers DroppedQualifiers =
8520         SourceType.getQualifiers() - NonRefType.getQualifiers();
8521 
8522     S.Diag(Kind.getLocation(), diag::err_reference_bind_drops_quals)
8523       << SourceType
8524       << NonRefType
8525       << DroppedQualifiers.getCVRQualifiers()
8526       << Args[0]->getSourceRange();
8527     break;
8528   }
8529 
8530   case FK_ReferenceInitFailed:
8531     S.Diag(Kind.getLocation(), diag::err_reference_bind_failed)
8532       << DestType.getNonReferenceType()
8533       << DestType.getNonReferenceType()->isIncompleteType()
8534       << OnlyArg->isLValue()
8535       << OnlyArg->getType()
8536       << Args[0]->getSourceRange();
8537     emitBadConversionNotes(S, Entity, Args[0]);
8538     break;
8539 
8540   case FK_ConversionFailed: {
8541     QualType FromType = OnlyArg->getType();
8542     PartialDiagnostic PDiag = S.PDiag(diag::err_init_conversion_failed)
8543       << (int)Entity.getKind()
8544       << DestType
8545       << OnlyArg->isLValue()
8546       << FromType
8547       << Args[0]->getSourceRange();
8548     S.HandleFunctionTypeMismatch(PDiag, FromType, DestType);
8549     S.Diag(Kind.getLocation(), PDiag);
8550     emitBadConversionNotes(S, Entity, Args[0]);
8551     break;
8552   }
8553 
8554   case FK_ConversionFromPropertyFailed:
8555     // No-op. This error has already been reported.
8556     break;
8557 
8558   case FK_TooManyInitsForScalar: {
8559     SourceRange R;
8560 
8561     auto *InitList = dyn_cast<InitListExpr>(Args[0]);
8562     if (InitList && InitList->getNumInits() >= 1) {
8563       R = SourceRange(InitList->getInit(0)->getEndLoc(), InitList->getEndLoc());
8564     } else {
8565       assert(Args.size() > 1 && "Expected multiple initializers!");
8566       R = SourceRange(Args.front()->getEndLoc(), Args.back()->getEndLoc());
8567     }
8568 
8569     R.setBegin(S.getLocForEndOfToken(R.getBegin()));
8570     if (Kind.isCStyleOrFunctionalCast())
8571       S.Diag(Kind.getLocation(), diag::err_builtin_func_cast_more_than_one_arg)
8572         << R;
8573     else
8574       S.Diag(Kind.getLocation(), diag::err_excess_initializers)
8575         << /*scalar=*/2 << R;
8576     break;
8577   }
8578 
8579   case FK_ParenthesizedListInitForScalar:
8580     S.Diag(Kind.getLocation(), diag::err_list_init_in_parens)
8581       << 0 << Entity.getType() << Args[0]->getSourceRange();
8582     break;
8583 
8584   case FK_ReferenceBindingToInitList:
8585     S.Diag(Kind.getLocation(), diag::err_reference_bind_init_list)
8586       << DestType.getNonReferenceType() << Args[0]->getSourceRange();
8587     break;
8588 
8589   case FK_InitListBadDestinationType:
8590     S.Diag(Kind.getLocation(), diag::err_init_list_bad_dest_type)
8591       << (DestType->isRecordType()) << DestType << Args[0]->getSourceRange();
8592     break;
8593 
8594   case FK_ListConstructorOverloadFailed:
8595   case FK_ConstructorOverloadFailed: {
8596     SourceRange ArgsRange;
8597     if (Args.size())
8598       ArgsRange =
8599           SourceRange(Args.front()->getBeginLoc(), Args.back()->getEndLoc());
8600 
8601     if (Failure == FK_ListConstructorOverloadFailed) {
8602       assert(Args.size() == 1 &&
8603              "List construction from other than 1 argument.");
8604       InitListExpr *InitList = cast<InitListExpr>(Args[0]);
8605       Args = MultiExprArg(InitList->getInits(), InitList->getNumInits());
8606     }
8607 
8608     // FIXME: Using "DestType" for the entity we're printing is probably
8609     // bad.
8610     switch (FailedOverloadResult) {
8611       case OR_Ambiguous:
8612         FailedCandidateSet.NoteCandidates(
8613             PartialDiagnosticAt(Kind.getLocation(),
8614                                 S.PDiag(diag::err_ovl_ambiguous_init)
8615                                     << DestType << ArgsRange),
8616             S, OCD_ViableCandidates, Args);
8617         break;
8618 
8619       case OR_No_Viable_Function:
8620         if (Kind.getKind() == InitializationKind::IK_Default &&
8621             (Entity.getKind() == InitializedEntity::EK_Base ||
8622              Entity.getKind() == InitializedEntity::EK_Member) &&
8623             isa<CXXConstructorDecl>(S.CurContext)) {
8624           // This is implicit default initialization of a member or
8625           // base within a constructor. If no viable function was
8626           // found, notify the user that they need to explicitly
8627           // initialize this base/member.
8628           CXXConstructorDecl *Constructor
8629             = cast<CXXConstructorDecl>(S.CurContext);
8630           const CXXRecordDecl *InheritedFrom = nullptr;
8631           if (auto Inherited = Constructor->getInheritedConstructor())
8632             InheritedFrom = Inherited.getShadowDecl()->getNominatedBaseClass();
8633           if (Entity.getKind() == InitializedEntity::EK_Base) {
8634             S.Diag(Kind.getLocation(), diag::err_missing_default_ctor)
8635               << (InheritedFrom ? 2 : Constructor->isImplicit() ? 1 : 0)
8636               << S.Context.getTypeDeclType(Constructor->getParent())
8637               << /*base=*/0
8638               << Entity.getType()
8639               << InheritedFrom;
8640 
8641             RecordDecl *BaseDecl
8642               = Entity.getBaseSpecifier()->getType()->getAs<RecordType>()
8643                                                                   ->getDecl();
8644             S.Diag(BaseDecl->getLocation(), diag::note_previous_decl)
8645               << S.Context.getTagDeclType(BaseDecl);
8646           } else {
8647             S.Diag(Kind.getLocation(), diag::err_missing_default_ctor)
8648               << (InheritedFrom ? 2 : Constructor->isImplicit() ? 1 : 0)
8649               << S.Context.getTypeDeclType(Constructor->getParent())
8650               << /*member=*/1
8651               << Entity.getName()
8652               << InheritedFrom;
8653             S.Diag(Entity.getDecl()->getLocation(),
8654                    diag::note_member_declared_at);
8655 
8656             if (const RecordType *Record
8657                                  = Entity.getType()->getAs<RecordType>())
8658               S.Diag(Record->getDecl()->getLocation(),
8659                      diag::note_previous_decl)
8660                 << S.Context.getTagDeclType(Record->getDecl());
8661           }
8662           break;
8663         }
8664 
8665         FailedCandidateSet.NoteCandidates(
8666             PartialDiagnosticAt(
8667                 Kind.getLocation(),
8668                 S.PDiag(diag::err_ovl_no_viable_function_in_init)
8669                     << DestType << ArgsRange),
8670             S, OCD_AllCandidates, Args);
8671         break;
8672 
8673       case OR_Deleted: {
8674         OverloadCandidateSet::iterator Best;
8675         OverloadingResult Ovl
8676           = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best);
8677         if (Ovl != OR_Deleted) {
8678           S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init)
8679               << DestType << ArgsRange;
8680           llvm_unreachable("Inconsistent overload resolution?");
8681           break;
8682         }
8683 
8684         // If this is a defaulted or implicitly-declared function, then
8685         // it was implicitly deleted. Make it clear that the deletion was
8686         // implicit.
8687         if (S.isImplicitlyDeleted(Best->Function))
8688           S.Diag(Kind.getLocation(), diag::err_ovl_deleted_special_init)
8689             << S.getSpecialMember(cast<CXXMethodDecl>(Best->Function))
8690             << DestType << ArgsRange;
8691         else
8692           S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init)
8693               << DestType << ArgsRange;
8694 
8695         S.NoteDeletedFunction(Best->Function);
8696         break;
8697       }
8698 
8699       case OR_Success:
8700         llvm_unreachable("Conversion did not fail!");
8701     }
8702   }
8703   break;
8704 
8705   case FK_DefaultInitOfConst:
8706     if (Entity.getKind() == InitializedEntity::EK_Member &&
8707         isa<CXXConstructorDecl>(S.CurContext)) {
8708       // This is implicit default-initialization of a const member in
8709       // a constructor. Complain that it needs to be explicitly
8710       // initialized.
8711       CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(S.CurContext);
8712       S.Diag(Kind.getLocation(), diag::err_uninitialized_member_in_ctor)
8713         << (Constructor->getInheritedConstructor() ? 2 :
8714             Constructor->isImplicit() ? 1 : 0)
8715         << S.Context.getTypeDeclType(Constructor->getParent())
8716         << /*const=*/1
8717         << Entity.getName();
8718       S.Diag(Entity.getDecl()->getLocation(), diag::note_previous_decl)
8719         << Entity.getName();
8720     } else {
8721       S.Diag(Kind.getLocation(), diag::err_default_init_const)
8722           << DestType << (bool)DestType->getAs<RecordType>();
8723     }
8724     break;
8725 
8726   case FK_Incomplete:
8727     S.RequireCompleteType(Kind.getLocation(), FailedIncompleteType,
8728                           diag::err_init_incomplete_type);
8729     break;
8730 
8731   case FK_ListInitializationFailed: {
8732     // Run the init list checker again to emit diagnostics.
8733     InitListExpr *InitList = cast<InitListExpr>(Args[0]);
8734     diagnoseListInit(S, Entity, InitList);
8735     break;
8736   }
8737 
8738   case FK_PlaceholderType: {
8739     // FIXME: Already diagnosed!
8740     break;
8741   }
8742 
8743   case FK_ExplicitConstructor: {
8744     S.Diag(Kind.getLocation(), diag::err_selected_explicit_constructor)
8745       << Args[0]->getSourceRange();
8746     OverloadCandidateSet::iterator Best;
8747     OverloadingResult Ovl
8748       = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best);
8749     (void)Ovl;
8750     assert(Ovl == OR_Success && "Inconsistent overload resolution");
8751     CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
8752     S.Diag(CtorDecl->getLocation(),
8753            diag::note_explicit_ctor_deduction_guide_here) << false;
8754     break;
8755   }
8756   }
8757 
8758   PrintInitLocationNote(S, Entity);
8759   return true;
8760 }
8761 
8762 void InitializationSequence::dump(raw_ostream &OS) const {
8763   switch (SequenceKind) {
8764   case FailedSequence: {
8765     OS << "Failed sequence: ";
8766     switch (Failure) {
8767     case FK_TooManyInitsForReference:
8768       OS << "too many initializers for reference";
8769       break;
8770 
8771     case FK_ParenthesizedListInitForReference:
8772       OS << "parenthesized list init for reference";
8773       break;
8774 
8775     case FK_ArrayNeedsInitList:
8776       OS << "array requires initializer list";
8777       break;
8778 
8779     case FK_AddressOfUnaddressableFunction:
8780       OS << "address of unaddressable function was taken";
8781       break;
8782 
8783     case FK_ArrayNeedsInitListOrStringLiteral:
8784       OS << "array requires initializer list or string literal";
8785       break;
8786 
8787     case FK_ArrayNeedsInitListOrWideStringLiteral:
8788       OS << "array requires initializer list or wide string literal";
8789       break;
8790 
8791     case FK_NarrowStringIntoWideCharArray:
8792       OS << "narrow string into wide char array";
8793       break;
8794 
8795     case FK_WideStringIntoCharArray:
8796       OS << "wide string into char array";
8797       break;
8798 
8799     case FK_IncompatWideStringIntoWideChar:
8800       OS << "incompatible wide string into wide char array";
8801       break;
8802 
8803     case FK_PlainStringIntoUTF8Char:
8804       OS << "plain string literal into char8_t array";
8805       break;
8806 
8807     case FK_UTF8StringIntoPlainChar:
8808       OS << "u8 string literal into char array";
8809       break;
8810 
8811     case FK_ArrayTypeMismatch:
8812       OS << "array type mismatch";
8813       break;
8814 
8815     case FK_NonConstantArrayInit:
8816       OS << "non-constant array initializer";
8817       break;
8818 
8819     case FK_AddressOfOverloadFailed:
8820       OS << "address of overloaded function failed";
8821       break;
8822 
8823     case FK_ReferenceInitOverloadFailed:
8824       OS << "overload resolution for reference initialization failed";
8825       break;
8826 
8827     case FK_NonConstLValueReferenceBindingToTemporary:
8828       OS << "non-const lvalue reference bound to temporary";
8829       break;
8830 
8831     case FK_NonConstLValueReferenceBindingToBitfield:
8832       OS << "non-const lvalue reference bound to bit-field";
8833       break;
8834 
8835     case FK_NonConstLValueReferenceBindingToVectorElement:
8836       OS << "non-const lvalue reference bound to vector element";
8837       break;
8838 
8839     case FK_NonConstLValueReferenceBindingToUnrelated:
8840       OS << "non-const lvalue reference bound to unrelated type";
8841       break;
8842 
8843     case FK_RValueReferenceBindingToLValue:
8844       OS << "rvalue reference bound to an lvalue";
8845       break;
8846 
8847     case FK_ReferenceInitDropsQualifiers:
8848       OS << "reference initialization drops qualifiers";
8849       break;
8850 
8851     case FK_ReferenceAddrspaceMismatchTemporary:
8852       OS << "reference with mismatching address space bound to temporary";
8853       break;
8854 
8855     case FK_ReferenceInitFailed:
8856       OS << "reference initialization failed";
8857       break;
8858 
8859     case FK_ConversionFailed:
8860       OS << "conversion failed";
8861       break;
8862 
8863     case FK_ConversionFromPropertyFailed:
8864       OS << "conversion from property failed";
8865       break;
8866 
8867     case FK_TooManyInitsForScalar:
8868       OS << "too many initializers for scalar";
8869       break;
8870 
8871     case FK_ParenthesizedListInitForScalar:
8872       OS << "parenthesized list init for reference";
8873       break;
8874 
8875     case FK_ReferenceBindingToInitList:
8876       OS << "referencing binding to initializer list";
8877       break;
8878 
8879     case FK_InitListBadDestinationType:
8880       OS << "initializer list for non-aggregate, non-scalar type";
8881       break;
8882 
8883     case FK_UserConversionOverloadFailed:
8884       OS << "overloading failed for user-defined conversion";
8885       break;
8886 
8887     case FK_ConstructorOverloadFailed:
8888       OS << "constructor overloading failed";
8889       break;
8890 
8891     case FK_DefaultInitOfConst:
8892       OS << "default initialization of a const variable";
8893       break;
8894 
8895     case FK_Incomplete:
8896       OS << "initialization of incomplete type";
8897       break;
8898 
8899     case FK_ListInitializationFailed:
8900       OS << "list initialization checker failure";
8901       break;
8902 
8903     case FK_VariableLengthArrayHasInitializer:
8904       OS << "variable length array has an initializer";
8905       break;
8906 
8907     case FK_PlaceholderType:
8908       OS << "initializer expression isn't contextually valid";
8909       break;
8910 
8911     case FK_ListConstructorOverloadFailed:
8912       OS << "list constructor overloading failed";
8913       break;
8914 
8915     case FK_ExplicitConstructor:
8916       OS << "list copy initialization chose explicit constructor";
8917       break;
8918     }
8919     OS << '\n';
8920     return;
8921   }
8922 
8923   case DependentSequence:
8924     OS << "Dependent sequence\n";
8925     return;
8926 
8927   case NormalSequence:
8928     OS << "Normal sequence: ";
8929     break;
8930   }
8931 
8932   for (step_iterator S = step_begin(), SEnd = step_end(); S != SEnd; ++S) {
8933     if (S != step_begin()) {
8934       OS << " -> ";
8935     }
8936 
8937     switch (S->Kind) {
8938     case SK_ResolveAddressOfOverloadedFunction:
8939       OS << "resolve address of overloaded function";
8940       break;
8941 
8942     case SK_CastDerivedToBaseRValue:
8943       OS << "derived-to-base (rvalue)";
8944       break;
8945 
8946     case SK_CastDerivedToBaseXValue:
8947       OS << "derived-to-base (xvalue)";
8948       break;
8949 
8950     case SK_CastDerivedToBaseLValue:
8951       OS << "derived-to-base (lvalue)";
8952       break;
8953 
8954     case SK_BindReference:
8955       OS << "bind reference to lvalue";
8956       break;
8957 
8958     case SK_BindReferenceToTemporary:
8959       OS << "bind reference to a temporary";
8960       break;
8961 
8962     case SK_FinalCopy:
8963       OS << "final copy in class direct-initialization";
8964       break;
8965 
8966     case SK_ExtraneousCopyToTemporary:
8967       OS << "extraneous C++03 copy to temporary";
8968       break;
8969 
8970     case SK_UserConversion:
8971       OS << "user-defined conversion via " << *S->Function.Function;
8972       break;
8973 
8974     case SK_QualificationConversionRValue:
8975       OS << "qualification conversion (rvalue)";
8976       break;
8977 
8978     case SK_QualificationConversionXValue:
8979       OS << "qualification conversion (xvalue)";
8980       break;
8981 
8982     case SK_QualificationConversionLValue:
8983       OS << "qualification conversion (lvalue)";
8984       break;
8985 
8986     case SK_AtomicConversion:
8987       OS << "non-atomic-to-atomic conversion";
8988       break;
8989 
8990     case SK_ConversionSequence:
8991       OS << "implicit conversion sequence (";
8992       S->ICS->dump(); // FIXME: use OS
8993       OS << ")";
8994       break;
8995 
8996     case SK_ConversionSequenceNoNarrowing:
8997       OS << "implicit conversion sequence with narrowing prohibited (";
8998       S->ICS->dump(); // FIXME: use OS
8999       OS << ")";
9000       break;
9001 
9002     case SK_ListInitialization:
9003       OS << "list aggregate initialization";
9004       break;
9005 
9006     case SK_UnwrapInitList:
9007       OS << "unwrap reference initializer list";
9008       break;
9009 
9010     case SK_RewrapInitList:
9011       OS << "rewrap reference initializer list";
9012       break;
9013 
9014     case SK_ConstructorInitialization:
9015       OS << "constructor initialization";
9016       break;
9017 
9018     case SK_ConstructorInitializationFromList:
9019       OS << "list initialization via constructor";
9020       break;
9021 
9022     case SK_ZeroInitialization:
9023       OS << "zero initialization";
9024       break;
9025 
9026     case SK_CAssignment:
9027       OS << "C assignment";
9028       break;
9029 
9030     case SK_StringInit:
9031       OS << "string initialization";
9032       break;
9033 
9034     case SK_ObjCObjectConversion:
9035       OS << "Objective-C object conversion";
9036       break;
9037 
9038     case SK_ArrayLoopIndex:
9039       OS << "indexing for array initialization loop";
9040       break;
9041 
9042     case SK_ArrayLoopInit:
9043       OS << "array initialization loop";
9044       break;
9045 
9046     case SK_ArrayInit:
9047       OS << "array initialization";
9048       break;
9049 
9050     case SK_GNUArrayInit:
9051       OS << "array initialization (GNU extension)";
9052       break;
9053 
9054     case SK_ParenthesizedArrayInit:
9055       OS << "parenthesized array initialization";
9056       break;
9057 
9058     case SK_PassByIndirectCopyRestore:
9059       OS << "pass by indirect copy and restore";
9060       break;
9061 
9062     case SK_PassByIndirectRestore:
9063       OS << "pass by indirect restore";
9064       break;
9065 
9066     case SK_ProduceObjCObject:
9067       OS << "Objective-C object retension";
9068       break;
9069 
9070     case SK_StdInitializerList:
9071       OS << "std::initializer_list from initializer list";
9072       break;
9073 
9074     case SK_StdInitializerListConstructorCall:
9075       OS << "list initialization from std::initializer_list";
9076       break;
9077 
9078     case SK_OCLSamplerInit:
9079       OS << "OpenCL sampler_t from integer constant";
9080       break;
9081 
9082     case SK_OCLZeroOpaqueType:
9083       OS << "OpenCL opaque type from zero";
9084       break;
9085     }
9086 
9087     OS << " [" << S->Type.getAsString() << ']';
9088   }
9089 
9090   OS << '\n';
9091 }
9092 
9093 void InitializationSequence::dump() const {
9094   dump(llvm::errs());
9095 }
9096 
9097 static bool NarrowingErrs(const LangOptions &L) {
9098   return L.CPlusPlus11 &&
9099          (!L.MicrosoftExt || L.isCompatibleWithMSVC(LangOptions::MSVC2015));
9100 }
9101 
9102 static void DiagnoseNarrowingInInitList(Sema &S,
9103                                         const ImplicitConversionSequence &ICS,
9104                                         QualType PreNarrowingType,
9105                                         QualType EntityType,
9106                                         const Expr *PostInit) {
9107   const StandardConversionSequence *SCS = nullptr;
9108   switch (ICS.getKind()) {
9109   case ImplicitConversionSequence::StandardConversion:
9110     SCS = &ICS.Standard;
9111     break;
9112   case ImplicitConversionSequence::UserDefinedConversion:
9113     SCS = &ICS.UserDefined.After;
9114     break;
9115   case ImplicitConversionSequence::AmbiguousConversion:
9116   case ImplicitConversionSequence::EllipsisConversion:
9117   case ImplicitConversionSequence::BadConversion:
9118     return;
9119   }
9120 
9121   // C++11 [dcl.init.list]p7: Check whether this is a narrowing conversion.
9122   APValue ConstantValue;
9123   QualType ConstantType;
9124   switch (SCS->getNarrowingKind(S.Context, PostInit, ConstantValue,
9125                                 ConstantType)) {
9126   case NK_Not_Narrowing:
9127   case NK_Dependent_Narrowing:
9128     // No narrowing occurred.
9129     return;
9130 
9131   case NK_Type_Narrowing:
9132     // This was a floating-to-integer conversion, which is always considered a
9133     // narrowing conversion even if the value is a constant and can be
9134     // represented exactly as an integer.
9135     S.Diag(PostInit->getBeginLoc(), NarrowingErrs(S.getLangOpts())
9136                                         ? diag::ext_init_list_type_narrowing
9137                                         : diag::warn_init_list_type_narrowing)
9138         << PostInit->getSourceRange()
9139         << PreNarrowingType.getLocalUnqualifiedType()
9140         << EntityType.getLocalUnqualifiedType();
9141     break;
9142 
9143   case NK_Constant_Narrowing:
9144     // A constant value was narrowed.
9145     S.Diag(PostInit->getBeginLoc(),
9146            NarrowingErrs(S.getLangOpts())
9147                ? diag::ext_init_list_constant_narrowing
9148                : diag::warn_init_list_constant_narrowing)
9149         << PostInit->getSourceRange()
9150         << ConstantValue.getAsString(S.getASTContext(), ConstantType)
9151         << EntityType.getLocalUnqualifiedType();
9152     break;
9153 
9154   case NK_Variable_Narrowing:
9155     // A variable's value may have been narrowed.
9156     S.Diag(PostInit->getBeginLoc(),
9157            NarrowingErrs(S.getLangOpts())
9158                ? diag::ext_init_list_variable_narrowing
9159                : diag::warn_init_list_variable_narrowing)
9160         << PostInit->getSourceRange()
9161         << PreNarrowingType.getLocalUnqualifiedType()
9162         << EntityType.getLocalUnqualifiedType();
9163     break;
9164   }
9165 
9166   SmallString<128> StaticCast;
9167   llvm::raw_svector_ostream OS(StaticCast);
9168   OS << "static_cast<";
9169   if (const TypedefType *TT = EntityType->getAs<TypedefType>()) {
9170     // It's important to use the typedef's name if there is one so that the
9171     // fixit doesn't break code using types like int64_t.
9172     //
9173     // FIXME: This will break if the typedef requires qualification.  But
9174     // getQualifiedNameAsString() includes non-machine-parsable components.
9175     OS << *TT->getDecl();
9176   } else if (const BuiltinType *BT = EntityType->getAs<BuiltinType>())
9177     OS << BT->getName(S.getLangOpts());
9178   else {
9179     // Oops, we didn't find the actual type of the variable.  Don't emit a fixit
9180     // with a broken cast.
9181     return;
9182   }
9183   OS << ">(";
9184   S.Diag(PostInit->getBeginLoc(), diag::note_init_list_narrowing_silence)
9185       << PostInit->getSourceRange()
9186       << FixItHint::CreateInsertion(PostInit->getBeginLoc(), OS.str())
9187       << FixItHint::CreateInsertion(
9188              S.getLocForEndOfToken(PostInit->getEndLoc()), ")");
9189 }
9190 
9191 //===----------------------------------------------------------------------===//
9192 // Initialization helper functions
9193 //===----------------------------------------------------------------------===//
9194 bool
9195 Sema::CanPerformCopyInitialization(const InitializedEntity &Entity,
9196                                    ExprResult Init) {
9197   if (Init.isInvalid())
9198     return false;
9199 
9200   Expr *InitE = Init.get();
9201   assert(InitE && "No initialization expression");
9202 
9203   InitializationKind Kind =
9204       InitializationKind::CreateCopy(InitE->getBeginLoc(), SourceLocation());
9205   InitializationSequence Seq(*this, Entity, Kind, InitE);
9206   return !Seq.Failed();
9207 }
9208 
9209 ExprResult
9210 Sema::PerformCopyInitialization(const InitializedEntity &Entity,
9211                                 SourceLocation EqualLoc,
9212                                 ExprResult Init,
9213                                 bool TopLevelOfInitList,
9214                                 bool AllowExplicit) {
9215   if (Init.isInvalid())
9216     return ExprError();
9217 
9218   Expr *InitE = Init.get();
9219   assert(InitE && "No initialization expression?");
9220 
9221   if (EqualLoc.isInvalid())
9222     EqualLoc = InitE->getBeginLoc();
9223 
9224   InitializationKind Kind = InitializationKind::CreateCopy(
9225       InitE->getBeginLoc(), EqualLoc, AllowExplicit);
9226   InitializationSequence Seq(*this, Entity, Kind, InitE, TopLevelOfInitList);
9227 
9228   // Prevent infinite recursion when performing parameter copy-initialization.
9229   const bool ShouldTrackCopy =
9230       Entity.isParameterKind() && Seq.isConstructorInitialization();
9231   if (ShouldTrackCopy) {
9232     if (llvm::find(CurrentParameterCopyTypes, Entity.getType()) !=
9233         CurrentParameterCopyTypes.end()) {
9234       Seq.SetOverloadFailure(
9235           InitializationSequence::FK_ConstructorOverloadFailed,
9236           OR_No_Viable_Function);
9237 
9238       // Try to give a meaningful diagnostic note for the problematic
9239       // constructor.
9240       const auto LastStep = Seq.step_end() - 1;
9241       assert(LastStep->Kind ==
9242              InitializationSequence::SK_ConstructorInitialization);
9243       const FunctionDecl *Function = LastStep->Function.Function;
9244       auto Candidate =
9245           llvm::find_if(Seq.getFailedCandidateSet(),
9246                         [Function](const OverloadCandidate &Candidate) -> bool {
9247                           return Candidate.Viable &&
9248                                  Candidate.Function == Function &&
9249                                  Candidate.Conversions.size() > 0;
9250                         });
9251       if (Candidate != Seq.getFailedCandidateSet().end() &&
9252           Function->getNumParams() > 0) {
9253         Candidate->Viable = false;
9254         Candidate->FailureKind = ovl_fail_bad_conversion;
9255         Candidate->Conversions[0].setBad(BadConversionSequence::no_conversion,
9256                                          InitE,
9257                                          Function->getParamDecl(0)->getType());
9258       }
9259     }
9260     CurrentParameterCopyTypes.push_back(Entity.getType());
9261   }
9262 
9263   ExprResult Result = Seq.Perform(*this, Entity, Kind, InitE);
9264 
9265   if (ShouldTrackCopy)
9266     CurrentParameterCopyTypes.pop_back();
9267 
9268   return Result;
9269 }
9270 
9271 /// Determine whether RD is, or is derived from, a specialization of CTD.
9272 static bool isOrIsDerivedFromSpecializationOf(CXXRecordDecl *RD,
9273                                               ClassTemplateDecl *CTD) {
9274   auto NotSpecialization = [&] (const CXXRecordDecl *Candidate) {
9275     auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(Candidate);
9276     return !CTSD || !declaresSameEntity(CTSD->getSpecializedTemplate(), CTD);
9277   };
9278   return !(NotSpecialization(RD) && RD->forallBases(NotSpecialization));
9279 }
9280 
9281 QualType Sema::DeduceTemplateSpecializationFromInitializer(
9282     TypeSourceInfo *TSInfo, const InitializedEntity &Entity,
9283     const InitializationKind &Kind, MultiExprArg Inits) {
9284   auto *DeducedTST = dyn_cast<DeducedTemplateSpecializationType>(
9285       TSInfo->getType()->getContainedDeducedType());
9286   assert(DeducedTST && "not a deduced template specialization type");
9287 
9288   auto TemplateName = DeducedTST->getTemplateName();
9289   if (TemplateName.isDependent())
9290     return Context.DependentTy;
9291 
9292   // We can only perform deduction for class templates.
9293   auto *Template =
9294       dyn_cast_or_null<ClassTemplateDecl>(TemplateName.getAsTemplateDecl());
9295   if (!Template) {
9296     Diag(Kind.getLocation(),
9297          diag::err_deduced_non_class_template_specialization_type)
9298       << (int)getTemplateNameKindForDiagnostics(TemplateName) << TemplateName;
9299     if (auto *TD = TemplateName.getAsTemplateDecl())
9300       Diag(TD->getLocation(), diag::note_template_decl_here);
9301     return QualType();
9302   }
9303 
9304   // Can't deduce from dependent arguments.
9305   if (Expr::hasAnyTypeDependentArguments(Inits)) {
9306     Diag(TSInfo->getTypeLoc().getBeginLoc(),
9307          diag::warn_cxx14_compat_class_template_argument_deduction)
9308         << TSInfo->getTypeLoc().getSourceRange() << 0;
9309     return Context.DependentTy;
9310   }
9311 
9312   // FIXME: Perform "exact type" matching first, per CWG discussion?
9313   //        Or implement this via an implied 'T(T) -> T' deduction guide?
9314 
9315   // FIXME: Do we need/want a std::initializer_list<T> special case?
9316 
9317   // Look up deduction guides, including those synthesized from constructors.
9318   //
9319   // C++1z [over.match.class.deduct]p1:
9320   //   A set of functions and function templates is formed comprising:
9321   //   - For each constructor of the class template designated by the
9322   //     template-name, a function template [...]
9323   //  - For each deduction-guide, a function or function template [...]
9324   DeclarationNameInfo NameInfo(
9325       Context.DeclarationNames.getCXXDeductionGuideName(Template),
9326       TSInfo->getTypeLoc().getEndLoc());
9327   LookupResult Guides(*this, NameInfo, LookupOrdinaryName);
9328   LookupQualifiedName(Guides, Template->getDeclContext());
9329 
9330   // FIXME: Do not diagnose inaccessible deduction guides. The standard isn't
9331   // clear on this, but they're not found by name so access does not apply.
9332   Guides.suppressDiagnostics();
9333 
9334   // Figure out if this is list-initialization.
9335   InitListExpr *ListInit =
9336       (Inits.size() == 1 && Kind.getKind() != InitializationKind::IK_Direct)
9337           ? dyn_cast<InitListExpr>(Inits[0])
9338           : nullptr;
9339 
9340   // C++1z [over.match.class.deduct]p1:
9341   //   Initialization and overload resolution are performed as described in
9342   //   [dcl.init] and [over.match.ctor], [over.match.copy], or [over.match.list]
9343   //   (as appropriate for the type of initialization performed) for an object
9344   //   of a hypothetical class type, where the selected functions and function
9345   //   templates are considered to be the constructors of that class type
9346   //
9347   // Since we know we're initializing a class type of a type unrelated to that
9348   // of the initializer, this reduces to something fairly reasonable.
9349   OverloadCandidateSet Candidates(Kind.getLocation(),
9350                                   OverloadCandidateSet::CSK_Normal);
9351   OverloadCandidateSet::iterator Best;
9352 
9353   bool HasAnyDeductionGuide = false;
9354   bool AllowExplicit = !Kind.isCopyInit() || ListInit;
9355 
9356   auto tryToResolveOverload =
9357       [&](bool OnlyListConstructors) -> OverloadingResult {
9358     Candidates.clear(OverloadCandidateSet::CSK_Normal);
9359     HasAnyDeductionGuide = false;
9360 
9361     for (auto I = Guides.begin(), E = Guides.end(); I != E; ++I) {
9362       NamedDecl *D = (*I)->getUnderlyingDecl();
9363       if (D->isInvalidDecl())
9364         continue;
9365 
9366       auto *TD = dyn_cast<FunctionTemplateDecl>(D);
9367       auto *GD = dyn_cast_or_null<CXXDeductionGuideDecl>(
9368           TD ? TD->getTemplatedDecl() : dyn_cast<FunctionDecl>(D));
9369       if (!GD)
9370         continue;
9371 
9372       if (!GD->isImplicit())
9373         HasAnyDeductionGuide = true;
9374 
9375       // C++ [over.match.ctor]p1: (non-list copy-initialization from non-class)
9376       //   For copy-initialization, the candidate functions are all the
9377       //   converting constructors (12.3.1) of that class.
9378       // C++ [over.match.copy]p1: (non-list copy-initialization from class)
9379       //   The converting constructors of T are candidate functions.
9380       if (!AllowExplicit) {
9381         // Only consider converting constructors.
9382         if (GD->isExplicit())
9383           continue;
9384 
9385         // When looking for a converting constructor, deduction guides that
9386         // could never be called with one argument are not interesting to
9387         // check or note.
9388         if (GD->getMinRequiredArguments() > 1 ||
9389             (GD->getNumParams() == 0 && !GD->isVariadic()))
9390           continue;
9391       }
9392 
9393       // C++ [over.match.list]p1.1: (first phase list initialization)
9394       //   Initially, the candidate functions are the initializer-list
9395       //   constructors of the class T
9396       if (OnlyListConstructors && !isInitListConstructor(GD))
9397         continue;
9398 
9399       // C++ [over.match.list]p1.2: (second phase list initialization)
9400       //   the candidate functions are all the constructors of the class T
9401       // C++ [over.match.ctor]p1: (all other cases)
9402       //   the candidate functions are all the constructors of the class of
9403       //   the object being initialized
9404 
9405       // C++ [over.best.ics]p4:
9406       //   When [...] the constructor [...] is a candidate by
9407       //    - [over.match.copy] (in all cases)
9408       // FIXME: The "second phase of [over.match.list] case can also
9409       // theoretically happen here, but it's not clear whether we can
9410       // ever have a parameter of the right type.
9411       bool SuppressUserConversions = Kind.isCopyInit();
9412 
9413       if (TD)
9414         AddTemplateOverloadCandidate(TD, I.getPair(), /*ExplicitArgs*/ nullptr,
9415                                      Inits, Candidates, SuppressUserConversions,
9416                                      /*PartialOverloading*/ false,
9417                                      AllowExplicit);
9418       else
9419         AddOverloadCandidate(GD, I.getPair(), Inits, Candidates,
9420                              SuppressUserConversions,
9421                              /*PartialOverloading*/ false, AllowExplicit);
9422     }
9423     return Candidates.BestViableFunction(*this, Kind.getLocation(), Best);
9424   };
9425 
9426   OverloadingResult Result = OR_No_Viable_Function;
9427 
9428   // C++11 [over.match.list]p1, per DR1467: for list-initialization, first
9429   // try initializer-list constructors.
9430   if (ListInit) {
9431     bool TryListConstructors = true;
9432 
9433     // Try list constructors unless the list is empty and the class has one or
9434     // more default constructors, in which case those constructors win.
9435     if (!ListInit->getNumInits()) {
9436       for (NamedDecl *D : Guides) {
9437         auto *FD = dyn_cast<FunctionDecl>(D->getUnderlyingDecl());
9438         if (FD && FD->getMinRequiredArguments() == 0) {
9439           TryListConstructors = false;
9440           break;
9441         }
9442       }
9443     } else if (ListInit->getNumInits() == 1) {
9444       // C++ [over.match.class.deduct]:
9445       //   As an exception, the first phase in [over.match.list] (considering
9446       //   initializer-list constructors) is omitted if the initializer list
9447       //   consists of a single expression of type cv U, where U is a
9448       //   specialization of C or a class derived from a specialization of C.
9449       Expr *E = ListInit->getInit(0);
9450       auto *RD = E->getType()->getAsCXXRecordDecl();
9451       if (!isa<InitListExpr>(E) && RD &&
9452           isCompleteType(Kind.getLocation(), E->getType()) &&
9453           isOrIsDerivedFromSpecializationOf(RD, Template))
9454         TryListConstructors = false;
9455     }
9456 
9457     if (TryListConstructors)
9458       Result = tryToResolveOverload(/*OnlyListConstructor*/true);
9459     // Then unwrap the initializer list and try again considering all
9460     // constructors.
9461     Inits = MultiExprArg(ListInit->getInits(), ListInit->getNumInits());
9462   }
9463 
9464   // If list-initialization fails, or if we're doing any other kind of
9465   // initialization, we (eventually) consider constructors.
9466   if (Result == OR_No_Viable_Function)
9467     Result = tryToResolveOverload(/*OnlyListConstructor*/false);
9468 
9469   switch (Result) {
9470   case OR_Ambiguous:
9471     // FIXME: For list-initialization candidates, it'd usually be better to
9472     // list why they were not viable when given the initializer list itself as
9473     // an argument.
9474     Candidates.NoteCandidates(
9475         PartialDiagnosticAt(
9476             Kind.getLocation(),
9477             PDiag(diag::err_deduced_class_template_ctor_ambiguous)
9478                 << TemplateName),
9479         *this, OCD_ViableCandidates, Inits);
9480     return QualType();
9481 
9482   case OR_No_Viable_Function: {
9483     CXXRecordDecl *Primary =
9484         cast<ClassTemplateDecl>(Template)->getTemplatedDecl();
9485     bool Complete =
9486         isCompleteType(Kind.getLocation(), Context.getTypeDeclType(Primary));
9487     Candidates.NoteCandidates(
9488         PartialDiagnosticAt(
9489             Kind.getLocation(),
9490             PDiag(Complete ? diag::err_deduced_class_template_ctor_no_viable
9491                            : diag::err_deduced_class_template_incomplete)
9492                 << TemplateName << !Guides.empty()),
9493         *this, OCD_AllCandidates, Inits);
9494     return QualType();
9495   }
9496 
9497   case OR_Deleted: {
9498     Diag(Kind.getLocation(), diag::err_deduced_class_template_deleted)
9499       << TemplateName;
9500     NoteDeletedFunction(Best->Function);
9501     return QualType();
9502   }
9503 
9504   case OR_Success:
9505     // C++ [over.match.list]p1:
9506     //   In copy-list-initialization, if an explicit constructor is chosen, the
9507     //   initialization is ill-formed.
9508     if (Kind.isCopyInit() && ListInit &&
9509         cast<CXXDeductionGuideDecl>(Best->Function)->isExplicit()) {
9510       bool IsDeductionGuide = !Best->Function->isImplicit();
9511       Diag(Kind.getLocation(), diag::err_deduced_class_template_explicit)
9512           << TemplateName << IsDeductionGuide;
9513       Diag(Best->Function->getLocation(),
9514            diag::note_explicit_ctor_deduction_guide_here)
9515           << IsDeductionGuide;
9516       return QualType();
9517     }
9518 
9519     // Make sure we didn't select an unusable deduction guide, and mark it
9520     // as referenced.
9521     DiagnoseUseOfDecl(Best->Function, Kind.getLocation());
9522     MarkFunctionReferenced(Kind.getLocation(), Best->Function);
9523     break;
9524   }
9525 
9526   // C++ [dcl.type.class.deduct]p1:
9527   //  The placeholder is replaced by the return type of the function selected
9528   //  by overload resolution for class template deduction.
9529   QualType DeducedType =
9530       SubstAutoType(TSInfo->getType(), Best->Function->getReturnType());
9531   Diag(TSInfo->getTypeLoc().getBeginLoc(),
9532        diag::warn_cxx14_compat_class_template_argument_deduction)
9533       << TSInfo->getTypeLoc().getSourceRange() << 1 << DeducedType;
9534 
9535   // Warn if CTAD was used on a type that does not have any user-defined
9536   // deduction guides.
9537   if (!HasAnyDeductionGuide) {
9538     Diag(TSInfo->getTypeLoc().getBeginLoc(),
9539          diag::warn_ctad_maybe_unsupported)
9540         << TemplateName;
9541     Diag(Template->getLocation(), diag::note_suppress_ctad_maybe_unsupported);
9542   }
9543 
9544   return DeducedType;
9545 }
9546