1 //===--- SemaExprCXX.cpp - Semantic Analysis for Expressions --------------===//
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 /// \file
10 /// Implements semantic analysis for C++ expressions.
11 ///
12 //===----------------------------------------------------------------------===//
13 
14 #include "TreeTransform.h"
15 #include "TypeLocBuilder.h"
16 #include "clang/AST/ASTContext.h"
17 #include "clang/AST/ASTLambda.h"
18 #include "clang/AST/CXXInheritance.h"
19 #include "clang/AST/CharUnits.h"
20 #include "clang/AST/DeclObjC.h"
21 #include "clang/AST/ExprCXX.h"
22 #include "clang/AST/ExprObjC.h"
23 #include "clang/AST/RecursiveASTVisitor.h"
24 #include "clang/AST/TypeLoc.h"
25 #include "clang/Basic/AlignedAllocation.h"
26 #include "clang/Basic/DiagnosticSema.h"
27 #include "clang/Basic/PartialDiagnostic.h"
28 #include "clang/Basic/TargetInfo.h"
29 #include "clang/Basic/TypeTraits.h"
30 #include "clang/Lex/Preprocessor.h"
31 #include "clang/Sema/DeclSpec.h"
32 #include "clang/Sema/Initialization.h"
33 #include "clang/Sema/Lookup.h"
34 #include "clang/Sema/ParsedTemplate.h"
35 #include "clang/Sema/Scope.h"
36 #include "clang/Sema/ScopeInfo.h"
37 #include "clang/Sema/SemaInternal.h"
38 #include "clang/Sema/SemaLambda.h"
39 #include "clang/Sema/Template.h"
40 #include "clang/Sema/TemplateDeduction.h"
41 #include "llvm/ADT/APInt.h"
42 #include "llvm/ADT/STLExtras.h"
43 #include "llvm/Support/ErrorHandling.h"
44 #include "llvm/Support/TypeSize.h"
45 using namespace clang;
46 using namespace sema;
47 
48 /// Handle the result of the special case name lookup for inheriting
49 /// constructor declarations. 'NS::X::X' and 'NS::X<...>::X' are treated as
50 /// constructor names in member using declarations, even if 'X' is not the
51 /// name of the corresponding type.
52 ParsedType Sema::getInheritingConstructorName(CXXScopeSpec &SS,
53                                               SourceLocation NameLoc,
54                                               IdentifierInfo &Name) {
55   NestedNameSpecifier *NNS = SS.getScopeRep();
56 
57   // Convert the nested-name-specifier into a type.
58   QualType Type;
59   switch (NNS->getKind()) {
60   case NestedNameSpecifier::TypeSpec:
61   case NestedNameSpecifier::TypeSpecWithTemplate:
62     Type = QualType(NNS->getAsType(), 0);
63     break;
64 
65   case NestedNameSpecifier::Identifier:
66     // Strip off the last layer of the nested-name-specifier and build a
67     // typename type for it.
68     assert(NNS->getAsIdentifier() == &Name && "not a constructor name");
69     Type = Context.getDependentNameType(ETK_None, NNS->getPrefix(),
70                                         NNS->getAsIdentifier());
71     break;
72 
73   case NestedNameSpecifier::Global:
74   case NestedNameSpecifier::Super:
75   case NestedNameSpecifier::Namespace:
76   case NestedNameSpecifier::NamespaceAlias:
77     llvm_unreachable("Nested name specifier is not a type for inheriting ctor");
78   }
79 
80   // This reference to the type is located entirely at the location of the
81   // final identifier in the qualified-id.
82   return CreateParsedType(Type,
83                           Context.getTrivialTypeSourceInfo(Type, NameLoc));
84 }
85 
86 ParsedType Sema::getConstructorName(IdentifierInfo &II,
87                                     SourceLocation NameLoc,
88                                     Scope *S, CXXScopeSpec &SS,
89                                     bool EnteringContext) {
90   CXXRecordDecl *CurClass = getCurrentClass(S, &SS);
91   assert(CurClass && &II == CurClass->getIdentifier() &&
92          "not a constructor name");
93 
94   // When naming a constructor as a member of a dependent context (eg, in a
95   // friend declaration or an inherited constructor declaration), form an
96   // unresolved "typename" type.
97   if (CurClass->isDependentContext() && !EnteringContext && SS.getScopeRep()) {
98     QualType T = Context.getDependentNameType(ETK_None, SS.getScopeRep(), &II);
99     return ParsedType::make(T);
100   }
101 
102   if (SS.isNotEmpty() && RequireCompleteDeclContext(SS, CurClass))
103     return ParsedType();
104 
105   // Find the injected-class-name declaration. Note that we make no attempt to
106   // diagnose cases where the injected-class-name is shadowed: the only
107   // declaration that can validly shadow the injected-class-name is a
108   // non-static data member, and if the class contains both a non-static data
109   // member and a constructor then it is ill-formed (we check that in
110   // CheckCompletedCXXClass).
111   CXXRecordDecl *InjectedClassName = nullptr;
112   for (NamedDecl *ND : CurClass->lookup(&II)) {
113     auto *RD = dyn_cast<CXXRecordDecl>(ND);
114     if (RD && RD->isInjectedClassName()) {
115       InjectedClassName = RD;
116       break;
117     }
118   }
119   if (!InjectedClassName) {
120     if (!CurClass->isInvalidDecl()) {
121       // FIXME: RequireCompleteDeclContext doesn't check dependent contexts
122       // properly. Work around it here for now.
123       Diag(SS.getLastQualifierNameLoc(),
124            diag::err_incomplete_nested_name_spec) << CurClass << SS.getRange();
125     }
126     return ParsedType();
127   }
128 
129   QualType T = Context.getTypeDeclType(InjectedClassName);
130   DiagnoseUseOfDecl(InjectedClassName, NameLoc);
131   MarkAnyDeclReferenced(NameLoc, InjectedClassName, /*OdrUse=*/false);
132 
133   return ParsedType::make(T);
134 }
135 
136 ParsedType Sema::getDestructorName(SourceLocation TildeLoc,
137                                    IdentifierInfo &II,
138                                    SourceLocation NameLoc,
139                                    Scope *S, CXXScopeSpec &SS,
140                                    ParsedType ObjectTypePtr,
141                                    bool EnteringContext) {
142   // Determine where to perform name lookup.
143 
144   // FIXME: This area of the standard is very messy, and the current
145   // wording is rather unclear about which scopes we search for the
146   // destructor name; see core issues 399 and 555. Issue 399 in
147   // particular shows where the current description of destructor name
148   // lookup is completely out of line with existing practice, e.g.,
149   // this appears to be ill-formed:
150   //
151   //   namespace N {
152   //     template <typename T> struct S {
153   //       ~S();
154   //     };
155   //   }
156   //
157   //   void f(N::S<int>* s) {
158   //     s->N::S<int>::~S();
159   //   }
160   //
161   // See also PR6358 and PR6359.
162   //
163   // For now, we accept all the cases in which the name given could plausibly
164   // be interpreted as a correct destructor name, issuing off-by-default
165   // extension diagnostics on the cases that don't strictly conform to the
166   // C++20 rules. This basically means we always consider looking in the
167   // nested-name-specifier prefix, the complete nested-name-specifier, and
168   // the scope, and accept if we find the expected type in any of the three
169   // places.
170 
171   if (SS.isInvalid())
172     return nullptr;
173 
174   // Whether we've failed with a diagnostic already.
175   bool Failed = false;
176 
177   llvm::SmallVector<NamedDecl*, 8> FoundDecls;
178   llvm::SmallPtrSet<CanonicalDeclPtr<Decl>, 8> FoundDeclSet;
179 
180   // If we have an object type, it's because we are in a
181   // pseudo-destructor-expression or a member access expression, and
182   // we know what type we're looking for.
183   QualType SearchType =
184       ObjectTypePtr ? GetTypeFromParser(ObjectTypePtr) : QualType();
185 
186   auto CheckLookupResult = [&](LookupResult &Found) -> ParsedType {
187     auto IsAcceptableResult = [&](NamedDecl *D) -> bool {
188       auto *Type = dyn_cast<TypeDecl>(D->getUnderlyingDecl());
189       if (!Type)
190         return false;
191 
192       if (SearchType.isNull() || SearchType->isDependentType())
193         return true;
194 
195       QualType T = Context.getTypeDeclType(Type);
196       return Context.hasSameUnqualifiedType(T, SearchType);
197     };
198 
199     unsigned NumAcceptableResults = 0;
200     for (NamedDecl *D : Found) {
201       if (IsAcceptableResult(D))
202         ++NumAcceptableResults;
203 
204       // Don't list a class twice in the lookup failure diagnostic if it's
205       // found by both its injected-class-name and by the name in the enclosing
206       // scope.
207       if (auto *RD = dyn_cast<CXXRecordDecl>(D))
208         if (RD->isInjectedClassName())
209           D = cast<NamedDecl>(RD->getParent());
210 
211       if (FoundDeclSet.insert(D).second)
212         FoundDecls.push_back(D);
213     }
214 
215     // As an extension, attempt to "fix" an ambiguity by erasing all non-type
216     // results, and all non-matching results if we have a search type. It's not
217     // clear what the right behavior is if destructor lookup hits an ambiguity,
218     // but other compilers do generally accept at least some kinds of
219     // ambiguity.
220     if (Found.isAmbiguous() && NumAcceptableResults == 1) {
221       Diag(NameLoc, diag::ext_dtor_name_ambiguous);
222       LookupResult::Filter F = Found.makeFilter();
223       while (F.hasNext()) {
224         NamedDecl *D = F.next();
225         if (auto *TD = dyn_cast<TypeDecl>(D->getUnderlyingDecl()))
226           Diag(D->getLocation(), diag::note_destructor_type_here)
227               << Context.getTypeDeclType(TD);
228         else
229           Diag(D->getLocation(), diag::note_destructor_nontype_here);
230 
231         if (!IsAcceptableResult(D))
232           F.erase();
233       }
234       F.done();
235     }
236 
237     if (Found.isAmbiguous())
238       Failed = true;
239 
240     if (TypeDecl *Type = Found.getAsSingle<TypeDecl>()) {
241       if (IsAcceptableResult(Type)) {
242         QualType T = Context.getTypeDeclType(Type);
243         MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false);
244         return CreateParsedType(T,
245                                 Context.getTrivialTypeSourceInfo(T, NameLoc));
246       }
247     }
248 
249     return nullptr;
250   };
251 
252   bool IsDependent = false;
253 
254   auto LookupInObjectType = [&]() -> ParsedType {
255     if (Failed || SearchType.isNull())
256       return nullptr;
257 
258     IsDependent |= SearchType->isDependentType();
259 
260     LookupResult Found(*this, &II, NameLoc, LookupDestructorName);
261     DeclContext *LookupCtx = computeDeclContext(SearchType);
262     if (!LookupCtx)
263       return nullptr;
264     LookupQualifiedName(Found, LookupCtx);
265     return CheckLookupResult(Found);
266   };
267 
268   auto LookupInNestedNameSpec = [&](CXXScopeSpec &LookupSS) -> ParsedType {
269     if (Failed)
270       return nullptr;
271 
272     IsDependent |= isDependentScopeSpecifier(LookupSS);
273     DeclContext *LookupCtx = computeDeclContext(LookupSS, EnteringContext);
274     if (!LookupCtx)
275       return nullptr;
276 
277     LookupResult Found(*this, &II, NameLoc, LookupDestructorName);
278     if (RequireCompleteDeclContext(LookupSS, LookupCtx)) {
279       Failed = true;
280       return nullptr;
281     }
282     LookupQualifiedName(Found, LookupCtx);
283     return CheckLookupResult(Found);
284   };
285 
286   auto LookupInScope = [&]() -> ParsedType {
287     if (Failed || !S)
288       return nullptr;
289 
290     LookupResult Found(*this, &II, NameLoc, LookupDestructorName);
291     LookupName(Found, S);
292     return CheckLookupResult(Found);
293   };
294 
295   // C++2a [basic.lookup.qual]p6:
296   //   In a qualified-id of the form
297   //
298   //     nested-name-specifier[opt] type-name :: ~ type-name
299   //
300   //   the second type-name is looked up in the same scope as the first.
301   //
302   // We interpret this as meaning that if you do a dual-scope lookup for the
303   // first name, you also do a dual-scope lookup for the second name, per
304   // C++ [basic.lookup.classref]p4:
305   //
306   //   If the id-expression in a class member access is a qualified-id of the
307   //   form
308   //
309   //     class-name-or-namespace-name :: ...
310   //
311   //   the class-name-or-namespace-name following the . or -> is first looked
312   //   up in the class of the object expression and the name, if found, is used.
313   //   Otherwise, it is looked up in the context of the entire
314   //   postfix-expression.
315   //
316   // This looks in the same scopes as for an unqualified destructor name:
317   //
318   // C++ [basic.lookup.classref]p3:
319   //   If the unqualified-id is ~ type-name, the type-name is looked up
320   //   in the context of the entire postfix-expression. If the type T
321   //   of the object expression is of a class type C, the type-name is
322   //   also looked up in the scope of class C. At least one of the
323   //   lookups shall find a name that refers to cv T.
324   //
325   // FIXME: The intent is unclear here. Should type-name::~type-name look in
326   // the scope anyway if it finds a non-matching name declared in the class?
327   // If both lookups succeed and find a dependent result, which result should
328   // we retain? (Same question for p->~type-name().)
329 
330   if (NestedNameSpecifier *Prefix =
331       SS.isSet() ? SS.getScopeRep()->getPrefix() : nullptr) {
332     // This is
333     //
334     //   nested-name-specifier type-name :: ~ type-name
335     //
336     // Look for the second type-name in the nested-name-specifier.
337     CXXScopeSpec PrefixSS;
338     PrefixSS.Adopt(NestedNameSpecifierLoc(Prefix, SS.location_data()));
339     if (ParsedType T = LookupInNestedNameSpec(PrefixSS))
340       return T;
341   } else {
342     // This is one of
343     //
344     //   type-name :: ~ type-name
345     //   ~ type-name
346     //
347     // Look in the scope and (if any) the object type.
348     if (ParsedType T = LookupInScope())
349       return T;
350     if (ParsedType T = LookupInObjectType())
351       return T;
352   }
353 
354   if (Failed)
355     return nullptr;
356 
357   if (IsDependent) {
358     // We didn't find our type, but that's OK: it's dependent anyway.
359 
360     // FIXME: What if we have no nested-name-specifier?
361     QualType T = CheckTypenameType(ETK_None, SourceLocation(),
362                                    SS.getWithLocInContext(Context),
363                                    II, NameLoc);
364     return ParsedType::make(T);
365   }
366 
367   // The remaining cases are all non-standard extensions imitating the behavior
368   // of various other compilers.
369   unsigned NumNonExtensionDecls = FoundDecls.size();
370 
371   if (SS.isSet()) {
372     // For compatibility with older broken C++ rules and existing code,
373     //
374     //   nested-name-specifier :: ~ type-name
375     //
376     // also looks for type-name within the nested-name-specifier.
377     if (ParsedType T = LookupInNestedNameSpec(SS)) {
378       Diag(SS.getEndLoc(), diag::ext_dtor_named_in_wrong_scope)
379           << SS.getRange()
380           << FixItHint::CreateInsertion(SS.getEndLoc(),
381                                         ("::" + II.getName()).str());
382       return T;
383     }
384 
385     // For compatibility with other compilers and older versions of Clang,
386     //
387     //   nested-name-specifier type-name :: ~ type-name
388     //
389     // also looks for type-name in the scope. Unfortunately, we can't
390     // reasonably apply this fallback for dependent nested-name-specifiers.
391     if (SS.getScopeRep()->getPrefix()) {
392       if (ParsedType T = LookupInScope()) {
393         Diag(SS.getEndLoc(), diag::ext_qualified_dtor_named_in_lexical_scope)
394             << FixItHint::CreateRemoval(SS.getRange());
395         Diag(FoundDecls.back()->getLocation(), diag::note_destructor_type_here)
396             << GetTypeFromParser(T);
397         return T;
398       }
399     }
400   }
401 
402   // We didn't find anything matching; tell the user what we did find (if
403   // anything).
404 
405   // Don't tell the user about declarations we shouldn't have found.
406   FoundDecls.resize(NumNonExtensionDecls);
407 
408   // List types before non-types.
409   std::stable_sort(FoundDecls.begin(), FoundDecls.end(),
410                    [](NamedDecl *A, NamedDecl *B) {
411                      return isa<TypeDecl>(A->getUnderlyingDecl()) >
412                             isa<TypeDecl>(B->getUnderlyingDecl());
413                    });
414 
415   // Suggest a fixit to properly name the destroyed type.
416   auto MakeFixItHint = [&]{
417     const CXXRecordDecl *Destroyed = nullptr;
418     // FIXME: If we have a scope specifier, suggest its last component?
419     if (!SearchType.isNull())
420       Destroyed = SearchType->getAsCXXRecordDecl();
421     else if (S)
422       Destroyed = dyn_cast_or_null<CXXRecordDecl>(S->getEntity());
423     if (Destroyed)
424       return FixItHint::CreateReplacement(SourceRange(NameLoc),
425                                           Destroyed->getNameAsString());
426     return FixItHint();
427   };
428 
429   if (FoundDecls.empty()) {
430     // FIXME: Attempt typo-correction?
431     Diag(NameLoc, diag::err_undeclared_destructor_name)
432       << &II << MakeFixItHint();
433   } else if (!SearchType.isNull() && FoundDecls.size() == 1) {
434     if (auto *TD = dyn_cast<TypeDecl>(FoundDecls[0]->getUnderlyingDecl())) {
435       assert(!SearchType.isNull() &&
436              "should only reject a type result if we have a search type");
437       QualType T = Context.getTypeDeclType(TD);
438       Diag(NameLoc, diag::err_destructor_expr_type_mismatch)
439           << T << SearchType << MakeFixItHint();
440     } else {
441       Diag(NameLoc, diag::err_destructor_expr_nontype)
442           << &II << MakeFixItHint();
443     }
444   } else {
445     Diag(NameLoc, SearchType.isNull() ? diag::err_destructor_name_nontype
446                                       : diag::err_destructor_expr_mismatch)
447         << &II << SearchType << MakeFixItHint();
448   }
449 
450   for (NamedDecl *FoundD : FoundDecls) {
451     if (auto *TD = dyn_cast<TypeDecl>(FoundD->getUnderlyingDecl()))
452       Diag(FoundD->getLocation(), diag::note_destructor_type_here)
453           << Context.getTypeDeclType(TD);
454     else
455       Diag(FoundD->getLocation(), diag::note_destructor_nontype_here)
456           << FoundD;
457   }
458 
459   return nullptr;
460 }
461 
462 ParsedType Sema::getDestructorTypeForDecltype(const DeclSpec &DS,
463                                               ParsedType ObjectType) {
464   if (DS.getTypeSpecType() == DeclSpec::TST_error)
465     return nullptr;
466 
467   if (DS.getTypeSpecType() == DeclSpec::TST_decltype_auto) {
468     Diag(DS.getTypeSpecTypeLoc(), diag::err_decltype_auto_invalid);
469     return nullptr;
470   }
471 
472   assert(DS.getTypeSpecType() == DeclSpec::TST_decltype &&
473          "unexpected type in getDestructorType");
474   QualType T = BuildDecltypeType(DS.getRepAsExpr());
475 
476   // If we know the type of the object, check that the correct destructor
477   // type was named now; we can give better diagnostics this way.
478   QualType SearchType = GetTypeFromParser(ObjectType);
479   if (!SearchType.isNull() && !SearchType->isDependentType() &&
480       !Context.hasSameUnqualifiedType(T, SearchType)) {
481     Diag(DS.getTypeSpecTypeLoc(), diag::err_destructor_expr_type_mismatch)
482       << T << SearchType;
483     return nullptr;
484   }
485 
486   return ParsedType::make(T);
487 }
488 
489 bool Sema::checkLiteralOperatorId(const CXXScopeSpec &SS,
490                                   const UnqualifiedId &Name, bool IsUDSuffix) {
491   assert(Name.getKind() == UnqualifiedIdKind::IK_LiteralOperatorId);
492   if (!IsUDSuffix) {
493     // [over.literal] p8
494     //
495     // double operator""_Bq(long double);  // OK: not a reserved identifier
496     // double operator"" _Bq(long double); // ill-formed, no diagnostic required
497     IdentifierInfo *II = Name.Identifier;
498     ReservedIdentifierStatus Status = II->isReserved(PP.getLangOpts());
499     SourceLocation Loc = Name.getEndLoc();
500     if (isReservedInAllContexts(Status) &&
501         !PP.getSourceManager().isInSystemHeader(Loc)) {
502       Diag(Loc, diag::warn_reserved_extern_symbol)
503           << II << static_cast<int>(Status)
504           << FixItHint::CreateReplacement(
505                  Name.getSourceRange(),
506                  (StringRef("operator\"\"") + II->getName()).str());
507     }
508   }
509 
510   if (!SS.isValid())
511     return false;
512 
513   switch (SS.getScopeRep()->getKind()) {
514   case NestedNameSpecifier::Identifier:
515   case NestedNameSpecifier::TypeSpec:
516   case NestedNameSpecifier::TypeSpecWithTemplate:
517     // Per C++11 [over.literal]p2, literal operators can only be declared at
518     // namespace scope. Therefore, this unqualified-id cannot name anything.
519     // Reject it early, because we have no AST representation for this in the
520     // case where the scope is dependent.
521     Diag(Name.getBeginLoc(), diag::err_literal_operator_id_outside_namespace)
522         << SS.getScopeRep();
523     return true;
524 
525   case NestedNameSpecifier::Global:
526   case NestedNameSpecifier::Super:
527   case NestedNameSpecifier::Namespace:
528   case NestedNameSpecifier::NamespaceAlias:
529     return false;
530   }
531 
532   llvm_unreachable("unknown nested name specifier kind");
533 }
534 
535 /// Build a C++ typeid expression with a type operand.
536 ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
537                                 SourceLocation TypeidLoc,
538                                 TypeSourceInfo *Operand,
539                                 SourceLocation RParenLoc) {
540   // C++ [expr.typeid]p4:
541   //   The top-level cv-qualifiers of the lvalue expression or the type-id
542   //   that is the operand of typeid are always ignored.
543   //   If the type of the type-id is a class type or a reference to a class
544   //   type, the class shall be completely-defined.
545   Qualifiers Quals;
546   QualType T
547     = Context.getUnqualifiedArrayType(Operand->getType().getNonReferenceType(),
548                                       Quals);
549   if (T->getAs<RecordType>() &&
550       RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
551     return ExprError();
552 
553   if (T->isVariablyModifiedType())
554     return ExprError(Diag(TypeidLoc, diag::err_variably_modified_typeid) << T);
555 
556   if (CheckQualifiedFunctionForTypeId(T, TypeidLoc))
557     return ExprError();
558 
559   return new (Context) CXXTypeidExpr(TypeInfoType.withConst(), Operand,
560                                      SourceRange(TypeidLoc, RParenLoc));
561 }
562 
563 /// Build a C++ typeid expression with an expression operand.
564 ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
565                                 SourceLocation TypeidLoc,
566                                 Expr *E,
567                                 SourceLocation RParenLoc) {
568   bool WasEvaluated = false;
569   if (E && !E->isTypeDependent()) {
570     if (E->hasPlaceholderType()) {
571       ExprResult result = CheckPlaceholderExpr(E);
572       if (result.isInvalid()) return ExprError();
573       E = result.get();
574     }
575 
576     QualType T = E->getType();
577     if (const RecordType *RecordT = T->getAs<RecordType>()) {
578       CXXRecordDecl *RecordD = cast<CXXRecordDecl>(RecordT->getDecl());
579       // C++ [expr.typeid]p3:
580       //   [...] If the type of the expression is a class type, the class
581       //   shall be completely-defined.
582       if (RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
583         return ExprError();
584 
585       // C++ [expr.typeid]p3:
586       //   When typeid is applied to an expression other than an glvalue of a
587       //   polymorphic class type [...] [the] expression is an unevaluated
588       //   operand. [...]
589       if (RecordD->isPolymorphic() && E->isGLValue()) {
590         if (isUnevaluatedContext()) {
591           // The operand was processed in unevaluated context, switch the
592           // context and recheck the subexpression.
593           ExprResult Result = TransformToPotentiallyEvaluated(E);
594           if (Result.isInvalid())
595             return ExprError();
596           E = Result.get();
597         }
598 
599         // We require a vtable to query the type at run time.
600         MarkVTableUsed(TypeidLoc, RecordD);
601         WasEvaluated = true;
602       }
603     }
604 
605     ExprResult Result = CheckUnevaluatedOperand(E);
606     if (Result.isInvalid())
607       return ExprError();
608     E = Result.get();
609 
610     // C++ [expr.typeid]p4:
611     //   [...] If the type of the type-id is a reference to a possibly
612     //   cv-qualified type, the result of the typeid expression refers to a
613     //   std::type_info object representing the cv-unqualified referenced
614     //   type.
615     Qualifiers Quals;
616     QualType UnqualT = Context.getUnqualifiedArrayType(T, Quals);
617     if (!Context.hasSameType(T, UnqualT)) {
618       T = UnqualT;
619       E = ImpCastExprToType(E, UnqualT, CK_NoOp, E->getValueKind()).get();
620     }
621   }
622 
623   if (E->getType()->isVariablyModifiedType())
624     return ExprError(Diag(TypeidLoc, diag::err_variably_modified_typeid)
625                      << E->getType());
626   else if (!inTemplateInstantiation() &&
627            E->HasSideEffects(Context, WasEvaluated)) {
628     // The expression operand for typeid is in an unevaluated expression
629     // context, so side effects could result in unintended consequences.
630     Diag(E->getExprLoc(), WasEvaluated
631                               ? diag::warn_side_effects_typeid
632                               : diag::warn_side_effects_unevaluated_context);
633   }
634 
635   return new (Context) CXXTypeidExpr(TypeInfoType.withConst(), E,
636                                      SourceRange(TypeidLoc, RParenLoc));
637 }
638 
639 /// ActOnCXXTypeidOfType - Parse typeid( type-id ) or typeid (expression);
640 ExprResult
641 Sema::ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc,
642                      bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
643   // typeid is not supported in OpenCL.
644   if (getLangOpts().OpenCLCPlusPlus) {
645     return ExprError(Diag(OpLoc, diag::err_openclcxx_not_supported)
646                      << "typeid");
647   }
648 
649   // Find the std::type_info type.
650   if (!getStdNamespace())
651     return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
652 
653   if (!CXXTypeInfoDecl) {
654     IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info");
655     LookupResult R(*this, TypeInfoII, SourceLocation(), LookupTagName);
656     LookupQualifiedName(R, getStdNamespace());
657     CXXTypeInfoDecl = R.getAsSingle<RecordDecl>();
658     // Microsoft's typeinfo doesn't have type_info in std but in the global
659     // namespace if _HAS_EXCEPTIONS is defined to 0. See PR13153.
660     if (!CXXTypeInfoDecl && LangOpts.MSVCCompat) {
661       LookupQualifiedName(R, Context.getTranslationUnitDecl());
662       CXXTypeInfoDecl = R.getAsSingle<RecordDecl>();
663     }
664     if (!CXXTypeInfoDecl)
665       return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
666   }
667 
668   if (!getLangOpts().RTTI) {
669     return ExprError(Diag(OpLoc, diag::err_no_typeid_with_fno_rtti));
670   }
671 
672   QualType TypeInfoType = Context.getTypeDeclType(CXXTypeInfoDecl);
673 
674   if (isType) {
675     // The operand is a type; handle it as such.
676     TypeSourceInfo *TInfo = nullptr;
677     QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr),
678                                    &TInfo);
679     if (T.isNull())
680       return ExprError();
681 
682     if (!TInfo)
683       TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc);
684 
685     return BuildCXXTypeId(TypeInfoType, OpLoc, TInfo, RParenLoc);
686   }
687 
688   // The operand is an expression.
689   ExprResult Result =
690       BuildCXXTypeId(TypeInfoType, OpLoc, (Expr *)TyOrExpr, RParenLoc);
691 
692   if (!getLangOpts().RTTIData && !Result.isInvalid())
693     if (auto *CTE = dyn_cast<CXXTypeidExpr>(Result.get()))
694       if (CTE->isPotentiallyEvaluated() && !CTE->isMostDerived(Context))
695         Diag(OpLoc, diag::warn_no_typeid_with_rtti_disabled)
696             << (getDiagnostics().getDiagnosticOptions().getFormat() ==
697                 DiagnosticOptions::MSVC);
698   return Result;
699 }
700 
701 /// Grabs __declspec(uuid()) off a type, or returns 0 if we cannot resolve to
702 /// a single GUID.
703 static void
704 getUuidAttrOfType(Sema &SemaRef, QualType QT,
705                   llvm::SmallSetVector<const UuidAttr *, 1> &UuidAttrs) {
706   // Optionally remove one level of pointer, reference or array indirection.
707   const Type *Ty = QT.getTypePtr();
708   if (QT->isPointerType() || QT->isReferenceType())
709     Ty = QT->getPointeeType().getTypePtr();
710   else if (QT->isArrayType())
711     Ty = Ty->getBaseElementTypeUnsafe();
712 
713   const auto *TD = Ty->getAsTagDecl();
714   if (!TD)
715     return;
716 
717   if (const auto *Uuid = TD->getMostRecentDecl()->getAttr<UuidAttr>()) {
718     UuidAttrs.insert(Uuid);
719     return;
720   }
721 
722   // __uuidof can grab UUIDs from template arguments.
723   if (const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(TD)) {
724     const TemplateArgumentList &TAL = CTSD->getTemplateArgs();
725     for (const TemplateArgument &TA : TAL.asArray()) {
726       const UuidAttr *UuidForTA = nullptr;
727       if (TA.getKind() == TemplateArgument::Type)
728         getUuidAttrOfType(SemaRef, TA.getAsType(), UuidAttrs);
729       else if (TA.getKind() == TemplateArgument::Declaration)
730         getUuidAttrOfType(SemaRef, TA.getAsDecl()->getType(), UuidAttrs);
731 
732       if (UuidForTA)
733         UuidAttrs.insert(UuidForTA);
734     }
735   }
736 }
737 
738 /// Build a Microsoft __uuidof expression with a type operand.
739 ExprResult Sema::BuildCXXUuidof(QualType Type,
740                                 SourceLocation TypeidLoc,
741                                 TypeSourceInfo *Operand,
742                                 SourceLocation RParenLoc) {
743   MSGuidDecl *Guid = nullptr;
744   if (!Operand->getType()->isDependentType()) {
745     llvm::SmallSetVector<const UuidAttr *, 1> UuidAttrs;
746     getUuidAttrOfType(*this, Operand->getType(), UuidAttrs);
747     if (UuidAttrs.empty())
748       return ExprError(Diag(TypeidLoc, diag::err_uuidof_without_guid));
749     if (UuidAttrs.size() > 1)
750       return ExprError(Diag(TypeidLoc, diag::err_uuidof_with_multiple_guids));
751     Guid = UuidAttrs.back()->getGuidDecl();
752   }
753 
754   return new (Context)
755       CXXUuidofExpr(Type, Operand, Guid, SourceRange(TypeidLoc, RParenLoc));
756 }
757 
758 /// Build a Microsoft __uuidof expression with an expression operand.
759 ExprResult Sema::BuildCXXUuidof(QualType Type, SourceLocation TypeidLoc,
760                                 Expr *E, SourceLocation RParenLoc) {
761   MSGuidDecl *Guid = nullptr;
762   if (!E->getType()->isDependentType()) {
763     if (E->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
764       // A null pointer results in {00000000-0000-0000-0000-000000000000}.
765       Guid = Context.getMSGuidDecl(MSGuidDecl::Parts{});
766     } else {
767       llvm::SmallSetVector<const UuidAttr *, 1> UuidAttrs;
768       getUuidAttrOfType(*this, E->getType(), UuidAttrs);
769       if (UuidAttrs.empty())
770         return ExprError(Diag(TypeidLoc, diag::err_uuidof_without_guid));
771       if (UuidAttrs.size() > 1)
772         return ExprError(Diag(TypeidLoc, diag::err_uuidof_with_multiple_guids));
773       Guid = UuidAttrs.back()->getGuidDecl();
774     }
775   }
776 
777   return new (Context)
778       CXXUuidofExpr(Type, E, Guid, SourceRange(TypeidLoc, RParenLoc));
779 }
780 
781 /// ActOnCXXUuidof - Parse __uuidof( type-id ) or __uuidof (expression);
782 ExprResult
783 Sema::ActOnCXXUuidof(SourceLocation OpLoc, SourceLocation LParenLoc,
784                      bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
785   QualType GuidType = Context.getMSGuidType();
786   GuidType.addConst();
787 
788   if (isType) {
789     // The operand is a type; handle it as such.
790     TypeSourceInfo *TInfo = nullptr;
791     QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr),
792                                    &TInfo);
793     if (T.isNull())
794       return ExprError();
795 
796     if (!TInfo)
797       TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc);
798 
799     return BuildCXXUuidof(GuidType, OpLoc, TInfo, RParenLoc);
800   }
801 
802   // The operand is an expression.
803   return BuildCXXUuidof(GuidType, OpLoc, (Expr*)TyOrExpr, RParenLoc);
804 }
805 
806 /// ActOnCXXBoolLiteral - Parse {true,false} literals.
807 ExprResult
808 Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
809   assert((Kind == tok::kw_true || Kind == tok::kw_false) &&
810          "Unknown C++ Boolean value!");
811   return new (Context)
812       CXXBoolLiteralExpr(Kind == tok::kw_true, Context.BoolTy, OpLoc);
813 }
814 
815 /// ActOnCXXNullPtrLiteral - Parse 'nullptr'.
816 ExprResult
817 Sema::ActOnCXXNullPtrLiteral(SourceLocation Loc) {
818   return new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc);
819 }
820 
821 /// ActOnCXXThrow - Parse throw expressions.
822 ExprResult
823 Sema::ActOnCXXThrow(Scope *S, SourceLocation OpLoc, Expr *Ex) {
824   bool IsThrownVarInScope = false;
825   if (Ex) {
826     // C++0x [class.copymove]p31:
827     //   When certain criteria are met, an implementation is allowed to omit the
828     //   copy/move construction of a class object [...]
829     //
830     //     - in a throw-expression, when the operand is the name of a
831     //       non-volatile automatic object (other than a function or catch-
832     //       clause parameter) whose scope does not extend beyond the end of the
833     //       innermost enclosing try-block (if there is one), the copy/move
834     //       operation from the operand to the exception object (15.1) can be
835     //       omitted by constructing the automatic object directly into the
836     //       exception object
837     if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Ex->IgnoreParens()))
838       if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) {
839         if (Var->hasLocalStorage() && !Var->getType().isVolatileQualified()) {
840           for( ; S; S = S->getParent()) {
841             if (S->isDeclScope(Var)) {
842               IsThrownVarInScope = true;
843               break;
844             }
845 
846             // FIXME: Many of the scope checks here seem incorrect.
847             if (S->getFlags() &
848                 (Scope::FnScope | Scope::ClassScope | Scope::BlockScope |
849                  Scope::ObjCMethodScope | Scope::TryScope))
850               break;
851           }
852         }
853       }
854   }
855 
856   return BuildCXXThrow(OpLoc, Ex, IsThrownVarInScope);
857 }
858 
859 ExprResult Sema::BuildCXXThrow(SourceLocation OpLoc, Expr *Ex,
860                                bool IsThrownVarInScope) {
861   // Don't report an error if 'throw' is used in system headers.
862   if (!getLangOpts().CXXExceptions &&
863       !getSourceManager().isInSystemHeader(OpLoc) && !getLangOpts().CUDA) {
864     // Delay error emission for the OpenMP device code.
865     targetDiag(OpLoc, diag::err_exceptions_disabled) << "throw";
866   }
867 
868   // Exceptions aren't allowed in CUDA device code.
869   if (getLangOpts().CUDA)
870     CUDADiagIfDeviceCode(OpLoc, diag::err_cuda_device_exceptions)
871         << "throw" << CurrentCUDATarget();
872 
873   if (getCurScope() && getCurScope()->isOpenMPSimdDirectiveScope())
874     Diag(OpLoc, diag::err_omp_simd_region_cannot_use_stmt) << "throw";
875 
876   if (Ex && !Ex->isTypeDependent()) {
877     // Initialize the exception result.  This implicitly weeds out
878     // abstract types or types with inaccessible copy constructors.
879 
880     // C++0x [class.copymove]p31:
881     //   When certain criteria are met, an implementation is allowed to omit the
882     //   copy/move construction of a class object [...]
883     //
884     //     - in a throw-expression, when the operand is the name of a
885     //       non-volatile automatic object (other than a function or
886     //       catch-clause
887     //       parameter) whose scope does not extend beyond the end of the
888     //       innermost enclosing try-block (if there is one), the copy/move
889     //       operation from the operand to the exception object (15.1) can be
890     //       omitted by constructing the automatic object directly into the
891     //       exception object
892     NamedReturnInfo NRInfo =
893         IsThrownVarInScope ? getNamedReturnInfo(Ex) : NamedReturnInfo();
894 
895     QualType ExceptionObjectTy = Context.getExceptionObjectType(Ex->getType());
896     if (CheckCXXThrowOperand(OpLoc, ExceptionObjectTy, Ex))
897       return ExprError();
898 
899     InitializedEntity Entity =
900         InitializedEntity::InitializeException(OpLoc, ExceptionObjectTy);
901     ExprResult Res = PerformMoveOrCopyInitialization(Entity, NRInfo, Ex);
902     if (Res.isInvalid())
903       return ExprError();
904     Ex = Res.get();
905   }
906 
907   // PPC MMA non-pointer types are not allowed as throw expr types.
908   if (Ex && Context.getTargetInfo().getTriple().isPPC64())
909     CheckPPCMMAType(Ex->getType(), Ex->getBeginLoc());
910 
911   return new (Context)
912       CXXThrowExpr(Ex, Context.VoidTy, OpLoc, IsThrownVarInScope);
913 }
914 
915 static void
916 collectPublicBases(CXXRecordDecl *RD,
917                    llvm::DenseMap<CXXRecordDecl *, unsigned> &SubobjectsSeen,
918                    llvm::SmallPtrSetImpl<CXXRecordDecl *> &VBases,
919                    llvm::SetVector<CXXRecordDecl *> &PublicSubobjectsSeen,
920                    bool ParentIsPublic) {
921   for (const CXXBaseSpecifier &BS : RD->bases()) {
922     CXXRecordDecl *BaseDecl = BS.getType()->getAsCXXRecordDecl();
923     bool NewSubobject;
924     // Virtual bases constitute the same subobject.  Non-virtual bases are
925     // always distinct subobjects.
926     if (BS.isVirtual())
927       NewSubobject = VBases.insert(BaseDecl).second;
928     else
929       NewSubobject = true;
930 
931     if (NewSubobject)
932       ++SubobjectsSeen[BaseDecl];
933 
934     // Only add subobjects which have public access throughout the entire chain.
935     bool PublicPath = ParentIsPublic && BS.getAccessSpecifier() == AS_public;
936     if (PublicPath)
937       PublicSubobjectsSeen.insert(BaseDecl);
938 
939     // Recurse on to each base subobject.
940     collectPublicBases(BaseDecl, SubobjectsSeen, VBases, PublicSubobjectsSeen,
941                        PublicPath);
942   }
943 }
944 
945 static void getUnambiguousPublicSubobjects(
946     CXXRecordDecl *RD, llvm::SmallVectorImpl<CXXRecordDecl *> &Objects) {
947   llvm::DenseMap<CXXRecordDecl *, unsigned> SubobjectsSeen;
948   llvm::SmallSet<CXXRecordDecl *, 2> VBases;
949   llvm::SetVector<CXXRecordDecl *> PublicSubobjectsSeen;
950   SubobjectsSeen[RD] = 1;
951   PublicSubobjectsSeen.insert(RD);
952   collectPublicBases(RD, SubobjectsSeen, VBases, PublicSubobjectsSeen,
953                      /*ParentIsPublic=*/true);
954 
955   for (CXXRecordDecl *PublicSubobject : PublicSubobjectsSeen) {
956     // Skip ambiguous objects.
957     if (SubobjectsSeen[PublicSubobject] > 1)
958       continue;
959 
960     Objects.push_back(PublicSubobject);
961   }
962 }
963 
964 /// CheckCXXThrowOperand - Validate the operand of a throw.
965 bool Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc,
966                                 QualType ExceptionObjectTy, Expr *E) {
967   //   If the type of the exception would be an incomplete type or a pointer
968   //   to an incomplete type other than (cv) void the program is ill-formed.
969   QualType Ty = ExceptionObjectTy;
970   bool isPointer = false;
971   if (const PointerType* Ptr = Ty->getAs<PointerType>()) {
972     Ty = Ptr->getPointeeType();
973     isPointer = true;
974   }
975   if (!isPointer || !Ty->isVoidType()) {
976     if (RequireCompleteType(ThrowLoc, Ty,
977                             isPointer ? diag::err_throw_incomplete_ptr
978                                       : diag::err_throw_incomplete,
979                             E->getSourceRange()))
980       return true;
981 
982     if (!isPointer && Ty->isSizelessType()) {
983       Diag(ThrowLoc, diag::err_throw_sizeless) << Ty << E->getSourceRange();
984       return true;
985     }
986 
987     if (RequireNonAbstractType(ThrowLoc, ExceptionObjectTy,
988                                diag::err_throw_abstract_type, E))
989       return true;
990   }
991 
992   // If the exception has class type, we need additional handling.
993   CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
994   if (!RD)
995     return false;
996 
997   // If we are throwing a polymorphic class type or pointer thereof,
998   // exception handling will make use of the vtable.
999   MarkVTableUsed(ThrowLoc, RD);
1000 
1001   // If a pointer is thrown, the referenced object will not be destroyed.
1002   if (isPointer)
1003     return false;
1004 
1005   // If the class has a destructor, we must be able to call it.
1006   if (!RD->hasIrrelevantDestructor()) {
1007     if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
1008       MarkFunctionReferenced(E->getExprLoc(), Destructor);
1009       CheckDestructorAccess(E->getExprLoc(), Destructor,
1010                             PDiag(diag::err_access_dtor_exception) << Ty);
1011       if (DiagnoseUseOfDecl(Destructor, E->getExprLoc()))
1012         return true;
1013     }
1014   }
1015 
1016   // The MSVC ABI creates a list of all types which can catch the exception
1017   // object.  This list also references the appropriate copy constructor to call
1018   // if the object is caught by value and has a non-trivial copy constructor.
1019   if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
1020     // We are only interested in the public, unambiguous bases contained within
1021     // the exception object.  Bases which are ambiguous or otherwise
1022     // inaccessible are not catchable types.
1023     llvm::SmallVector<CXXRecordDecl *, 2> UnambiguousPublicSubobjects;
1024     getUnambiguousPublicSubobjects(RD, UnambiguousPublicSubobjects);
1025 
1026     for (CXXRecordDecl *Subobject : UnambiguousPublicSubobjects) {
1027       // Attempt to lookup the copy constructor.  Various pieces of machinery
1028       // will spring into action, like template instantiation, which means this
1029       // cannot be a simple walk of the class's decls.  Instead, we must perform
1030       // lookup and overload resolution.
1031       CXXConstructorDecl *CD = LookupCopyingConstructor(Subobject, 0);
1032       if (!CD || CD->isDeleted())
1033         continue;
1034 
1035       // Mark the constructor referenced as it is used by this throw expression.
1036       MarkFunctionReferenced(E->getExprLoc(), CD);
1037 
1038       // Skip this copy constructor if it is trivial, we don't need to record it
1039       // in the catchable type data.
1040       if (CD->isTrivial())
1041         continue;
1042 
1043       // The copy constructor is non-trivial, create a mapping from this class
1044       // type to this constructor.
1045       // N.B.  The selection of copy constructor is not sensitive to this
1046       // particular throw-site.  Lookup will be performed at the catch-site to
1047       // ensure that the copy constructor is, in fact, accessible (via
1048       // friendship or any other means).
1049       Context.addCopyConstructorForExceptionObject(Subobject, CD);
1050 
1051       // We don't keep the instantiated default argument expressions around so
1052       // we must rebuild them here.
1053       for (unsigned I = 1, E = CD->getNumParams(); I != E; ++I) {
1054         if (CheckCXXDefaultArgExpr(ThrowLoc, CD, CD->getParamDecl(I)))
1055           return true;
1056       }
1057     }
1058   }
1059 
1060   // Under the Itanium C++ ABI, memory for the exception object is allocated by
1061   // the runtime with no ability for the compiler to request additional
1062   // alignment. Warn if the exception type requires alignment beyond the minimum
1063   // guaranteed by the target C++ runtime.
1064   if (Context.getTargetInfo().getCXXABI().isItaniumFamily()) {
1065     CharUnits TypeAlign = Context.getTypeAlignInChars(Ty);
1066     CharUnits ExnObjAlign = Context.getExnObjectAlignment();
1067     if (ExnObjAlign < TypeAlign) {
1068       Diag(ThrowLoc, diag::warn_throw_underaligned_obj);
1069       Diag(ThrowLoc, diag::note_throw_underaligned_obj)
1070           << Ty << (unsigned)TypeAlign.getQuantity()
1071           << (unsigned)ExnObjAlign.getQuantity();
1072     }
1073   }
1074 
1075   return false;
1076 }
1077 
1078 static QualType adjustCVQualifiersForCXXThisWithinLambda(
1079     ArrayRef<FunctionScopeInfo *> FunctionScopes, QualType ThisTy,
1080     DeclContext *CurSemaContext, ASTContext &ASTCtx) {
1081 
1082   QualType ClassType = ThisTy->getPointeeType();
1083   LambdaScopeInfo *CurLSI = nullptr;
1084   DeclContext *CurDC = CurSemaContext;
1085 
1086   // Iterate through the stack of lambdas starting from the innermost lambda to
1087   // the outermost lambda, checking if '*this' is ever captured by copy - since
1088   // that could change the cv-qualifiers of the '*this' object.
1089   // The object referred to by '*this' starts out with the cv-qualifiers of its
1090   // member function.  We then start with the innermost lambda and iterate
1091   // outward checking to see if any lambda performs a by-copy capture of '*this'
1092   // - and if so, any nested lambda must respect the 'constness' of that
1093   // capturing lamdbda's call operator.
1094   //
1095 
1096   // Since the FunctionScopeInfo stack is representative of the lexical
1097   // nesting of the lambda expressions during initial parsing (and is the best
1098   // place for querying information about captures about lambdas that are
1099   // partially processed) and perhaps during instantiation of function templates
1100   // that contain lambda expressions that need to be transformed BUT not
1101   // necessarily during instantiation of a nested generic lambda's function call
1102   // operator (which might even be instantiated at the end of the TU) - at which
1103   // time the DeclContext tree is mature enough to query capture information
1104   // reliably - we use a two pronged approach to walk through all the lexically
1105   // enclosing lambda expressions:
1106   //
1107   //  1) Climb down the FunctionScopeInfo stack as long as each item represents
1108   //  a Lambda (i.e. LambdaScopeInfo) AND each LSI's 'closure-type' is lexically
1109   //  enclosed by the call-operator of the LSI below it on the stack (while
1110   //  tracking the enclosing DC for step 2 if needed).  Note the topmost LSI on
1111   //  the stack represents the innermost lambda.
1112   //
1113   //  2) If we run out of enclosing LSI's, check if the enclosing DeclContext
1114   //  represents a lambda's call operator.  If it does, we must be instantiating
1115   //  a generic lambda's call operator (represented by the Current LSI, and
1116   //  should be the only scenario where an inconsistency between the LSI and the
1117   //  DeclContext should occur), so climb out the DeclContexts if they
1118   //  represent lambdas, while querying the corresponding closure types
1119   //  regarding capture information.
1120 
1121   // 1) Climb down the function scope info stack.
1122   for (int I = FunctionScopes.size();
1123        I-- && isa<LambdaScopeInfo>(FunctionScopes[I]) &&
1124        (!CurLSI || !CurLSI->Lambda || CurLSI->Lambda->getDeclContext() ==
1125                        cast<LambdaScopeInfo>(FunctionScopes[I])->CallOperator);
1126        CurDC = getLambdaAwareParentOfDeclContext(CurDC)) {
1127     CurLSI = cast<LambdaScopeInfo>(FunctionScopes[I]);
1128 
1129     if (!CurLSI->isCXXThisCaptured())
1130         continue;
1131 
1132     auto C = CurLSI->getCXXThisCapture();
1133 
1134     if (C.isCopyCapture()) {
1135       ClassType.removeLocalCVRQualifiers(Qualifiers::CVRMask);
1136       if (CurLSI->CallOperator->isConst())
1137         ClassType.addConst();
1138       return ASTCtx.getPointerType(ClassType);
1139     }
1140   }
1141 
1142   // 2) We've run out of ScopeInfos but check 1. if CurDC is a lambda (which
1143   //    can happen during instantiation of its nested generic lambda call
1144   //    operator); 2. if we're in a lambda scope (lambda body).
1145   if (CurLSI && isLambdaCallOperator(CurDC)) {
1146     assert(isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator) &&
1147            "While computing 'this' capture-type for a generic lambda, when we "
1148            "run out of enclosing LSI's, yet the enclosing DC is a "
1149            "lambda-call-operator we must be (i.e. Current LSI) in a generic "
1150            "lambda call oeprator");
1151     assert(CurDC == getLambdaAwareParentOfDeclContext(CurLSI->CallOperator));
1152 
1153     auto IsThisCaptured =
1154         [](CXXRecordDecl *Closure, bool &IsByCopy, bool &IsConst) {
1155       IsConst = false;
1156       IsByCopy = false;
1157       for (auto &&C : Closure->captures()) {
1158         if (C.capturesThis()) {
1159           if (C.getCaptureKind() == LCK_StarThis)
1160             IsByCopy = true;
1161           if (Closure->getLambdaCallOperator()->isConst())
1162             IsConst = true;
1163           return true;
1164         }
1165       }
1166       return false;
1167     };
1168 
1169     bool IsByCopyCapture = false;
1170     bool IsConstCapture = false;
1171     CXXRecordDecl *Closure = cast<CXXRecordDecl>(CurDC->getParent());
1172     while (Closure &&
1173            IsThisCaptured(Closure, IsByCopyCapture, IsConstCapture)) {
1174       if (IsByCopyCapture) {
1175         ClassType.removeLocalCVRQualifiers(Qualifiers::CVRMask);
1176         if (IsConstCapture)
1177           ClassType.addConst();
1178         return ASTCtx.getPointerType(ClassType);
1179       }
1180       Closure = isLambdaCallOperator(Closure->getParent())
1181                     ? cast<CXXRecordDecl>(Closure->getParent()->getParent())
1182                     : nullptr;
1183     }
1184   }
1185   return ASTCtx.getPointerType(ClassType);
1186 }
1187 
1188 QualType Sema::getCurrentThisType() {
1189   DeclContext *DC = getFunctionLevelDeclContext();
1190   QualType ThisTy = CXXThisTypeOverride;
1191 
1192   if (CXXMethodDecl *method = dyn_cast<CXXMethodDecl>(DC)) {
1193     if (method && method->isInstance())
1194       ThisTy = method->getThisType();
1195   }
1196 
1197   if (ThisTy.isNull() && isLambdaCallOperator(CurContext) &&
1198       inTemplateInstantiation() && isa<CXXRecordDecl>(DC)) {
1199 
1200     // This is a lambda call operator that is being instantiated as a default
1201     // initializer. DC must point to the enclosing class type, so we can recover
1202     // the 'this' type from it.
1203     QualType ClassTy = Context.getTypeDeclType(cast<CXXRecordDecl>(DC));
1204     // There are no cv-qualifiers for 'this' within default initializers,
1205     // per [expr.prim.general]p4.
1206     ThisTy = Context.getPointerType(ClassTy);
1207   }
1208 
1209   // If we are within a lambda's call operator, the cv-qualifiers of 'this'
1210   // might need to be adjusted if the lambda or any of its enclosing lambda's
1211   // captures '*this' by copy.
1212   if (!ThisTy.isNull() && isLambdaCallOperator(CurContext))
1213     return adjustCVQualifiersForCXXThisWithinLambda(FunctionScopes, ThisTy,
1214                                                     CurContext, Context);
1215   return ThisTy;
1216 }
1217 
1218 Sema::CXXThisScopeRAII::CXXThisScopeRAII(Sema &S,
1219                                          Decl *ContextDecl,
1220                                          Qualifiers CXXThisTypeQuals,
1221                                          bool Enabled)
1222   : S(S), OldCXXThisTypeOverride(S.CXXThisTypeOverride), Enabled(false)
1223 {
1224   if (!Enabled || !ContextDecl)
1225     return;
1226 
1227   CXXRecordDecl *Record = nullptr;
1228   if (ClassTemplateDecl *Template = dyn_cast<ClassTemplateDecl>(ContextDecl))
1229     Record = Template->getTemplatedDecl();
1230   else
1231     Record = cast<CXXRecordDecl>(ContextDecl);
1232 
1233   QualType T = S.Context.getRecordType(Record);
1234   T = S.getASTContext().getQualifiedType(T, CXXThisTypeQuals);
1235 
1236   S.CXXThisTypeOverride = S.Context.getPointerType(T);
1237 
1238   this->Enabled = true;
1239 }
1240 
1241 
1242 Sema::CXXThisScopeRAII::~CXXThisScopeRAII() {
1243   if (Enabled) {
1244     S.CXXThisTypeOverride = OldCXXThisTypeOverride;
1245   }
1246 }
1247 
1248 static void buildLambdaThisCaptureFixit(Sema &Sema, LambdaScopeInfo *LSI) {
1249   SourceLocation DiagLoc = LSI->IntroducerRange.getEnd();
1250   assert(!LSI->isCXXThisCaptured());
1251   //  [=, this] {};   // until C++20: Error: this when = is the default
1252   if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByval &&
1253       !Sema.getLangOpts().CPlusPlus20)
1254     return;
1255   Sema.Diag(DiagLoc, diag::note_lambda_this_capture_fixit)
1256       << FixItHint::CreateInsertion(
1257              DiagLoc, LSI->NumExplicitCaptures > 0 ? ", this" : "this");
1258 }
1259 
1260 bool Sema::CheckCXXThisCapture(SourceLocation Loc, const bool Explicit,
1261     bool BuildAndDiagnose, const unsigned *const FunctionScopeIndexToStopAt,
1262     const bool ByCopy) {
1263   // We don't need to capture this in an unevaluated context.
1264   if (isUnevaluatedContext() && !Explicit)
1265     return true;
1266 
1267   assert((!ByCopy || Explicit) && "cannot implicitly capture *this by value");
1268 
1269   const int MaxFunctionScopesIndex = FunctionScopeIndexToStopAt
1270                                          ? *FunctionScopeIndexToStopAt
1271                                          : FunctionScopes.size() - 1;
1272 
1273   // Check that we can capture the *enclosing object* (referred to by '*this')
1274   // by the capturing-entity/closure (lambda/block/etc) at
1275   // MaxFunctionScopesIndex-deep on the FunctionScopes stack.
1276 
1277   // Note: The *enclosing object* can only be captured by-value by a
1278   // closure that is a lambda, using the explicit notation:
1279   //    [*this] { ... }.
1280   // Every other capture of the *enclosing object* results in its by-reference
1281   // capture.
1282 
1283   // For a closure 'L' (at MaxFunctionScopesIndex in the FunctionScopes
1284   // stack), we can capture the *enclosing object* only if:
1285   // - 'L' has an explicit byref or byval capture of the *enclosing object*
1286   // -  or, 'L' has an implicit capture.
1287   // AND
1288   //   -- there is no enclosing closure
1289   //   -- or, there is some enclosing closure 'E' that has already captured the
1290   //      *enclosing object*, and every intervening closure (if any) between 'E'
1291   //      and 'L' can implicitly capture the *enclosing object*.
1292   //   -- or, every enclosing closure can implicitly capture the
1293   //      *enclosing object*
1294 
1295 
1296   unsigned NumCapturingClosures = 0;
1297   for (int idx = MaxFunctionScopesIndex; idx >= 0; idx--) {
1298     if (CapturingScopeInfo *CSI =
1299             dyn_cast<CapturingScopeInfo>(FunctionScopes[idx])) {
1300       if (CSI->CXXThisCaptureIndex != 0) {
1301         // 'this' is already being captured; there isn't anything more to do.
1302         CSI->Captures[CSI->CXXThisCaptureIndex - 1].markUsed(BuildAndDiagnose);
1303         break;
1304       }
1305       LambdaScopeInfo *LSI = dyn_cast<LambdaScopeInfo>(CSI);
1306       if (LSI && isGenericLambdaCallOperatorSpecialization(LSI->CallOperator)) {
1307         // This context can't implicitly capture 'this'; fail out.
1308         if (BuildAndDiagnose) {
1309           Diag(Loc, diag::err_this_capture)
1310               << (Explicit && idx == MaxFunctionScopesIndex);
1311           if (!Explicit)
1312             buildLambdaThisCaptureFixit(*this, LSI);
1313         }
1314         return true;
1315       }
1316       if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByref ||
1317           CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByval ||
1318           CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_Block ||
1319           CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_CapturedRegion ||
1320           (Explicit && idx == MaxFunctionScopesIndex)) {
1321         // Regarding (Explicit && idx == MaxFunctionScopesIndex): only the first
1322         // iteration through can be an explicit capture, all enclosing closures,
1323         // if any, must perform implicit captures.
1324 
1325         // This closure can capture 'this'; continue looking upwards.
1326         NumCapturingClosures++;
1327         continue;
1328       }
1329       // This context can't implicitly capture 'this'; fail out.
1330       if (BuildAndDiagnose)
1331         Diag(Loc, diag::err_this_capture)
1332             << (Explicit && idx == MaxFunctionScopesIndex);
1333 
1334       if (!Explicit)
1335         buildLambdaThisCaptureFixit(*this, LSI);
1336       return true;
1337     }
1338     break;
1339   }
1340   if (!BuildAndDiagnose) return false;
1341 
1342   // If we got here, then the closure at MaxFunctionScopesIndex on the
1343   // FunctionScopes stack, can capture the *enclosing object*, so capture it
1344   // (including implicit by-reference captures in any enclosing closures).
1345 
1346   // In the loop below, respect the ByCopy flag only for the closure requesting
1347   // the capture (i.e. first iteration through the loop below).  Ignore it for
1348   // all enclosing closure's up to NumCapturingClosures (since they must be
1349   // implicitly capturing the *enclosing  object* by reference (see loop
1350   // above)).
1351   assert((!ByCopy ||
1352           isa<LambdaScopeInfo>(FunctionScopes[MaxFunctionScopesIndex])) &&
1353          "Only a lambda can capture the enclosing object (referred to by "
1354          "*this) by copy");
1355   QualType ThisTy = getCurrentThisType();
1356   for (int idx = MaxFunctionScopesIndex; NumCapturingClosures;
1357        --idx, --NumCapturingClosures) {
1358     CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[idx]);
1359 
1360     // The type of the corresponding data member (not a 'this' pointer if 'by
1361     // copy').
1362     QualType CaptureType = ThisTy;
1363     if (ByCopy) {
1364       // If we are capturing the object referred to by '*this' by copy, ignore
1365       // any cv qualifiers inherited from the type of the member function for
1366       // the type of the closure-type's corresponding data member and any use
1367       // of 'this'.
1368       CaptureType = ThisTy->getPointeeType();
1369       CaptureType.removeLocalCVRQualifiers(Qualifiers::CVRMask);
1370     }
1371 
1372     bool isNested = NumCapturingClosures > 1;
1373     CSI->addThisCapture(isNested, Loc, CaptureType, ByCopy);
1374   }
1375   return false;
1376 }
1377 
1378 ExprResult Sema::ActOnCXXThis(SourceLocation Loc) {
1379   /// C++ 9.3.2: In the body of a non-static member function, the keyword this
1380   /// is a non-lvalue expression whose value is the address of the object for
1381   /// which the function is called.
1382 
1383   QualType ThisTy = getCurrentThisType();
1384   if (ThisTy.isNull())
1385     return Diag(Loc, diag::err_invalid_this_use);
1386   return BuildCXXThisExpr(Loc, ThisTy, /*IsImplicit=*/false);
1387 }
1388 
1389 Expr *Sema::BuildCXXThisExpr(SourceLocation Loc, QualType Type,
1390                              bool IsImplicit) {
1391   auto *This = new (Context) CXXThisExpr(Loc, Type, IsImplicit);
1392   MarkThisReferenced(This);
1393   return This;
1394 }
1395 
1396 void Sema::MarkThisReferenced(CXXThisExpr *This) {
1397   CheckCXXThisCapture(This->getExprLoc());
1398 }
1399 
1400 bool Sema::isThisOutsideMemberFunctionBody(QualType BaseType) {
1401   // If we're outside the body of a member function, then we'll have a specified
1402   // type for 'this'.
1403   if (CXXThisTypeOverride.isNull())
1404     return false;
1405 
1406   // Determine whether we're looking into a class that's currently being
1407   // defined.
1408   CXXRecordDecl *Class = BaseType->getAsCXXRecordDecl();
1409   return Class && Class->isBeingDefined();
1410 }
1411 
1412 /// Parse construction of a specified type.
1413 /// Can be interpreted either as function-style casting ("int(x)")
1414 /// or class type construction ("ClassType(x,y,z)")
1415 /// or creation of a value-initialized type ("int()").
1416 ExprResult
1417 Sema::ActOnCXXTypeConstructExpr(ParsedType TypeRep,
1418                                 SourceLocation LParenOrBraceLoc,
1419                                 MultiExprArg exprs,
1420                                 SourceLocation RParenOrBraceLoc,
1421                                 bool ListInitialization) {
1422   if (!TypeRep)
1423     return ExprError();
1424 
1425   TypeSourceInfo *TInfo;
1426   QualType Ty = GetTypeFromParser(TypeRep, &TInfo);
1427   if (!TInfo)
1428     TInfo = Context.getTrivialTypeSourceInfo(Ty, SourceLocation());
1429 
1430   auto Result = BuildCXXTypeConstructExpr(TInfo, LParenOrBraceLoc, exprs,
1431                                           RParenOrBraceLoc, ListInitialization);
1432   // Avoid creating a non-type-dependent expression that contains typos.
1433   // Non-type-dependent expressions are liable to be discarded without
1434   // checking for embedded typos.
1435   if (!Result.isInvalid() && Result.get()->isInstantiationDependent() &&
1436       !Result.get()->isTypeDependent())
1437     Result = CorrectDelayedTyposInExpr(Result.get());
1438   else if (Result.isInvalid())
1439     Result = CreateRecoveryExpr(TInfo->getTypeLoc().getBeginLoc(),
1440                                 RParenOrBraceLoc, exprs, Ty);
1441   return Result;
1442 }
1443 
1444 ExprResult
1445 Sema::BuildCXXTypeConstructExpr(TypeSourceInfo *TInfo,
1446                                 SourceLocation LParenOrBraceLoc,
1447                                 MultiExprArg Exprs,
1448                                 SourceLocation RParenOrBraceLoc,
1449                                 bool ListInitialization) {
1450   QualType Ty = TInfo->getType();
1451   SourceLocation TyBeginLoc = TInfo->getTypeLoc().getBeginLoc();
1452 
1453   assert((!ListInitialization ||
1454           (Exprs.size() == 1 && isa<InitListExpr>(Exprs[0]))) &&
1455          "List initialization must have initializer list as expression.");
1456   SourceRange FullRange = SourceRange(TyBeginLoc, RParenOrBraceLoc);
1457 
1458   InitializedEntity Entity =
1459       InitializedEntity::InitializeTemporary(Context, TInfo);
1460   InitializationKind Kind =
1461       Exprs.size()
1462           ? ListInitialization
1463                 ? InitializationKind::CreateDirectList(
1464                       TyBeginLoc, LParenOrBraceLoc, RParenOrBraceLoc)
1465                 : InitializationKind::CreateDirect(TyBeginLoc, LParenOrBraceLoc,
1466                                                    RParenOrBraceLoc)
1467           : InitializationKind::CreateValue(TyBeginLoc, LParenOrBraceLoc,
1468                                             RParenOrBraceLoc);
1469 
1470   // C++1z [expr.type.conv]p1:
1471   //   If the type is a placeholder for a deduced class type, [...perform class
1472   //   template argument deduction...]
1473   // C++2b:
1474   //   Otherwise, if the type contains a placeholder type, it is replaced by the
1475   //   type determined by placeholder type deduction.
1476   DeducedType *Deduced = Ty->getContainedDeducedType();
1477   if (Deduced && isa<DeducedTemplateSpecializationType>(Deduced)) {
1478     Ty = DeduceTemplateSpecializationFromInitializer(TInfo, Entity,
1479                                                      Kind, Exprs);
1480     if (Ty.isNull())
1481       return ExprError();
1482     Entity = InitializedEntity::InitializeTemporary(TInfo, Ty);
1483   } else if (Deduced) {
1484     MultiExprArg Inits = Exprs;
1485     if (ListInitialization) {
1486       auto *ILE = cast<InitListExpr>(Exprs[0]);
1487       Inits = MultiExprArg(ILE->getInits(), ILE->getNumInits());
1488     }
1489 
1490     if (Inits.empty())
1491       return ExprError(Diag(TyBeginLoc, diag::err_auto_expr_init_no_expression)
1492                        << Ty << FullRange);
1493     if (Inits.size() > 1) {
1494       Expr *FirstBad = Inits[1];
1495       return ExprError(Diag(FirstBad->getBeginLoc(),
1496                             diag::err_auto_expr_init_multiple_expressions)
1497                        << Ty << FullRange);
1498     }
1499     if (getLangOpts().CPlusPlus2b) {
1500       if (Ty->getAs<AutoType>())
1501         Diag(TyBeginLoc, diag::warn_cxx20_compat_auto_expr) << FullRange;
1502     }
1503     Expr *Deduce = Inits[0];
1504     if (isa<InitListExpr>(Deduce))
1505       return ExprError(
1506           Diag(Deduce->getBeginLoc(), diag::err_auto_expr_init_paren_braces)
1507           << ListInitialization << Ty << FullRange);
1508     QualType DeducedType;
1509     if (DeduceAutoType(TInfo, Deduce, DeducedType) == DAR_Failed)
1510       return ExprError(Diag(TyBeginLoc, diag::err_auto_expr_deduction_failure)
1511                        << Ty << Deduce->getType() << FullRange
1512                        << Deduce->getSourceRange());
1513     if (DeducedType.isNull())
1514       return ExprError();
1515 
1516     Ty = DeducedType;
1517     Entity = InitializedEntity::InitializeTemporary(TInfo, Ty);
1518   }
1519 
1520   if (Ty->isDependentType() || CallExpr::hasAnyTypeDependentArguments(Exprs)) {
1521     // FIXME: CXXUnresolvedConstructExpr does not model list-initialization
1522     // directly. We work around this by dropping the locations of the braces.
1523     SourceRange Locs = ListInitialization
1524                            ? SourceRange()
1525                            : SourceRange(LParenOrBraceLoc, RParenOrBraceLoc);
1526     return CXXUnresolvedConstructExpr::Create(Context, Ty.getNonReferenceType(),
1527                                               TInfo, Locs.getBegin(), Exprs,
1528                                               Locs.getEnd());
1529   }
1530 
1531   // C++ [expr.type.conv]p1:
1532   // If the expression list is a parenthesized single expression, the type
1533   // conversion expression is equivalent (in definedness, and if defined in
1534   // meaning) to the corresponding cast expression.
1535   if (Exprs.size() == 1 && !ListInitialization &&
1536       !isa<InitListExpr>(Exprs[0])) {
1537     Expr *Arg = Exprs[0];
1538     return BuildCXXFunctionalCastExpr(TInfo, Ty, LParenOrBraceLoc, Arg,
1539                                       RParenOrBraceLoc);
1540   }
1541 
1542   //   For an expression of the form T(), T shall not be an array type.
1543   QualType ElemTy = Ty;
1544   if (Ty->isArrayType()) {
1545     if (!ListInitialization)
1546       return ExprError(Diag(TyBeginLoc, diag::err_value_init_for_array_type)
1547                          << FullRange);
1548     ElemTy = Context.getBaseElementType(Ty);
1549   }
1550 
1551   // Only construct objects with object types.
1552   // The standard doesn't explicitly forbid function types here, but that's an
1553   // obvious oversight, as there's no way to dynamically construct a function
1554   // in general.
1555   if (Ty->isFunctionType())
1556     return ExprError(Diag(TyBeginLoc, diag::err_init_for_function_type)
1557                        << Ty << FullRange);
1558 
1559   // C++17 [expr.type.conv]p2:
1560   //   If the type is cv void and the initializer is (), the expression is a
1561   //   prvalue of the specified type that performs no initialization.
1562   if (!Ty->isVoidType() &&
1563       RequireCompleteType(TyBeginLoc, ElemTy,
1564                           diag::err_invalid_incomplete_type_use, FullRange))
1565     return ExprError();
1566 
1567   //   Otherwise, the expression is a prvalue of the specified type whose
1568   //   result object is direct-initialized (11.6) with the initializer.
1569   InitializationSequence InitSeq(*this, Entity, Kind, Exprs);
1570   ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Exprs);
1571 
1572   if (Result.isInvalid())
1573     return Result;
1574 
1575   Expr *Inner = Result.get();
1576   if (CXXBindTemporaryExpr *BTE = dyn_cast_or_null<CXXBindTemporaryExpr>(Inner))
1577     Inner = BTE->getSubExpr();
1578   if (!isa<CXXTemporaryObjectExpr>(Inner) &&
1579       !isa<CXXScalarValueInitExpr>(Inner)) {
1580     // If we created a CXXTemporaryObjectExpr, that node also represents the
1581     // functional cast. Otherwise, create an explicit cast to represent
1582     // the syntactic form of a functional-style cast that was used here.
1583     //
1584     // FIXME: Creating a CXXFunctionalCastExpr around a CXXConstructExpr
1585     // would give a more consistent AST representation than using a
1586     // CXXTemporaryObjectExpr. It's also weird that the functional cast
1587     // is sometimes handled by initialization and sometimes not.
1588     QualType ResultType = Result.get()->getType();
1589     SourceRange Locs = ListInitialization
1590                            ? SourceRange()
1591                            : SourceRange(LParenOrBraceLoc, RParenOrBraceLoc);
1592     Result = CXXFunctionalCastExpr::Create(
1593         Context, ResultType, Expr::getValueKindForType(Ty), TInfo, CK_NoOp,
1594         Result.get(), /*Path=*/nullptr, CurFPFeatureOverrides(),
1595         Locs.getBegin(), Locs.getEnd());
1596   }
1597 
1598   return Result;
1599 }
1600 
1601 bool Sema::isUsualDeallocationFunction(const CXXMethodDecl *Method) {
1602   // [CUDA] Ignore this function, if we can't call it.
1603   const FunctionDecl *Caller = getCurFunctionDecl(/*AllowLambda=*/true);
1604   if (getLangOpts().CUDA) {
1605     auto CallPreference = IdentifyCUDAPreference(Caller, Method);
1606     // If it's not callable at all, it's not the right function.
1607     if (CallPreference < CFP_WrongSide)
1608       return false;
1609     if (CallPreference == CFP_WrongSide) {
1610       // Maybe. We have to check if there are better alternatives.
1611       DeclContext::lookup_result R =
1612           Method->getDeclContext()->lookup(Method->getDeclName());
1613       for (const auto *D : R) {
1614         if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
1615           if (IdentifyCUDAPreference(Caller, FD) > CFP_WrongSide)
1616             return false;
1617         }
1618       }
1619       // We've found no better variants.
1620     }
1621   }
1622 
1623   SmallVector<const FunctionDecl*, 4> PreventedBy;
1624   bool Result = Method->isUsualDeallocationFunction(PreventedBy);
1625 
1626   if (Result || !getLangOpts().CUDA || PreventedBy.empty())
1627     return Result;
1628 
1629   // In case of CUDA, return true if none of the 1-argument deallocator
1630   // functions are actually callable.
1631   return llvm::none_of(PreventedBy, [&](const FunctionDecl *FD) {
1632     assert(FD->getNumParams() == 1 &&
1633            "Only single-operand functions should be in PreventedBy");
1634     return IdentifyCUDAPreference(Caller, FD) >= CFP_HostDevice;
1635   });
1636 }
1637 
1638 /// Determine whether the given function is a non-placement
1639 /// deallocation function.
1640 static bool isNonPlacementDeallocationFunction(Sema &S, FunctionDecl *FD) {
1641   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FD))
1642     return S.isUsualDeallocationFunction(Method);
1643 
1644   if (FD->getOverloadedOperator() != OO_Delete &&
1645       FD->getOverloadedOperator() != OO_Array_Delete)
1646     return false;
1647 
1648   unsigned UsualParams = 1;
1649 
1650   if (S.getLangOpts().SizedDeallocation && UsualParams < FD->getNumParams() &&
1651       S.Context.hasSameUnqualifiedType(
1652           FD->getParamDecl(UsualParams)->getType(),
1653           S.Context.getSizeType()))
1654     ++UsualParams;
1655 
1656   if (S.getLangOpts().AlignedAllocation && UsualParams < FD->getNumParams() &&
1657       S.Context.hasSameUnqualifiedType(
1658           FD->getParamDecl(UsualParams)->getType(),
1659           S.Context.getTypeDeclType(S.getStdAlignValT())))
1660     ++UsualParams;
1661 
1662   return UsualParams == FD->getNumParams();
1663 }
1664 
1665 namespace {
1666   struct UsualDeallocFnInfo {
1667     UsualDeallocFnInfo() : Found(), FD(nullptr) {}
1668     UsualDeallocFnInfo(Sema &S, DeclAccessPair Found)
1669         : Found(Found), FD(dyn_cast<FunctionDecl>(Found->getUnderlyingDecl())),
1670           Destroying(false), HasSizeT(false), HasAlignValT(false),
1671           CUDAPref(Sema::CFP_Native) {
1672       // A function template declaration is never a usual deallocation function.
1673       if (!FD)
1674         return;
1675       unsigned NumBaseParams = 1;
1676       if (FD->isDestroyingOperatorDelete()) {
1677         Destroying = true;
1678         ++NumBaseParams;
1679       }
1680 
1681       if (NumBaseParams < FD->getNumParams() &&
1682           S.Context.hasSameUnqualifiedType(
1683               FD->getParamDecl(NumBaseParams)->getType(),
1684               S.Context.getSizeType())) {
1685         ++NumBaseParams;
1686         HasSizeT = true;
1687       }
1688 
1689       if (NumBaseParams < FD->getNumParams() &&
1690           FD->getParamDecl(NumBaseParams)->getType()->isAlignValT()) {
1691         ++NumBaseParams;
1692         HasAlignValT = true;
1693       }
1694 
1695       // In CUDA, determine how much we'd like / dislike to call this.
1696       if (S.getLangOpts().CUDA)
1697         if (auto *Caller = S.getCurFunctionDecl(/*AllowLambda=*/true))
1698           CUDAPref = S.IdentifyCUDAPreference(Caller, FD);
1699     }
1700 
1701     explicit operator bool() const { return FD; }
1702 
1703     bool isBetterThan(const UsualDeallocFnInfo &Other, bool WantSize,
1704                       bool WantAlign) const {
1705       // C++ P0722:
1706       //   A destroying operator delete is preferred over a non-destroying
1707       //   operator delete.
1708       if (Destroying != Other.Destroying)
1709         return Destroying;
1710 
1711       // C++17 [expr.delete]p10:
1712       //   If the type has new-extended alignment, a function with a parameter
1713       //   of type std::align_val_t is preferred; otherwise a function without
1714       //   such a parameter is preferred
1715       if (HasAlignValT != Other.HasAlignValT)
1716         return HasAlignValT == WantAlign;
1717 
1718       if (HasSizeT != Other.HasSizeT)
1719         return HasSizeT == WantSize;
1720 
1721       // Use CUDA call preference as a tiebreaker.
1722       return CUDAPref > Other.CUDAPref;
1723     }
1724 
1725     DeclAccessPair Found;
1726     FunctionDecl *FD;
1727     bool Destroying, HasSizeT, HasAlignValT;
1728     Sema::CUDAFunctionPreference CUDAPref;
1729   };
1730 }
1731 
1732 /// Determine whether a type has new-extended alignment. This may be called when
1733 /// the type is incomplete (for a delete-expression with an incomplete pointee
1734 /// type), in which case it will conservatively return false if the alignment is
1735 /// not known.
1736 static bool hasNewExtendedAlignment(Sema &S, QualType AllocType) {
1737   return S.getLangOpts().AlignedAllocation &&
1738          S.getASTContext().getTypeAlignIfKnown(AllocType) >
1739              S.getASTContext().getTargetInfo().getNewAlign();
1740 }
1741 
1742 /// Select the correct "usual" deallocation function to use from a selection of
1743 /// deallocation functions (either global or class-scope).
1744 static UsualDeallocFnInfo resolveDeallocationOverload(
1745     Sema &S, LookupResult &R, bool WantSize, bool WantAlign,
1746     llvm::SmallVectorImpl<UsualDeallocFnInfo> *BestFns = nullptr) {
1747   UsualDeallocFnInfo Best;
1748 
1749   for (auto I = R.begin(), E = R.end(); I != E; ++I) {
1750     UsualDeallocFnInfo Info(S, I.getPair());
1751     if (!Info || !isNonPlacementDeallocationFunction(S, Info.FD) ||
1752         Info.CUDAPref == Sema::CFP_Never)
1753       continue;
1754 
1755     if (!Best) {
1756       Best = Info;
1757       if (BestFns)
1758         BestFns->push_back(Info);
1759       continue;
1760     }
1761 
1762     if (Best.isBetterThan(Info, WantSize, WantAlign))
1763       continue;
1764 
1765     //   If more than one preferred function is found, all non-preferred
1766     //   functions are eliminated from further consideration.
1767     if (BestFns && Info.isBetterThan(Best, WantSize, WantAlign))
1768       BestFns->clear();
1769 
1770     Best = Info;
1771     if (BestFns)
1772       BestFns->push_back(Info);
1773   }
1774 
1775   return Best;
1776 }
1777 
1778 /// Determine whether a given type is a class for which 'delete[]' would call
1779 /// a member 'operator delete[]' with a 'size_t' parameter. This implies that
1780 /// we need to store the array size (even if the type is
1781 /// trivially-destructible).
1782 static bool doesUsualArrayDeleteWantSize(Sema &S, SourceLocation loc,
1783                                          QualType allocType) {
1784   const RecordType *record =
1785     allocType->getBaseElementTypeUnsafe()->getAs<RecordType>();
1786   if (!record) return false;
1787 
1788   // Try to find an operator delete[] in class scope.
1789 
1790   DeclarationName deleteName =
1791     S.Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete);
1792   LookupResult ops(S, deleteName, loc, Sema::LookupOrdinaryName);
1793   S.LookupQualifiedName(ops, record->getDecl());
1794 
1795   // We're just doing this for information.
1796   ops.suppressDiagnostics();
1797 
1798   // Very likely: there's no operator delete[].
1799   if (ops.empty()) return false;
1800 
1801   // If it's ambiguous, it should be illegal to call operator delete[]
1802   // on this thing, so it doesn't matter if we allocate extra space or not.
1803   if (ops.isAmbiguous()) return false;
1804 
1805   // C++17 [expr.delete]p10:
1806   //   If the deallocation functions have class scope, the one without a
1807   //   parameter of type std::size_t is selected.
1808   auto Best = resolveDeallocationOverload(
1809       S, ops, /*WantSize*/false,
1810       /*WantAlign*/hasNewExtendedAlignment(S, allocType));
1811   return Best && Best.HasSizeT;
1812 }
1813 
1814 /// Parsed a C++ 'new' expression (C++ 5.3.4).
1815 ///
1816 /// E.g.:
1817 /// @code new (memory) int[size][4] @endcode
1818 /// or
1819 /// @code ::new Foo(23, "hello") @endcode
1820 ///
1821 /// \param StartLoc The first location of the expression.
1822 /// \param UseGlobal True if 'new' was prefixed with '::'.
1823 /// \param PlacementLParen Opening paren of the placement arguments.
1824 /// \param PlacementArgs Placement new arguments.
1825 /// \param PlacementRParen Closing paren of the placement arguments.
1826 /// \param TypeIdParens If the type is in parens, the source range.
1827 /// \param D The type to be allocated, as well as array dimensions.
1828 /// \param Initializer The initializing expression or initializer-list, or null
1829 ///   if there is none.
1830 ExprResult
1831 Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
1832                   SourceLocation PlacementLParen, MultiExprArg PlacementArgs,
1833                   SourceLocation PlacementRParen, SourceRange TypeIdParens,
1834                   Declarator &D, Expr *Initializer) {
1835   Optional<Expr *> ArraySize;
1836   // If the specified type is an array, unwrap it and save the expression.
1837   if (D.getNumTypeObjects() > 0 &&
1838       D.getTypeObject(0).Kind == DeclaratorChunk::Array) {
1839     DeclaratorChunk &Chunk = D.getTypeObject(0);
1840     if (D.getDeclSpec().hasAutoTypeSpec())
1841       return ExprError(Diag(Chunk.Loc, diag::err_new_array_of_auto)
1842         << D.getSourceRange());
1843     if (Chunk.Arr.hasStatic)
1844       return ExprError(Diag(Chunk.Loc, diag::err_static_illegal_in_new)
1845         << D.getSourceRange());
1846     if (!Chunk.Arr.NumElts && !Initializer)
1847       return ExprError(Diag(Chunk.Loc, diag::err_array_new_needs_size)
1848         << D.getSourceRange());
1849 
1850     ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts);
1851     D.DropFirstTypeObject();
1852   }
1853 
1854   // Every dimension shall be of constant size.
1855   if (ArraySize) {
1856     for (unsigned I = 0, N = D.getNumTypeObjects(); I < N; ++I) {
1857       if (D.getTypeObject(I).Kind != DeclaratorChunk::Array)
1858         break;
1859 
1860       DeclaratorChunk::ArrayTypeInfo &Array = D.getTypeObject(I).Arr;
1861       if (Expr *NumElts = (Expr *)Array.NumElts) {
1862         if (!NumElts->isTypeDependent() && !NumElts->isValueDependent()) {
1863           // FIXME: GCC permits constant folding here. We should either do so consistently
1864           // or not do so at all, rather than changing behavior in C++14 onwards.
1865           if (getLangOpts().CPlusPlus14) {
1866             // C++1y [expr.new]p6: Every constant-expression in a noptr-new-declarator
1867             //   shall be a converted constant expression (5.19) of type std::size_t
1868             //   and shall evaluate to a strictly positive value.
1869             llvm::APSInt Value(Context.getIntWidth(Context.getSizeType()));
1870             Array.NumElts
1871              = CheckConvertedConstantExpression(NumElts, Context.getSizeType(), Value,
1872                                                 CCEK_ArrayBound)
1873                  .get();
1874           } else {
1875             Array.NumElts =
1876                 VerifyIntegerConstantExpression(
1877                     NumElts, nullptr, diag::err_new_array_nonconst, AllowFold)
1878                     .get();
1879           }
1880           if (!Array.NumElts)
1881             return ExprError();
1882         }
1883       }
1884     }
1885   }
1886 
1887   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, /*Scope=*/nullptr);
1888   QualType AllocType = TInfo->getType();
1889   if (D.isInvalidType())
1890     return ExprError();
1891 
1892   SourceRange DirectInitRange;
1893   if (ParenListExpr *List = dyn_cast_or_null<ParenListExpr>(Initializer))
1894     DirectInitRange = List->getSourceRange();
1895 
1896   return BuildCXXNew(SourceRange(StartLoc, D.getEndLoc()), UseGlobal,
1897                      PlacementLParen, PlacementArgs, PlacementRParen,
1898                      TypeIdParens, AllocType, TInfo, ArraySize, DirectInitRange,
1899                      Initializer);
1900 }
1901 
1902 static bool isLegalArrayNewInitializer(CXXNewExpr::InitializationStyle Style,
1903                                        Expr *Init) {
1904   if (!Init)
1905     return true;
1906   if (ParenListExpr *PLE = dyn_cast<ParenListExpr>(Init))
1907     return PLE->getNumExprs() == 0;
1908   if (isa<ImplicitValueInitExpr>(Init))
1909     return true;
1910   else if (CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init))
1911     return !CCE->isListInitialization() &&
1912            CCE->getConstructor()->isDefaultConstructor();
1913   else if (Style == CXXNewExpr::ListInit) {
1914     assert(isa<InitListExpr>(Init) &&
1915            "Shouldn't create list CXXConstructExprs for arrays.");
1916     return true;
1917   }
1918   return false;
1919 }
1920 
1921 bool
1922 Sema::isUnavailableAlignedAllocationFunction(const FunctionDecl &FD) const {
1923   if (!getLangOpts().AlignedAllocationUnavailable)
1924     return false;
1925   if (FD.isDefined())
1926     return false;
1927   Optional<unsigned> AlignmentParam;
1928   if (FD.isReplaceableGlobalAllocationFunction(&AlignmentParam) &&
1929       AlignmentParam)
1930     return true;
1931   return false;
1932 }
1933 
1934 // Emit a diagnostic if an aligned allocation/deallocation function that is not
1935 // implemented in the standard library is selected.
1936 void Sema::diagnoseUnavailableAlignedAllocation(const FunctionDecl &FD,
1937                                                 SourceLocation Loc) {
1938   if (isUnavailableAlignedAllocationFunction(FD)) {
1939     const llvm::Triple &T = getASTContext().getTargetInfo().getTriple();
1940     StringRef OSName = AvailabilityAttr::getPlatformNameSourceSpelling(
1941         getASTContext().getTargetInfo().getPlatformName());
1942     VersionTuple OSVersion = alignedAllocMinVersion(T.getOS());
1943 
1944     OverloadedOperatorKind Kind = FD.getDeclName().getCXXOverloadedOperator();
1945     bool IsDelete = Kind == OO_Delete || Kind == OO_Array_Delete;
1946     Diag(Loc, diag::err_aligned_allocation_unavailable)
1947         << IsDelete << FD.getType().getAsString() << OSName
1948         << OSVersion.getAsString() << OSVersion.empty();
1949     Diag(Loc, diag::note_silence_aligned_allocation_unavailable);
1950   }
1951 }
1952 
1953 ExprResult
1954 Sema::BuildCXXNew(SourceRange Range, bool UseGlobal,
1955                   SourceLocation PlacementLParen,
1956                   MultiExprArg PlacementArgs,
1957                   SourceLocation PlacementRParen,
1958                   SourceRange TypeIdParens,
1959                   QualType AllocType,
1960                   TypeSourceInfo *AllocTypeInfo,
1961                   Optional<Expr *> ArraySize,
1962                   SourceRange DirectInitRange,
1963                   Expr *Initializer) {
1964   SourceRange TypeRange = AllocTypeInfo->getTypeLoc().getSourceRange();
1965   SourceLocation StartLoc = Range.getBegin();
1966 
1967   CXXNewExpr::InitializationStyle initStyle;
1968   if (DirectInitRange.isValid()) {
1969     assert(Initializer && "Have parens but no initializer.");
1970     initStyle = CXXNewExpr::CallInit;
1971   } else if (Initializer && isa<InitListExpr>(Initializer))
1972     initStyle = CXXNewExpr::ListInit;
1973   else {
1974     assert((!Initializer || isa<ImplicitValueInitExpr>(Initializer) ||
1975             isa<CXXConstructExpr>(Initializer)) &&
1976            "Initializer expression that cannot have been implicitly created.");
1977     initStyle = CXXNewExpr::NoInit;
1978   }
1979 
1980   MultiExprArg Exprs(&Initializer, Initializer ? 1 : 0);
1981   if (ParenListExpr *List = dyn_cast_or_null<ParenListExpr>(Initializer)) {
1982     assert(initStyle == CXXNewExpr::CallInit && "paren init for non-call init");
1983     Exprs = MultiExprArg(List->getExprs(), List->getNumExprs());
1984   }
1985 
1986   // C++11 [expr.new]p15:
1987   //   A new-expression that creates an object of type T initializes that
1988   //   object as follows:
1989   InitializationKind Kind
1990       //     - If the new-initializer is omitted, the object is default-
1991       //       initialized (8.5); if no initialization is performed,
1992       //       the object has indeterminate value
1993       = initStyle == CXXNewExpr::NoInit
1994             ? InitializationKind::CreateDefault(TypeRange.getBegin())
1995             //     - Otherwise, the new-initializer is interpreted according to
1996             //     the
1997             //       initialization rules of 8.5 for direct-initialization.
1998             : initStyle == CXXNewExpr::ListInit
1999                   ? InitializationKind::CreateDirectList(
2000                         TypeRange.getBegin(), Initializer->getBeginLoc(),
2001                         Initializer->getEndLoc())
2002                   : InitializationKind::CreateDirect(TypeRange.getBegin(),
2003                                                      DirectInitRange.getBegin(),
2004                                                      DirectInitRange.getEnd());
2005 
2006   // C++11 [dcl.spec.auto]p6. Deduce the type which 'auto' stands in for.
2007   auto *Deduced = AllocType->getContainedDeducedType();
2008   if (Deduced && isa<DeducedTemplateSpecializationType>(Deduced)) {
2009     if (ArraySize)
2010       return ExprError(
2011           Diag(*ArraySize ? (*ArraySize)->getExprLoc() : TypeRange.getBegin(),
2012                diag::err_deduced_class_template_compound_type)
2013           << /*array*/ 2
2014           << (*ArraySize ? (*ArraySize)->getSourceRange() : TypeRange));
2015 
2016     InitializedEntity Entity
2017       = InitializedEntity::InitializeNew(StartLoc, AllocType);
2018     AllocType = DeduceTemplateSpecializationFromInitializer(
2019         AllocTypeInfo, Entity, Kind, Exprs);
2020     if (AllocType.isNull())
2021       return ExprError();
2022   } else if (Deduced) {
2023     MultiExprArg Inits = Exprs;
2024     bool Braced = (initStyle == CXXNewExpr::ListInit);
2025     if (Braced) {
2026       auto *ILE = cast<InitListExpr>(Exprs[0]);
2027       Inits = MultiExprArg(ILE->getInits(), ILE->getNumInits());
2028     }
2029 
2030     if (initStyle == CXXNewExpr::NoInit || Inits.empty())
2031       return ExprError(Diag(StartLoc, diag::err_auto_new_requires_ctor_arg)
2032                        << AllocType << TypeRange);
2033     if (Inits.size() > 1) {
2034       Expr *FirstBad = Inits[1];
2035       return ExprError(Diag(FirstBad->getBeginLoc(),
2036                             diag::err_auto_new_ctor_multiple_expressions)
2037                        << AllocType << TypeRange);
2038     }
2039     if (Braced && !getLangOpts().CPlusPlus17)
2040       Diag(Initializer->getBeginLoc(), diag::ext_auto_new_list_init)
2041           << AllocType << TypeRange;
2042     Expr *Deduce = Inits[0];
2043     if (isa<InitListExpr>(Deduce))
2044       return ExprError(
2045           Diag(Deduce->getBeginLoc(), diag::err_auto_expr_init_paren_braces)
2046           << Braced << AllocType << TypeRange);
2047     QualType DeducedType;
2048     if (DeduceAutoType(AllocTypeInfo, Deduce, DeducedType) == DAR_Failed)
2049       return ExprError(Diag(StartLoc, diag::err_auto_new_deduction_failure)
2050                        << AllocType << Deduce->getType()
2051                        << TypeRange << Deduce->getSourceRange());
2052     if (DeducedType.isNull())
2053       return ExprError();
2054     AllocType = DeducedType;
2055   }
2056 
2057   // Per C++0x [expr.new]p5, the type being constructed may be a
2058   // typedef of an array type.
2059   if (!ArraySize) {
2060     if (const ConstantArrayType *Array
2061                               = Context.getAsConstantArrayType(AllocType)) {
2062       ArraySize = IntegerLiteral::Create(Context, Array->getSize(),
2063                                          Context.getSizeType(),
2064                                          TypeRange.getEnd());
2065       AllocType = Array->getElementType();
2066     }
2067   }
2068 
2069   if (CheckAllocatedType(AllocType, TypeRange.getBegin(), TypeRange))
2070     return ExprError();
2071 
2072   // In ARC, infer 'retaining' for the allocated
2073   if (getLangOpts().ObjCAutoRefCount &&
2074       AllocType.getObjCLifetime() == Qualifiers::OCL_None &&
2075       AllocType->isObjCLifetimeType()) {
2076     AllocType = Context.getLifetimeQualifiedType(AllocType,
2077                                     AllocType->getObjCARCImplicitLifetime());
2078   }
2079 
2080   QualType ResultType = Context.getPointerType(AllocType);
2081 
2082   if (ArraySize && *ArraySize &&
2083       (*ArraySize)->getType()->isNonOverloadPlaceholderType()) {
2084     ExprResult result = CheckPlaceholderExpr(*ArraySize);
2085     if (result.isInvalid()) return ExprError();
2086     ArraySize = result.get();
2087   }
2088   // C++98 5.3.4p6: "The expression in a direct-new-declarator shall have
2089   //   integral or enumeration type with a non-negative value."
2090   // C++11 [expr.new]p6: The expression [...] shall be of integral or unscoped
2091   //   enumeration type, or a class type for which a single non-explicit
2092   //   conversion function to integral or unscoped enumeration type exists.
2093   // C++1y [expr.new]p6: The expression [...] is implicitly converted to
2094   //   std::size_t.
2095   llvm::Optional<uint64_t> KnownArraySize;
2096   if (ArraySize && *ArraySize && !(*ArraySize)->isTypeDependent()) {
2097     ExprResult ConvertedSize;
2098     if (getLangOpts().CPlusPlus14) {
2099       assert(Context.getTargetInfo().getIntWidth() && "Builtin type of size 0?");
2100 
2101       ConvertedSize = PerformImplicitConversion(*ArraySize, Context.getSizeType(),
2102                                                 AA_Converting);
2103 
2104       if (!ConvertedSize.isInvalid() &&
2105           (*ArraySize)->getType()->getAs<RecordType>())
2106         // Diagnose the compatibility of this conversion.
2107         Diag(StartLoc, diag::warn_cxx98_compat_array_size_conversion)
2108           << (*ArraySize)->getType() << 0 << "'size_t'";
2109     } else {
2110       class SizeConvertDiagnoser : public ICEConvertDiagnoser {
2111       protected:
2112         Expr *ArraySize;
2113 
2114       public:
2115         SizeConvertDiagnoser(Expr *ArraySize)
2116             : ICEConvertDiagnoser(/*AllowScopedEnumerations*/false, false, false),
2117               ArraySize(ArraySize) {}
2118 
2119         SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
2120                                              QualType T) override {
2121           return S.Diag(Loc, diag::err_array_size_not_integral)
2122                    << S.getLangOpts().CPlusPlus11 << T;
2123         }
2124 
2125         SemaDiagnosticBuilder diagnoseIncomplete(
2126             Sema &S, SourceLocation Loc, QualType T) override {
2127           return S.Diag(Loc, diag::err_array_size_incomplete_type)
2128                    << T << ArraySize->getSourceRange();
2129         }
2130 
2131         SemaDiagnosticBuilder diagnoseExplicitConv(
2132             Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
2133           return S.Diag(Loc, diag::err_array_size_explicit_conversion) << T << ConvTy;
2134         }
2135 
2136         SemaDiagnosticBuilder noteExplicitConv(
2137             Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
2138           return S.Diag(Conv->getLocation(), diag::note_array_size_conversion)
2139                    << ConvTy->isEnumeralType() << ConvTy;
2140         }
2141 
2142         SemaDiagnosticBuilder diagnoseAmbiguous(
2143             Sema &S, SourceLocation Loc, QualType T) override {
2144           return S.Diag(Loc, diag::err_array_size_ambiguous_conversion) << T;
2145         }
2146 
2147         SemaDiagnosticBuilder noteAmbiguous(
2148             Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
2149           return S.Diag(Conv->getLocation(), diag::note_array_size_conversion)
2150                    << ConvTy->isEnumeralType() << ConvTy;
2151         }
2152 
2153         SemaDiagnosticBuilder diagnoseConversion(Sema &S, SourceLocation Loc,
2154                                                  QualType T,
2155                                                  QualType ConvTy) override {
2156           return S.Diag(Loc,
2157                         S.getLangOpts().CPlusPlus11
2158                           ? diag::warn_cxx98_compat_array_size_conversion
2159                           : diag::ext_array_size_conversion)
2160                    << T << ConvTy->isEnumeralType() << ConvTy;
2161         }
2162       } SizeDiagnoser(*ArraySize);
2163 
2164       ConvertedSize = PerformContextualImplicitConversion(StartLoc, *ArraySize,
2165                                                           SizeDiagnoser);
2166     }
2167     if (ConvertedSize.isInvalid())
2168       return ExprError();
2169 
2170     ArraySize = ConvertedSize.get();
2171     QualType SizeType = (*ArraySize)->getType();
2172 
2173     if (!SizeType->isIntegralOrUnscopedEnumerationType())
2174       return ExprError();
2175 
2176     // C++98 [expr.new]p7:
2177     //   The expression in a direct-new-declarator shall have integral type
2178     //   with a non-negative value.
2179     //
2180     // Let's see if this is a constant < 0. If so, we reject it out of hand,
2181     // per CWG1464. Otherwise, if it's not a constant, we must have an
2182     // unparenthesized array type.
2183 
2184     // We've already performed any required implicit conversion to integer or
2185     // unscoped enumeration type.
2186     // FIXME: Per CWG1464, we are required to check the value prior to
2187     // converting to size_t. This will never find a negative array size in
2188     // C++14 onwards, because Value is always unsigned here!
2189     if (Optional<llvm::APSInt> Value =
2190             (*ArraySize)->getIntegerConstantExpr(Context)) {
2191       if (Value->isSigned() && Value->isNegative()) {
2192         return ExprError(Diag((*ArraySize)->getBeginLoc(),
2193                               diag::err_typecheck_negative_array_size)
2194                          << (*ArraySize)->getSourceRange());
2195       }
2196 
2197       if (!AllocType->isDependentType()) {
2198         unsigned ActiveSizeBits =
2199             ConstantArrayType::getNumAddressingBits(Context, AllocType, *Value);
2200         if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context))
2201           return ExprError(
2202               Diag((*ArraySize)->getBeginLoc(), diag::err_array_too_large)
2203               << toString(*Value, 10) << (*ArraySize)->getSourceRange());
2204       }
2205 
2206       KnownArraySize = Value->getZExtValue();
2207     } else if (TypeIdParens.isValid()) {
2208       // Can't have dynamic array size when the type-id is in parentheses.
2209       Diag((*ArraySize)->getBeginLoc(), diag::ext_new_paren_array_nonconst)
2210           << (*ArraySize)->getSourceRange()
2211           << FixItHint::CreateRemoval(TypeIdParens.getBegin())
2212           << FixItHint::CreateRemoval(TypeIdParens.getEnd());
2213 
2214       TypeIdParens = SourceRange();
2215     }
2216 
2217     // Note that we do *not* convert the argument in any way.  It can
2218     // be signed, larger than size_t, whatever.
2219   }
2220 
2221   FunctionDecl *OperatorNew = nullptr;
2222   FunctionDecl *OperatorDelete = nullptr;
2223   unsigned Alignment =
2224       AllocType->isDependentType() ? 0 : Context.getTypeAlign(AllocType);
2225   unsigned NewAlignment = Context.getTargetInfo().getNewAlign();
2226   bool PassAlignment = getLangOpts().AlignedAllocation &&
2227                        Alignment > NewAlignment;
2228 
2229   AllocationFunctionScope Scope = UseGlobal ? AFS_Global : AFS_Both;
2230   if (!AllocType->isDependentType() &&
2231       !Expr::hasAnyTypeDependentArguments(PlacementArgs) &&
2232       FindAllocationFunctions(
2233           StartLoc, SourceRange(PlacementLParen, PlacementRParen), Scope, Scope,
2234           AllocType, ArraySize.has_value(), PassAlignment, PlacementArgs,
2235           OperatorNew, OperatorDelete))
2236     return ExprError();
2237 
2238   // If this is an array allocation, compute whether the usual array
2239   // deallocation function for the type has a size_t parameter.
2240   bool UsualArrayDeleteWantsSize = false;
2241   if (ArraySize && !AllocType->isDependentType())
2242     UsualArrayDeleteWantsSize =
2243         doesUsualArrayDeleteWantSize(*this, StartLoc, AllocType);
2244 
2245   SmallVector<Expr *, 8> AllPlaceArgs;
2246   if (OperatorNew) {
2247     auto *Proto = OperatorNew->getType()->castAs<FunctionProtoType>();
2248     VariadicCallType CallType = Proto->isVariadic() ? VariadicFunction
2249                                                     : VariadicDoesNotApply;
2250 
2251     // We've already converted the placement args, just fill in any default
2252     // arguments. Skip the first parameter because we don't have a corresponding
2253     // argument. Skip the second parameter too if we're passing in the
2254     // alignment; we've already filled it in.
2255     unsigned NumImplicitArgs = PassAlignment ? 2 : 1;
2256     if (GatherArgumentsForCall(PlacementLParen, OperatorNew, Proto,
2257                                NumImplicitArgs, PlacementArgs, AllPlaceArgs,
2258                                CallType))
2259       return ExprError();
2260 
2261     if (!AllPlaceArgs.empty())
2262       PlacementArgs = AllPlaceArgs;
2263 
2264     // We would like to perform some checking on the given `operator new` call,
2265     // but the PlacementArgs does not contain the implicit arguments,
2266     // namely allocation size and maybe allocation alignment,
2267     // so we need to conjure them.
2268 
2269     QualType SizeTy = Context.getSizeType();
2270     unsigned SizeTyWidth = Context.getTypeSize(SizeTy);
2271 
2272     llvm::APInt SingleEltSize(
2273         SizeTyWidth, Context.getTypeSizeInChars(AllocType).getQuantity());
2274 
2275     // How many bytes do we want to allocate here?
2276     llvm::Optional<llvm::APInt> AllocationSize;
2277     if (!ArraySize.hasValue() && !AllocType->isDependentType()) {
2278       // For non-array operator new, we only want to allocate one element.
2279       AllocationSize = SingleEltSize;
2280     } else if (KnownArraySize.hasValue() && !AllocType->isDependentType()) {
2281       // For array operator new, only deal with static array size case.
2282       bool Overflow;
2283       AllocationSize = llvm::APInt(SizeTyWidth, *KnownArraySize)
2284                            .umul_ov(SingleEltSize, Overflow);
2285       (void)Overflow;
2286       assert(
2287           !Overflow &&
2288           "Expected that all the overflows would have been handled already.");
2289     }
2290 
2291     IntegerLiteral AllocationSizeLiteral(
2292         Context, AllocationSize.value_or(llvm::APInt::getZero(SizeTyWidth)),
2293         SizeTy, SourceLocation());
2294     // Otherwise, if we failed to constant-fold the allocation size, we'll
2295     // just give up and pass-in something opaque, that isn't a null pointer.
2296     OpaqueValueExpr OpaqueAllocationSize(SourceLocation(), SizeTy, VK_PRValue,
2297                                          OK_Ordinary, /*SourceExpr=*/nullptr);
2298 
2299     // Let's synthesize the alignment argument in case we will need it.
2300     // Since we *really* want to allocate these on stack, this is slightly ugly
2301     // because there might not be a `std::align_val_t` type.
2302     EnumDecl *StdAlignValT = getStdAlignValT();
2303     QualType AlignValT =
2304         StdAlignValT ? Context.getTypeDeclType(StdAlignValT) : SizeTy;
2305     IntegerLiteral AlignmentLiteral(
2306         Context,
2307         llvm::APInt(Context.getTypeSize(SizeTy),
2308                     Alignment / Context.getCharWidth()),
2309         SizeTy, SourceLocation());
2310     ImplicitCastExpr DesiredAlignment(ImplicitCastExpr::OnStack, AlignValT,
2311                                       CK_IntegralCast, &AlignmentLiteral,
2312                                       VK_PRValue, FPOptionsOverride());
2313 
2314     // Adjust placement args by prepending conjured size and alignment exprs.
2315     llvm::SmallVector<Expr *, 8> CallArgs;
2316     CallArgs.reserve(NumImplicitArgs + PlacementArgs.size());
2317     CallArgs.emplace_back(AllocationSize
2318                               ? static_cast<Expr *>(&AllocationSizeLiteral)
2319                               : &OpaqueAllocationSize);
2320     if (PassAlignment)
2321       CallArgs.emplace_back(&DesiredAlignment);
2322     CallArgs.insert(CallArgs.end(), PlacementArgs.begin(), PlacementArgs.end());
2323 
2324     DiagnoseSentinelCalls(OperatorNew, PlacementLParen, CallArgs);
2325 
2326     checkCall(OperatorNew, Proto, /*ThisArg=*/nullptr, CallArgs,
2327               /*IsMemberFunction=*/false, StartLoc, Range, CallType);
2328 
2329     // Warn if the type is over-aligned and is being allocated by (unaligned)
2330     // global operator new.
2331     if (PlacementArgs.empty() && !PassAlignment &&
2332         (OperatorNew->isImplicit() ||
2333          (OperatorNew->getBeginLoc().isValid() &&
2334           getSourceManager().isInSystemHeader(OperatorNew->getBeginLoc())))) {
2335       if (Alignment > NewAlignment)
2336         Diag(StartLoc, diag::warn_overaligned_type)
2337             << AllocType
2338             << unsigned(Alignment / Context.getCharWidth())
2339             << unsigned(NewAlignment / Context.getCharWidth());
2340     }
2341   }
2342 
2343   // Array 'new' can't have any initializers except empty parentheses.
2344   // Initializer lists are also allowed, in C++11. Rely on the parser for the
2345   // dialect distinction.
2346   if (ArraySize && !isLegalArrayNewInitializer(initStyle, Initializer)) {
2347     SourceRange InitRange(Exprs.front()->getBeginLoc(),
2348                           Exprs.back()->getEndLoc());
2349     Diag(StartLoc, diag::err_new_array_init_args) << InitRange;
2350     return ExprError();
2351   }
2352 
2353   // If we can perform the initialization, and we've not already done so,
2354   // do it now.
2355   if (!AllocType->isDependentType() &&
2356       !Expr::hasAnyTypeDependentArguments(Exprs)) {
2357     // The type we initialize is the complete type, including the array bound.
2358     QualType InitType;
2359     if (KnownArraySize)
2360       InitType = Context.getConstantArrayType(
2361           AllocType,
2362           llvm::APInt(Context.getTypeSize(Context.getSizeType()),
2363                       *KnownArraySize),
2364           *ArraySize, ArrayType::Normal, 0);
2365     else if (ArraySize)
2366       InitType =
2367           Context.getIncompleteArrayType(AllocType, ArrayType::Normal, 0);
2368     else
2369       InitType = AllocType;
2370 
2371     InitializedEntity Entity
2372       = InitializedEntity::InitializeNew(StartLoc, InitType);
2373     InitializationSequence InitSeq(*this, Entity, Kind, Exprs);
2374     ExprResult FullInit = InitSeq.Perform(*this, Entity, Kind, Exprs);
2375     if (FullInit.isInvalid())
2376       return ExprError();
2377 
2378     // FullInit is our initializer; strip off CXXBindTemporaryExprs, because
2379     // we don't want the initialized object to be destructed.
2380     // FIXME: We should not create these in the first place.
2381     if (CXXBindTemporaryExpr *Binder =
2382             dyn_cast_or_null<CXXBindTemporaryExpr>(FullInit.get()))
2383       FullInit = Binder->getSubExpr();
2384 
2385     Initializer = FullInit.get();
2386 
2387     // FIXME: If we have a KnownArraySize, check that the array bound of the
2388     // initializer is no greater than that constant value.
2389 
2390     if (ArraySize && !*ArraySize) {
2391       auto *CAT = Context.getAsConstantArrayType(Initializer->getType());
2392       if (CAT) {
2393         // FIXME: Track that the array size was inferred rather than explicitly
2394         // specified.
2395         ArraySize = IntegerLiteral::Create(
2396             Context, CAT->getSize(), Context.getSizeType(), TypeRange.getEnd());
2397       } else {
2398         Diag(TypeRange.getEnd(), diag::err_new_array_size_unknown_from_init)
2399             << Initializer->getSourceRange();
2400       }
2401     }
2402   }
2403 
2404   // Mark the new and delete operators as referenced.
2405   if (OperatorNew) {
2406     if (DiagnoseUseOfDecl(OperatorNew, StartLoc))
2407       return ExprError();
2408     MarkFunctionReferenced(StartLoc, OperatorNew);
2409   }
2410   if (OperatorDelete) {
2411     if (DiagnoseUseOfDecl(OperatorDelete, StartLoc))
2412       return ExprError();
2413     MarkFunctionReferenced(StartLoc, OperatorDelete);
2414   }
2415 
2416   return CXXNewExpr::Create(Context, UseGlobal, OperatorNew, OperatorDelete,
2417                             PassAlignment, UsualArrayDeleteWantsSize,
2418                             PlacementArgs, TypeIdParens, ArraySize, initStyle,
2419                             Initializer, ResultType, AllocTypeInfo, Range,
2420                             DirectInitRange);
2421 }
2422 
2423 /// Checks that a type is suitable as the allocated type
2424 /// in a new-expression.
2425 bool Sema::CheckAllocatedType(QualType AllocType, SourceLocation Loc,
2426                               SourceRange R) {
2427   // C++ 5.3.4p1: "[The] type shall be a complete object type, but not an
2428   //   abstract class type or array thereof.
2429   if (AllocType->isFunctionType())
2430     return Diag(Loc, diag::err_bad_new_type)
2431       << AllocType << 0 << R;
2432   else if (AllocType->isReferenceType())
2433     return Diag(Loc, diag::err_bad_new_type)
2434       << AllocType << 1 << R;
2435   else if (!AllocType->isDependentType() &&
2436            RequireCompleteSizedType(
2437                Loc, AllocType, diag::err_new_incomplete_or_sizeless_type, R))
2438     return true;
2439   else if (RequireNonAbstractType(Loc, AllocType,
2440                                   diag::err_allocation_of_abstract_type))
2441     return true;
2442   else if (AllocType->isVariablyModifiedType())
2443     return Diag(Loc, diag::err_variably_modified_new_type)
2444              << AllocType;
2445   else if (AllocType.getAddressSpace() != LangAS::Default &&
2446            !getLangOpts().OpenCLCPlusPlus)
2447     return Diag(Loc, diag::err_address_space_qualified_new)
2448       << AllocType.getUnqualifiedType()
2449       << AllocType.getQualifiers().getAddressSpaceAttributePrintValue();
2450   else if (getLangOpts().ObjCAutoRefCount) {
2451     if (const ArrayType *AT = Context.getAsArrayType(AllocType)) {
2452       QualType BaseAllocType = Context.getBaseElementType(AT);
2453       if (BaseAllocType.getObjCLifetime() == Qualifiers::OCL_None &&
2454           BaseAllocType->isObjCLifetimeType())
2455         return Diag(Loc, diag::err_arc_new_array_without_ownership)
2456           << BaseAllocType;
2457     }
2458   }
2459 
2460   return false;
2461 }
2462 
2463 static bool resolveAllocationOverload(
2464     Sema &S, LookupResult &R, SourceRange Range, SmallVectorImpl<Expr *> &Args,
2465     bool &PassAlignment, FunctionDecl *&Operator,
2466     OverloadCandidateSet *AlignedCandidates, Expr *AlignArg, bool Diagnose) {
2467   OverloadCandidateSet Candidates(R.getNameLoc(),
2468                                   OverloadCandidateSet::CSK_Normal);
2469   for (LookupResult::iterator Alloc = R.begin(), AllocEnd = R.end();
2470        Alloc != AllocEnd; ++Alloc) {
2471     // Even member operator new/delete are implicitly treated as
2472     // static, so don't use AddMemberCandidate.
2473     NamedDecl *D = (*Alloc)->getUnderlyingDecl();
2474 
2475     if (FunctionTemplateDecl *FnTemplate = dyn_cast<FunctionTemplateDecl>(D)) {
2476       S.AddTemplateOverloadCandidate(FnTemplate, Alloc.getPair(),
2477                                      /*ExplicitTemplateArgs=*/nullptr, Args,
2478                                      Candidates,
2479                                      /*SuppressUserConversions=*/false);
2480       continue;
2481     }
2482 
2483     FunctionDecl *Fn = cast<FunctionDecl>(D);
2484     S.AddOverloadCandidate(Fn, Alloc.getPair(), Args, Candidates,
2485                            /*SuppressUserConversions=*/false);
2486   }
2487 
2488   // Do the resolution.
2489   OverloadCandidateSet::iterator Best;
2490   switch (Candidates.BestViableFunction(S, R.getNameLoc(), Best)) {
2491   case OR_Success: {
2492     // Got one!
2493     FunctionDecl *FnDecl = Best->Function;
2494     if (S.CheckAllocationAccess(R.getNameLoc(), Range, R.getNamingClass(),
2495                                 Best->FoundDecl) == Sema::AR_inaccessible)
2496       return true;
2497 
2498     Operator = FnDecl;
2499     return false;
2500   }
2501 
2502   case OR_No_Viable_Function:
2503     // C++17 [expr.new]p13:
2504     //   If no matching function is found and the allocated object type has
2505     //   new-extended alignment, the alignment argument is removed from the
2506     //   argument list, and overload resolution is performed again.
2507     if (PassAlignment) {
2508       PassAlignment = false;
2509       AlignArg = Args[1];
2510       Args.erase(Args.begin() + 1);
2511       return resolveAllocationOverload(S, R, Range, Args, PassAlignment,
2512                                        Operator, &Candidates, AlignArg,
2513                                        Diagnose);
2514     }
2515 
2516     // MSVC will fall back on trying to find a matching global operator new
2517     // if operator new[] cannot be found.  Also, MSVC will leak by not
2518     // generating a call to operator delete or operator delete[], but we
2519     // will not replicate that bug.
2520     // FIXME: Find out how this interacts with the std::align_val_t fallback
2521     // once MSVC implements it.
2522     if (R.getLookupName().getCXXOverloadedOperator() == OO_Array_New &&
2523         S.Context.getLangOpts().MSVCCompat) {
2524       R.clear();
2525       R.setLookupName(S.Context.DeclarationNames.getCXXOperatorName(OO_New));
2526       S.LookupQualifiedName(R, S.Context.getTranslationUnitDecl());
2527       // FIXME: This will give bad diagnostics pointing at the wrong functions.
2528       return resolveAllocationOverload(S, R, Range, Args, PassAlignment,
2529                                        Operator, /*Candidates=*/nullptr,
2530                                        /*AlignArg=*/nullptr, Diagnose);
2531     }
2532 
2533     if (Diagnose) {
2534       // If this is an allocation of the form 'new (p) X' for some object
2535       // pointer p (or an expression that will decay to such a pointer),
2536       // diagnose the missing inclusion of <new>.
2537       if (!R.isClassLookup() && Args.size() == 2 &&
2538           (Args[1]->getType()->isObjectPointerType() ||
2539            Args[1]->getType()->isArrayType())) {
2540         S.Diag(R.getNameLoc(), diag::err_need_header_before_placement_new)
2541             << R.getLookupName() << Range;
2542         // Listing the candidates is unlikely to be useful; skip it.
2543         return true;
2544       }
2545 
2546       // Finish checking all candidates before we note any. This checking can
2547       // produce additional diagnostics so can't be interleaved with our
2548       // emission of notes.
2549       //
2550       // For an aligned allocation, separately check the aligned and unaligned
2551       // candidates with their respective argument lists.
2552       SmallVector<OverloadCandidate*, 32> Cands;
2553       SmallVector<OverloadCandidate*, 32> AlignedCands;
2554       llvm::SmallVector<Expr*, 4> AlignedArgs;
2555       if (AlignedCandidates) {
2556         auto IsAligned = [](OverloadCandidate &C) {
2557           return C.Function->getNumParams() > 1 &&
2558                  C.Function->getParamDecl(1)->getType()->isAlignValT();
2559         };
2560         auto IsUnaligned = [&](OverloadCandidate &C) { return !IsAligned(C); };
2561 
2562         AlignedArgs.reserve(Args.size() + 1);
2563         AlignedArgs.push_back(Args[0]);
2564         AlignedArgs.push_back(AlignArg);
2565         AlignedArgs.append(Args.begin() + 1, Args.end());
2566         AlignedCands = AlignedCandidates->CompleteCandidates(
2567             S, OCD_AllCandidates, AlignedArgs, R.getNameLoc(), IsAligned);
2568 
2569         Cands = Candidates.CompleteCandidates(S, OCD_AllCandidates, Args,
2570                                               R.getNameLoc(), IsUnaligned);
2571       } else {
2572         Cands = Candidates.CompleteCandidates(S, OCD_AllCandidates, Args,
2573                                               R.getNameLoc());
2574       }
2575 
2576       S.Diag(R.getNameLoc(), diag::err_ovl_no_viable_function_in_call)
2577           << R.getLookupName() << Range;
2578       if (AlignedCandidates)
2579         AlignedCandidates->NoteCandidates(S, AlignedArgs, AlignedCands, "",
2580                                           R.getNameLoc());
2581       Candidates.NoteCandidates(S, Args, Cands, "", R.getNameLoc());
2582     }
2583     return true;
2584 
2585   case OR_Ambiguous:
2586     if (Diagnose) {
2587       Candidates.NoteCandidates(
2588           PartialDiagnosticAt(R.getNameLoc(),
2589                               S.PDiag(diag::err_ovl_ambiguous_call)
2590                                   << R.getLookupName() << Range),
2591           S, OCD_AmbiguousCandidates, Args);
2592     }
2593     return true;
2594 
2595   case OR_Deleted: {
2596     if (Diagnose) {
2597       Candidates.NoteCandidates(
2598           PartialDiagnosticAt(R.getNameLoc(),
2599                               S.PDiag(diag::err_ovl_deleted_call)
2600                                   << R.getLookupName() << Range),
2601           S, OCD_AllCandidates, Args);
2602     }
2603     return true;
2604   }
2605   }
2606   llvm_unreachable("Unreachable, bad result from BestViableFunction");
2607 }
2608 
2609 bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
2610                                    AllocationFunctionScope NewScope,
2611                                    AllocationFunctionScope DeleteScope,
2612                                    QualType AllocType, bool IsArray,
2613                                    bool &PassAlignment, MultiExprArg PlaceArgs,
2614                                    FunctionDecl *&OperatorNew,
2615                                    FunctionDecl *&OperatorDelete,
2616                                    bool Diagnose) {
2617   // --- Choosing an allocation function ---
2618   // C++ 5.3.4p8 - 14 & 18
2619   // 1) If looking in AFS_Global scope for allocation functions, only look in
2620   //    the global scope. Else, if AFS_Class, only look in the scope of the
2621   //    allocated class. If AFS_Both, look in both.
2622   // 2) If an array size is given, look for operator new[], else look for
2623   //   operator new.
2624   // 3) The first argument is always size_t. Append the arguments from the
2625   //   placement form.
2626 
2627   SmallVector<Expr*, 8> AllocArgs;
2628   AllocArgs.reserve((PassAlignment ? 2 : 1) + PlaceArgs.size());
2629 
2630   // We don't care about the actual value of these arguments.
2631   // FIXME: Should the Sema create the expression and embed it in the syntax
2632   // tree? Or should the consumer just recalculate the value?
2633   // FIXME: Using a dummy value will interact poorly with attribute enable_if.
2634   IntegerLiteral Size(
2635       Context, llvm::APInt::getZero(Context.getTargetInfo().getPointerWidth(0)),
2636       Context.getSizeType(), SourceLocation());
2637   AllocArgs.push_back(&Size);
2638 
2639   QualType AlignValT = Context.VoidTy;
2640   if (PassAlignment) {
2641     DeclareGlobalNewDelete();
2642     AlignValT = Context.getTypeDeclType(getStdAlignValT());
2643   }
2644   CXXScalarValueInitExpr Align(AlignValT, nullptr, SourceLocation());
2645   if (PassAlignment)
2646     AllocArgs.push_back(&Align);
2647 
2648   AllocArgs.insert(AllocArgs.end(), PlaceArgs.begin(), PlaceArgs.end());
2649 
2650   // C++ [expr.new]p8:
2651   //   If the allocated type is a non-array type, the allocation
2652   //   function's name is operator new and the deallocation function's
2653   //   name is operator delete. If the allocated type is an array
2654   //   type, the allocation function's name is operator new[] and the
2655   //   deallocation function's name is operator delete[].
2656   DeclarationName NewName = Context.DeclarationNames.getCXXOperatorName(
2657       IsArray ? OO_Array_New : OO_New);
2658 
2659   QualType AllocElemType = Context.getBaseElementType(AllocType);
2660 
2661   // Find the allocation function.
2662   {
2663     LookupResult R(*this, NewName, StartLoc, LookupOrdinaryName);
2664 
2665     // C++1z [expr.new]p9:
2666     //   If the new-expression begins with a unary :: operator, the allocation
2667     //   function's name is looked up in the global scope. Otherwise, if the
2668     //   allocated type is a class type T or array thereof, the allocation
2669     //   function's name is looked up in the scope of T.
2670     if (AllocElemType->isRecordType() && NewScope != AFS_Global)
2671       LookupQualifiedName(R, AllocElemType->getAsCXXRecordDecl());
2672 
2673     // We can see ambiguity here if the allocation function is found in
2674     // multiple base classes.
2675     if (R.isAmbiguous())
2676       return true;
2677 
2678     //   If this lookup fails to find the name, or if the allocated type is not
2679     //   a class type, the allocation function's name is looked up in the
2680     //   global scope.
2681     if (R.empty()) {
2682       if (NewScope == AFS_Class)
2683         return true;
2684 
2685       LookupQualifiedName(R, Context.getTranslationUnitDecl());
2686     }
2687 
2688     if (getLangOpts().OpenCLCPlusPlus && R.empty()) {
2689       if (PlaceArgs.empty()) {
2690         Diag(StartLoc, diag::err_openclcxx_not_supported) << "default new";
2691       } else {
2692         Diag(StartLoc, diag::err_openclcxx_placement_new);
2693       }
2694       return true;
2695     }
2696 
2697     assert(!R.empty() && "implicitly declared allocation functions not found");
2698     assert(!R.isAmbiguous() && "global allocation functions are ambiguous");
2699 
2700     // We do our own custom access checks below.
2701     R.suppressDiagnostics();
2702 
2703     if (resolveAllocationOverload(*this, R, Range, AllocArgs, PassAlignment,
2704                                   OperatorNew, /*Candidates=*/nullptr,
2705                                   /*AlignArg=*/nullptr, Diagnose))
2706       return true;
2707   }
2708 
2709   // We don't need an operator delete if we're running under -fno-exceptions.
2710   if (!getLangOpts().Exceptions) {
2711     OperatorDelete = nullptr;
2712     return false;
2713   }
2714 
2715   // Note, the name of OperatorNew might have been changed from array to
2716   // non-array by resolveAllocationOverload.
2717   DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
2718       OperatorNew->getDeclName().getCXXOverloadedOperator() == OO_Array_New
2719           ? OO_Array_Delete
2720           : OO_Delete);
2721 
2722   // C++ [expr.new]p19:
2723   //
2724   //   If the new-expression begins with a unary :: operator, the
2725   //   deallocation function's name is looked up in the global
2726   //   scope. Otherwise, if the allocated type is a class type T or an
2727   //   array thereof, the deallocation function's name is looked up in
2728   //   the scope of T. If this lookup fails to find the name, or if
2729   //   the allocated type is not a class type or array thereof, the
2730   //   deallocation function's name is looked up in the global scope.
2731   LookupResult FoundDelete(*this, DeleteName, StartLoc, LookupOrdinaryName);
2732   if (AllocElemType->isRecordType() && DeleteScope != AFS_Global) {
2733     auto *RD =
2734         cast<CXXRecordDecl>(AllocElemType->castAs<RecordType>()->getDecl());
2735     LookupQualifiedName(FoundDelete, RD);
2736   }
2737   if (FoundDelete.isAmbiguous())
2738     return true; // FIXME: clean up expressions?
2739 
2740   // Filter out any destroying operator deletes. We can't possibly call such a
2741   // function in this context, because we're handling the case where the object
2742   // was not successfully constructed.
2743   // FIXME: This is not covered by the language rules yet.
2744   {
2745     LookupResult::Filter Filter = FoundDelete.makeFilter();
2746     while (Filter.hasNext()) {
2747       auto *FD = dyn_cast<FunctionDecl>(Filter.next()->getUnderlyingDecl());
2748       if (FD && FD->isDestroyingOperatorDelete())
2749         Filter.erase();
2750     }
2751     Filter.done();
2752   }
2753 
2754   bool FoundGlobalDelete = FoundDelete.empty();
2755   if (FoundDelete.empty()) {
2756     FoundDelete.clear(LookupOrdinaryName);
2757 
2758     if (DeleteScope == AFS_Class)
2759       return true;
2760 
2761     DeclareGlobalNewDelete();
2762     LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl());
2763   }
2764 
2765   FoundDelete.suppressDiagnostics();
2766 
2767   SmallVector<std::pair<DeclAccessPair,FunctionDecl*>, 2> Matches;
2768 
2769   // Whether we're looking for a placement operator delete is dictated
2770   // by whether we selected a placement operator new, not by whether
2771   // we had explicit placement arguments.  This matters for things like
2772   //   struct A { void *operator new(size_t, int = 0); ... };
2773   //   A *a = new A()
2774   //
2775   // We don't have any definition for what a "placement allocation function"
2776   // is, but we assume it's any allocation function whose
2777   // parameter-declaration-clause is anything other than (size_t).
2778   //
2779   // FIXME: Should (size_t, std::align_val_t) also be considered non-placement?
2780   // This affects whether an exception from the constructor of an overaligned
2781   // type uses the sized or non-sized form of aligned operator delete.
2782   bool isPlacementNew = !PlaceArgs.empty() || OperatorNew->param_size() != 1 ||
2783                         OperatorNew->isVariadic();
2784 
2785   if (isPlacementNew) {
2786     // C++ [expr.new]p20:
2787     //   A declaration of a placement deallocation function matches the
2788     //   declaration of a placement allocation function if it has the
2789     //   same number of parameters and, after parameter transformations
2790     //   (8.3.5), all parameter types except the first are
2791     //   identical. [...]
2792     //
2793     // To perform this comparison, we compute the function type that
2794     // the deallocation function should have, and use that type both
2795     // for template argument deduction and for comparison purposes.
2796     QualType ExpectedFunctionType;
2797     {
2798       auto *Proto = OperatorNew->getType()->castAs<FunctionProtoType>();
2799 
2800       SmallVector<QualType, 4> ArgTypes;
2801       ArgTypes.push_back(Context.VoidPtrTy);
2802       for (unsigned I = 1, N = Proto->getNumParams(); I < N; ++I)
2803         ArgTypes.push_back(Proto->getParamType(I));
2804 
2805       FunctionProtoType::ExtProtoInfo EPI;
2806       // FIXME: This is not part of the standard's rule.
2807       EPI.Variadic = Proto->isVariadic();
2808 
2809       ExpectedFunctionType
2810         = Context.getFunctionType(Context.VoidTy, ArgTypes, EPI);
2811     }
2812 
2813     for (LookupResult::iterator D = FoundDelete.begin(),
2814                              DEnd = FoundDelete.end();
2815          D != DEnd; ++D) {
2816       FunctionDecl *Fn = nullptr;
2817       if (FunctionTemplateDecl *FnTmpl =
2818               dyn_cast<FunctionTemplateDecl>((*D)->getUnderlyingDecl())) {
2819         // Perform template argument deduction to try to match the
2820         // expected function type.
2821         TemplateDeductionInfo Info(StartLoc);
2822         if (DeduceTemplateArguments(FnTmpl, nullptr, ExpectedFunctionType, Fn,
2823                                     Info))
2824           continue;
2825       } else
2826         Fn = cast<FunctionDecl>((*D)->getUnderlyingDecl());
2827 
2828       if (Context.hasSameType(adjustCCAndNoReturn(Fn->getType(),
2829                                                   ExpectedFunctionType,
2830                                                   /*AdjustExcpetionSpec*/true),
2831                               ExpectedFunctionType))
2832         Matches.push_back(std::make_pair(D.getPair(), Fn));
2833     }
2834 
2835     if (getLangOpts().CUDA)
2836       EraseUnwantedCUDAMatches(getCurFunctionDecl(/*AllowLambda=*/true),
2837                                Matches);
2838   } else {
2839     // C++1y [expr.new]p22:
2840     //   For a non-placement allocation function, the normal deallocation
2841     //   function lookup is used
2842     //
2843     // Per [expr.delete]p10, this lookup prefers a member operator delete
2844     // without a size_t argument, but prefers a non-member operator delete
2845     // with a size_t where possible (which it always is in this case).
2846     llvm::SmallVector<UsualDeallocFnInfo, 4> BestDeallocFns;
2847     UsualDeallocFnInfo Selected = resolveDeallocationOverload(
2848         *this, FoundDelete, /*WantSize*/ FoundGlobalDelete,
2849         /*WantAlign*/ hasNewExtendedAlignment(*this, AllocElemType),
2850         &BestDeallocFns);
2851     if (Selected)
2852       Matches.push_back(std::make_pair(Selected.Found, Selected.FD));
2853     else {
2854       // If we failed to select an operator, all remaining functions are viable
2855       // but ambiguous.
2856       for (auto Fn : BestDeallocFns)
2857         Matches.push_back(std::make_pair(Fn.Found, Fn.FD));
2858     }
2859   }
2860 
2861   // C++ [expr.new]p20:
2862   //   [...] If the lookup finds a single matching deallocation
2863   //   function, that function will be called; otherwise, no
2864   //   deallocation function will be called.
2865   if (Matches.size() == 1) {
2866     OperatorDelete = Matches[0].second;
2867 
2868     // C++1z [expr.new]p23:
2869     //   If the lookup finds a usual deallocation function (3.7.4.2)
2870     //   with a parameter of type std::size_t and that function, considered
2871     //   as a placement deallocation function, would have been
2872     //   selected as a match for the allocation function, the program
2873     //   is ill-formed.
2874     if (getLangOpts().CPlusPlus11 && isPlacementNew &&
2875         isNonPlacementDeallocationFunction(*this, OperatorDelete)) {
2876       UsualDeallocFnInfo Info(*this,
2877                               DeclAccessPair::make(OperatorDelete, AS_public));
2878       // Core issue, per mail to core reflector, 2016-10-09:
2879       //   If this is a member operator delete, and there is a corresponding
2880       //   non-sized member operator delete, this isn't /really/ a sized
2881       //   deallocation function, it just happens to have a size_t parameter.
2882       bool IsSizedDelete = Info.HasSizeT;
2883       if (IsSizedDelete && !FoundGlobalDelete) {
2884         auto NonSizedDelete =
2885             resolveDeallocationOverload(*this, FoundDelete, /*WantSize*/false,
2886                                         /*WantAlign*/Info.HasAlignValT);
2887         if (NonSizedDelete && !NonSizedDelete.HasSizeT &&
2888             NonSizedDelete.HasAlignValT == Info.HasAlignValT)
2889           IsSizedDelete = false;
2890       }
2891 
2892       if (IsSizedDelete) {
2893         SourceRange R = PlaceArgs.empty()
2894                             ? SourceRange()
2895                             : SourceRange(PlaceArgs.front()->getBeginLoc(),
2896                                           PlaceArgs.back()->getEndLoc());
2897         Diag(StartLoc, diag::err_placement_new_non_placement_delete) << R;
2898         if (!OperatorDelete->isImplicit())
2899           Diag(OperatorDelete->getLocation(), diag::note_previous_decl)
2900               << DeleteName;
2901       }
2902     }
2903 
2904     CheckAllocationAccess(StartLoc, Range, FoundDelete.getNamingClass(),
2905                           Matches[0].first);
2906   } else if (!Matches.empty()) {
2907     // We found multiple suitable operators. Per [expr.new]p20, that means we
2908     // call no 'operator delete' function, but we should at least warn the user.
2909     // FIXME: Suppress this warning if the construction cannot throw.
2910     Diag(StartLoc, diag::warn_ambiguous_suitable_delete_function_found)
2911       << DeleteName << AllocElemType;
2912 
2913     for (auto &Match : Matches)
2914       Diag(Match.second->getLocation(),
2915            diag::note_member_declared_here) << DeleteName;
2916   }
2917 
2918   return false;
2919 }
2920 
2921 /// DeclareGlobalNewDelete - Declare the global forms of operator new and
2922 /// delete. These are:
2923 /// @code
2924 ///   // C++03:
2925 ///   void* operator new(std::size_t) throw(std::bad_alloc);
2926 ///   void* operator new[](std::size_t) throw(std::bad_alloc);
2927 ///   void operator delete(void *) throw();
2928 ///   void operator delete[](void *) throw();
2929 ///   // C++11:
2930 ///   void* operator new(std::size_t);
2931 ///   void* operator new[](std::size_t);
2932 ///   void operator delete(void *) noexcept;
2933 ///   void operator delete[](void *) noexcept;
2934 ///   // C++1y:
2935 ///   void* operator new(std::size_t);
2936 ///   void* operator new[](std::size_t);
2937 ///   void operator delete(void *) noexcept;
2938 ///   void operator delete[](void *) noexcept;
2939 ///   void operator delete(void *, std::size_t) noexcept;
2940 ///   void operator delete[](void *, std::size_t) noexcept;
2941 /// @endcode
2942 /// Note that the placement and nothrow forms of new are *not* implicitly
2943 /// declared. Their use requires including \<new\>.
2944 void Sema::DeclareGlobalNewDelete() {
2945   if (GlobalNewDeleteDeclared)
2946     return;
2947 
2948   // The implicitly declared new and delete operators
2949   // are not supported in OpenCL.
2950   if (getLangOpts().OpenCLCPlusPlus)
2951     return;
2952 
2953   // C++ [basic.std.dynamic]p2:
2954   //   [...] The following allocation and deallocation functions (18.4) are
2955   //   implicitly declared in global scope in each translation unit of a
2956   //   program
2957   //
2958   //     C++03:
2959   //     void* operator new(std::size_t) throw(std::bad_alloc);
2960   //     void* operator new[](std::size_t) throw(std::bad_alloc);
2961   //     void  operator delete(void*) throw();
2962   //     void  operator delete[](void*) throw();
2963   //     C++11:
2964   //     void* operator new(std::size_t);
2965   //     void* operator new[](std::size_t);
2966   //     void  operator delete(void*) noexcept;
2967   //     void  operator delete[](void*) noexcept;
2968   //     C++1y:
2969   //     void* operator new(std::size_t);
2970   //     void* operator new[](std::size_t);
2971   //     void  operator delete(void*) noexcept;
2972   //     void  operator delete[](void*) noexcept;
2973   //     void  operator delete(void*, std::size_t) noexcept;
2974   //     void  operator delete[](void*, std::size_t) noexcept;
2975   //
2976   //   These implicit declarations introduce only the function names operator
2977   //   new, operator new[], operator delete, operator delete[].
2978   //
2979   // Here, we need to refer to std::bad_alloc, so we will implicitly declare
2980   // "std" or "bad_alloc" as necessary to form the exception specification.
2981   // However, we do not make these implicit declarations visible to name
2982   // lookup.
2983   if (!StdBadAlloc && !getLangOpts().CPlusPlus11) {
2984     // The "std::bad_alloc" class has not yet been declared, so build it
2985     // implicitly.
2986     StdBadAlloc = CXXRecordDecl::Create(Context, TTK_Class,
2987                                         getOrCreateStdNamespace(),
2988                                         SourceLocation(), SourceLocation(),
2989                                       &PP.getIdentifierTable().get("bad_alloc"),
2990                                         nullptr);
2991     getStdBadAlloc()->setImplicit(true);
2992   }
2993   if (!StdAlignValT && getLangOpts().AlignedAllocation) {
2994     // The "std::align_val_t" enum class has not yet been declared, so build it
2995     // implicitly.
2996     auto *AlignValT = EnumDecl::Create(
2997         Context, getOrCreateStdNamespace(), SourceLocation(), SourceLocation(),
2998         &PP.getIdentifierTable().get("align_val_t"), nullptr, true, true, true);
2999     AlignValT->setIntegerType(Context.getSizeType());
3000     AlignValT->setPromotionType(Context.getSizeType());
3001     AlignValT->setImplicit(true);
3002     StdAlignValT = AlignValT;
3003   }
3004 
3005   GlobalNewDeleteDeclared = true;
3006 
3007   QualType VoidPtr = Context.getPointerType(Context.VoidTy);
3008   QualType SizeT = Context.getSizeType();
3009 
3010   auto DeclareGlobalAllocationFunctions = [&](OverloadedOperatorKind Kind,
3011                                               QualType Return, QualType Param) {
3012     llvm::SmallVector<QualType, 3> Params;
3013     Params.push_back(Param);
3014 
3015     // Create up to four variants of the function (sized/aligned).
3016     bool HasSizedVariant = getLangOpts().SizedDeallocation &&
3017                            (Kind == OO_Delete || Kind == OO_Array_Delete);
3018     bool HasAlignedVariant = getLangOpts().AlignedAllocation;
3019 
3020     int NumSizeVariants = (HasSizedVariant ? 2 : 1);
3021     int NumAlignVariants = (HasAlignedVariant ? 2 : 1);
3022     for (int Sized = 0; Sized < NumSizeVariants; ++Sized) {
3023       if (Sized)
3024         Params.push_back(SizeT);
3025 
3026       for (int Aligned = 0; Aligned < NumAlignVariants; ++Aligned) {
3027         if (Aligned)
3028           Params.push_back(Context.getTypeDeclType(getStdAlignValT()));
3029 
3030         DeclareGlobalAllocationFunction(
3031             Context.DeclarationNames.getCXXOperatorName(Kind), Return, Params);
3032 
3033         if (Aligned)
3034           Params.pop_back();
3035       }
3036     }
3037   };
3038 
3039   DeclareGlobalAllocationFunctions(OO_New, VoidPtr, SizeT);
3040   DeclareGlobalAllocationFunctions(OO_Array_New, VoidPtr, SizeT);
3041   DeclareGlobalAllocationFunctions(OO_Delete, Context.VoidTy, VoidPtr);
3042   DeclareGlobalAllocationFunctions(OO_Array_Delete, Context.VoidTy, VoidPtr);
3043 }
3044 
3045 /// DeclareGlobalAllocationFunction - Declares a single implicit global
3046 /// allocation function if it doesn't already exist.
3047 void Sema::DeclareGlobalAllocationFunction(DeclarationName Name,
3048                                            QualType Return,
3049                                            ArrayRef<QualType> Params) {
3050   DeclContext *GlobalCtx = Context.getTranslationUnitDecl();
3051 
3052   // Check if this function is already declared.
3053   DeclContext::lookup_result R = GlobalCtx->lookup(Name);
3054   for (DeclContext::lookup_iterator Alloc = R.begin(), AllocEnd = R.end();
3055        Alloc != AllocEnd; ++Alloc) {
3056     // Only look at non-template functions, as it is the predefined,
3057     // non-templated allocation function we are trying to declare here.
3058     if (FunctionDecl *Func = dyn_cast<FunctionDecl>(*Alloc)) {
3059       if (Func->getNumParams() == Params.size()) {
3060         llvm::SmallVector<QualType, 3> FuncParams;
3061         for (auto *P : Func->parameters())
3062           FuncParams.push_back(
3063               Context.getCanonicalType(P->getType().getUnqualifiedType()));
3064         if (llvm::makeArrayRef(FuncParams) == Params) {
3065           // Make the function visible to name lookup, even if we found it in
3066           // an unimported module. It either is an implicitly-declared global
3067           // allocation function, or is suppressing that function.
3068           Func->setVisibleDespiteOwningModule();
3069           return;
3070         }
3071       }
3072     }
3073   }
3074 
3075   FunctionProtoType::ExtProtoInfo EPI(Context.getDefaultCallingConvention(
3076       /*IsVariadic=*/false, /*IsCXXMethod=*/false, /*IsBuiltin=*/true));
3077 
3078   QualType BadAllocType;
3079   bool HasBadAllocExceptionSpec
3080     = (Name.getCXXOverloadedOperator() == OO_New ||
3081        Name.getCXXOverloadedOperator() == OO_Array_New);
3082   if (HasBadAllocExceptionSpec) {
3083     if (!getLangOpts().CPlusPlus11) {
3084       BadAllocType = Context.getTypeDeclType(getStdBadAlloc());
3085       assert(StdBadAlloc && "Must have std::bad_alloc declared");
3086       EPI.ExceptionSpec.Type = EST_Dynamic;
3087       EPI.ExceptionSpec.Exceptions = llvm::makeArrayRef(BadAllocType);
3088     }
3089     if (getLangOpts().NewInfallible) {
3090       EPI.ExceptionSpec.Type = EST_DynamicNone;
3091     }
3092   } else {
3093     EPI.ExceptionSpec =
3094         getLangOpts().CPlusPlus11 ? EST_BasicNoexcept : EST_DynamicNone;
3095   }
3096 
3097   auto CreateAllocationFunctionDecl = [&](Attr *ExtraAttr) {
3098     QualType FnType = Context.getFunctionType(Return, Params, EPI);
3099     FunctionDecl *Alloc = FunctionDecl::Create(
3100         Context, GlobalCtx, SourceLocation(), SourceLocation(), Name, FnType,
3101         /*TInfo=*/nullptr, SC_None, getCurFPFeatures().isFPConstrained(), false,
3102         true);
3103     Alloc->setImplicit();
3104     // Global allocation functions should always be visible.
3105     Alloc->setVisibleDespiteOwningModule();
3106 
3107     if (HasBadAllocExceptionSpec && getLangOpts().NewInfallible)
3108       Alloc->addAttr(
3109           ReturnsNonNullAttr::CreateImplicit(Context, Alloc->getLocation()));
3110 
3111     Alloc->addAttr(VisibilityAttr::CreateImplicit(
3112         Context, LangOpts.GlobalAllocationFunctionVisibilityHidden
3113                      ? VisibilityAttr::Hidden
3114                      : VisibilityAttr::Default));
3115 
3116     llvm::SmallVector<ParmVarDecl *, 3> ParamDecls;
3117     for (QualType T : Params) {
3118       ParamDecls.push_back(ParmVarDecl::Create(
3119           Context, Alloc, SourceLocation(), SourceLocation(), nullptr, T,
3120           /*TInfo=*/nullptr, SC_None, nullptr));
3121       ParamDecls.back()->setImplicit();
3122     }
3123     Alloc->setParams(ParamDecls);
3124     if (ExtraAttr)
3125       Alloc->addAttr(ExtraAttr);
3126     AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction(Alloc);
3127     Context.getTranslationUnitDecl()->addDecl(Alloc);
3128     IdResolver.tryAddTopLevelDecl(Alloc, Name);
3129   };
3130 
3131   if (!LangOpts.CUDA)
3132     CreateAllocationFunctionDecl(nullptr);
3133   else {
3134     // Host and device get their own declaration so each can be
3135     // defined or re-declared independently.
3136     CreateAllocationFunctionDecl(CUDAHostAttr::CreateImplicit(Context));
3137     CreateAllocationFunctionDecl(CUDADeviceAttr::CreateImplicit(Context));
3138   }
3139 }
3140 
3141 FunctionDecl *Sema::FindUsualDeallocationFunction(SourceLocation StartLoc,
3142                                                   bool CanProvideSize,
3143                                                   bool Overaligned,
3144                                                   DeclarationName Name) {
3145   DeclareGlobalNewDelete();
3146 
3147   LookupResult FoundDelete(*this, Name, StartLoc, LookupOrdinaryName);
3148   LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl());
3149 
3150   // FIXME: It's possible for this to result in ambiguity, through a
3151   // user-declared variadic operator delete or the enable_if attribute. We
3152   // should probably not consider those cases to be usual deallocation
3153   // functions. But for now we just make an arbitrary choice in that case.
3154   auto Result = resolveDeallocationOverload(*this, FoundDelete, CanProvideSize,
3155                                             Overaligned);
3156   assert(Result.FD && "operator delete missing from global scope?");
3157   return Result.FD;
3158 }
3159 
3160 FunctionDecl *Sema::FindDeallocationFunctionForDestructor(SourceLocation Loc,
3161                                                           CXXRecordDecl *RD) {
3162   DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Delete);
3163 
3164   FunctionDecl *OperatorDelete = nullptr;
3165   if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
3166     return nullptr;
3167   if (OperatorDelete)
3168     return OperatorDelete;
3169 
3170   // If there's no class-specific operator delete, look up the global
3171   // non-array delete.
3172   return FindUsualDeallocationFunction(
3173       Loc, true, hasNewExtendedAlignment(*this, Context.getRecordType(RD)),
3174       Name);
3175 }
3176 
3177 bool Sema::FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD,
3178                                     DeclarationName Name,
3179                                     FunctionDecl *&Operator, bool Diagnose) {
3180   LookupResult Found(*this, Name, StartLoc, LookupOrdinaryName);
3181   // Try to find operator delete/operator delete[] in class scope.
3182   LookupQualifiedName(Found, RD);
3183 
3184   if (Found.isAmbiguous())
3185     return true;
3186 
3187   Found.suppressDiagnostics();
3188 
3189   bool Overaligned = hasNewExtendedAlignment(*this, Context.getRecordType(RD));
3190 
3191   // C++17 [expr.delete]p10:
3192   //   If the deallocation functions have class scope, the one without a
3193   //   parameter of type std::size_t is selected.
3194   llvm::SmallVector<UsualDeallocFnInfo, 4> Matches;
3195   resolveDeallocationOverload(*this, Found, /*WantSize*/ false,
3196                               /*WantAlign*/ Overaligned, &Matches);
3197 
3198   // If we could find an overload, use it.
3199   if (Matches.size() == 1) {
3200     Operator = cast<CXXMethodDecl>(Matches[0].FD);
3201 
3202     // FIXME: DiagnoseUseOfDecl?
3203     if (Operator->isDeleted()) {
3204       if (Diagnose) {
3205         Diag(StartLoc, diag::err_deleted_function_use);
3206         NoteDeletedFunction(Operator);
3207       }
3208       return true;
3209     }
3210 
3211     if (CheckAllocationAccess(StartLoc, SourceRange(), Found.getNamingClass(),
3212                               Matches[0].Found, Diagnose) == AR_inaccessible)
3213       return true;
3214 
3215     return false;
3216   }
3217 
3218   // We found multiple suitable operators; complain about the ambiguity.
3219   // FIXME: The standard doesn't say to do this; it appears that the intent
3220   // is that this should never happen.
3221   if (!Matches.empty()) {
3222     if (Diagnose) {
3223       Diag(StartLoc, diag::err_ambiguous_suitable_delete_member_function_found)
3224         << Name << RD;
3225       for (auto &Match : Matches)
3226         Diag(Match.FD->getLocation(), diag::note_member_declared_here) << Name;
3227     }
3228     return true;
3229   }
3230 
3231   // We did find operator delete/operator delete[] declarations, but
3232   // none of them were suitable.
3233   if (!Found.empty()) {
3234     if (Diagnose) {
3235       Diag(StartLoc, diag::err_no_suitable_delete_member_function_found)
3236         << Name << RD;
3237 
3238       for (NamedDecl *D : Found)
3239         Diag(D->getUnderlyingDecl()->getLocation(),
3240              diag::note_member_declared_here) << Name;
3241     }
3242     return true;
3243   }
3244 
3245   Operator = nullptr;
3246   return false;
3247 }
3248 
3249 namespace {
3250 /// Checks whether delete-expression, and new-expression used for
3251 ///  initializing deletee have the same array form.
3252 class MismatchingNewDeleteDetector {
3253 public:
3254   enum MismatchResult {
3255     /// Indicates that there is no mismatch or a mismatch cannot be proven.
3256     NoMismatch,
3257     /// Indicates that variable is initialized with mismatching form of \a new.
3258     VarInitMismatches,
3259     /// Indicates that member is initialized with mismatching form of \a new.
3260     MemberInitMismatches,
3261     /// Indicates that 1 or more constructors' definitions could not been
3262     /// analyzed, and they will be checked again at the end of translation unit.
3263     AnalyzeLater
3264   };
3265 
3266   /// \param EndOfTU True, if this is the final analysis at the end of
3267   /// translation unit. False, if this is the initial analysis at the point
3268   /// delete-expression was encountered.
3269   explicit MismatchingNewDeleteDetector(bool EndOfTU)
3270       : Field(nullptr), IsArrayForm(false), EndOfTU(EndOfTU),
3271         HasUndefinedConstructors(false) {}
3272 
3273   /// Checks whether pointee of a delete-expression is initialized with
3274   /// matching form of new-expression.
3275   ///
3276   /// If return value is \c VarInitMismatches or \c MemberInitMismatches at the
3277   /// point where delete-expression is encountered, then a warning will be
3278   /// issued immediately. If return value is \c AnalyzeLater at the point where
3279   /// delete-expression is seen, then member will be analyzed at the end of
3280   /// translation unit. \c AnalyzeLater is returned iff at least one constructor
3281   /// couldn't be analyzed. If at least one constructor initializes the member
3282   /// with matching type of new, the return value is \c NoMismatch.
3283   MismatchResult analyzeDeleteExpr(const CXXDeleteExpr *DE);
3284   /// Analyzes a class member.
3285   /// \param Field Class member to analyze.
3286   /// \param DeleteWasArrayForm Array form-ness of the delete-expression used
3287   /// for deleting the \p Field.
3288   MismatchResult analyzeField(FieldDecl *Field, bool DeleteWasArrayForm);
3289   FieldDecl *Field;
3290   /// List of mismatching new-expressions used for initialization of the pointee
3291   llvm::SmallVector<const CXXNewExpr *, 4> NewExprs;
3292   /// Indicates whether delete-expression was in array form.
3293   bool IsArrayForm;
3294 
3295 private:
3296   const bool EndOfTU;
3297   /// Indicates that there is at least one constructor without body.
3298   bool HasUndefinedConstructors;
3299   /// Returns \c CXXNewExpr from given initialization expression.
3300   /// \param E Expression used for initializing pointee in delete-expression.
3301   /// E can be a single-element \c InitListExpr consisting of new-expression.
3302   const CXXNewExpr *getNewExprFromInitListOrExpr(const Expr *E);
3303   /// Returns whether member is initialized with mismatching form of
3304   /// \c new either by the member initializer or in-class initialization.
3305   ///
3306   /// If bodies of all constructors are not visible at the end of translation
3307   /// unit or at least one constructor initializes member with the matching
3308   /// form of \c new, mismatch cannot be proven, and this function will return
3309   /// \c NoMismatch.
3310   MismatchResult analyzeMemberExpr(const MemberExpr *ME);
3311   /// Returns whether variable is initialized with mismatching form of
3312   /// \c new.
3313   ///
3314   /// If variable is initialized with matching form of \c new or variable is not
3315   /// initialized with a \c new expression, this function will return true.
3316   /// If variable is initialized with mismatching form of \c new, returns false.
3317   /// \param D Variable to analyze.
3318   bool hasMatchingVarInit(const DeclRefExpr *D);
3319   /// Checks whether the constructor initializes pointee with mismatching
3320   /// form of \c new.
3321   ///
3322   /// Returns true, if member is initialized with matching form of \c new in
3323   /// member initializer list. Returns false, if member is initialized with the
3324   /// matching form of \c new in this constructor's initializer or given
3325   /// constructor isn't defined at the point where delete-expression is seen, or
3326   /// member isn't initialized by the constructor.
3327   bool hasMatchingNewInCtor(const CXXConstructorDecl *CD);
3328   /// Checks whether member is initialized with matching form of
3329   /// \c new in member initializer list.
3330   bool hasMatchingNewInCtorInit(const CXXCtorInitializer *CI);
3331   /// Checks whether member is initialized with mismatching form of \c new by
3332   /// in-class initializer.
3333   MismatchResult analyzeInClassInitializer();
3334 };
3335 }
3336 
3337 MismatchingNewDeleteDetector::MismatchResult
3338 MismatchingNewDeleteDetector::analyzeDeleteExpr(const CXXDeleteExpr *DE) {
3339   NewExprs.clear();
3340   assert(DE && "Expected delete-expression");
3341   IsArrayForm = DE->isArrayForm();
3342   const Expr *E = DE->getArgument()->IgnoreParenImpCasts();
3343   if (const MemberExpr *ME = dyn_cast<const MemberExpr>(E)) {
3344     return analyzeMemberExpr(ME);
3345   } else if (const DeclRefExpr *D = dyn_cast<const DeclRefExpr>(E)) {
3346     if (!hasMatchingVarInit(D))
3347       return VarInitMismatches;
3348   }
3349   return NoMismatch;
3350 }
3351 
3352 const CXXNewExpr *
3353 MismatchingNewDeleteDetector::getNewExprFromInitListOrExpr(const Expr *E) {
3354   assert(E != nullptr && "Expected a valid initializer expression");
3355   E = E->IgnoreParenImpCasts();
3356   if (const InitListExpr *ILE = dyn_cast<const InitListExpr>(E)) {
3357     if (ILE->getNumInits() == 1)
3358       E = dyn_cast<const CXXNewExpr>(ILE->getInit(0)->IgnoreParenImpCasts());
3359   }
3360 
3361   return dyn_cast_or_null<const CXXNewExpr>(E);
3362 }
3363 
3364 bool MismatchingNewDeleteDetector::hasMatchingNewInCtorInit(
3365     const CXXCtorInitializer *CI) {
3366   const CXXNewExpr *NE = nullptr;
3367   if (Field == CI->getMember() &&
3368       (NE = getNewExprFromInitListOrExpr(CI->getInit()))) {
3369     if (NE->isArray() == IsArrayForm)
3370       return true;
3371     else
3372       NewExprs.push_back(NE);
3373   }
3374   return false;
3375 }
3376 
3377 bool MismatchingNewDeleteDetector::hasMatchingNewInCtor(
3378     const CXXConstructorDecl *CD) {
3379   if (CD->isImplicit())
3380     return false;
3381   const FunctionDecl *Definition = CD;
3382   if (!CD->isThisDeclarationADefinition() && !CD->isDefined(Definition)) {
3383     HasUndefinedConstructors = true;
3384     return EndOfTU;
3385   }
3386   for (const auto *CI : cast<const CXXConstructorDecl>(Definition)->inits()) {
3387     if (hasMatchingNewInCtorInit(CI))
3388       return true;
3389   }
3390   return false;
3391 }
3392 
3393 MismatchingNewDeleteDetector::MismatchResult
3394 MismatchingNewDeleteDetector::analyzeInClassInitializer() {
3395   assert(Field != nullptr && "This should be called only for members");
3396   const Expr *InitExpr = Field->getInClassInitializer();
3397   if (!InitExpr)
3398     return EndOfTU ? NoMismatch : AnalyzeLater;
3399   if (const CXXNewExpr *NE = getNewExprFromInitListOrExpr(InitExpr)) {
3400     if (NE->isArray() != IsArrayForm) {
3401       NewExprs.push_back(NE);
3402       return MemberInitMismatches;
3403     }
3404   }
3405   return NoMismatch;
3406 }
3407 
3408 MismatchingNewDeleteDetector::MismatchResult
3409 MismatchingNewDeleteDetector::analyzeField(FieldDecl *Field,
3410                                            bool DeleteWasArrayForm) {
3411   assert(Field != nullptr && "Analysis requires a valid class member.");
3412   this->Field = Field;
3413   IsArrayForm = DeleteWasArrayForm;
3414   const CXXRecordDecl *RD = cast<const CXXRecordDecl>(Field->getParent());
3415   for (const auto *CD : RD->ctors()) {
3416     if (hasMatchingNewInCtor(CD))
3417       return NoMismatch;
3418   }
3419   if (HasUndefinedConstructors)
3420     return EndOfTU ? NoMismatch : AnalyzeLater;
3421   if (!NewExprs.empty())
3422     return MemberInitMismatches;
3423   return Field->hasInClassInitializer() ? analyzeInClassInitializer()
3424                                         : NoMismatch;
3425 }
3426 
3427 MismatchingNewDeleteDetector::MismatchResult
3428 MismatchingNewDeleteDetector::analyzeMemberExpr(const MemberExpr *ME) {
3429   assert(ME != nullptr && "Expected a member expression");
3430   if (FieldDecl *F = dyn_cast<FieldDecl>(ME->getMemberDecl()))
3431     return analyzeField(F, IsArrayForm);
3432   return NoMismatch;
3433 }
3434 
3435 bool MismatchingNewDeleteDetector::hasMatchingVarInit(const DeclRefExpr *D) {
3436   const CXXNewExpr *NE = nullptr;
3437   if (const VarDecl *VD = dyn_cast<const VarDecl>(D->getDecl())) {
3438     if (VD->hasInit() && (NE = getNewExprFromInitListOrExpr(VD->getInit())) &&
3439         NE->isArray() != IsArrayForm) {
3440       NewExprs.push_back(NE);
3441     }
3442   }
3443   return NewExprs.empty();
3444 }
3445 
3446 static void
3447 DiagnoseMismatchedNewDelete(Sema &SemaRef, SourceLocation DeleteLoc,
3448                             const MismatchingNewDeleteDetector &Detector) {
3449   SourceLocation EndOfDelete = SemaRef.getLocForEndOfToken(DeleteLoc);
3450   FixItHint H;
3451   if (!Detector.IsArrayForm)
3452     H = FixItHint::CreateInsertion(EndOfDelete, "[]");
3453   else {
3454     SourceLocation RSquare = Lexer::findLocationAfterToken(
3455         DeleteLoc, tok::l_square, SemaRef.getSourceManager(),
3456         SemaRef.getLangOpts(), true);
3457     if (RSquare.isValid())
3458       H = FixItHint::CreateRemoval(SourceRange(EndOfDelete, RSquare));
3459   }
3460   SemaRef.Diag(DeleteLoc, diag::warn_mismatched_delete_new)
3461       << Detector.IsArrayForm << H;
3462 
3463   for (const auto *NE : Detector.NewExprs)
3464     SemaRef.Diag(NE->getExprLoc(), diag::note_allocated_here)
3465         << Detector.IsArrayForm;
3466 }
3467 
3468 void Sema::AnalyzeDeleteExprMismatch(const CXXDeleteExpr *DE) {
3469   if (Diags.isIgnored(diag::warn_mismatched_delete_new, SourceLocation()))
3470     return;
3471   MismatchingNewDeleteDetector Detector(/*EndOfTU=*/false);
3472   switch (Detector.analyzeDeleteExpr(DE)) {
3473   case MismatchingNewDeleteDetector::VarInitMismatches:
3474   case MismatchingNewDeleteDetector::MemberInitMismatches: {
3475     DiagnoseMismatchedNewDelete(*this, DE->getBeginLoc(), Detector);
3476     break;
3477   }
3478   case MismatchingNewDeleteDetector::AnalyzeLater: {
3479     DeleteExprs[Detector.Field].push_back(
3480         std::make_pair(DE->getBeginLoc(), DE->isArrayForm()));
3481     break;
3482   }
3483   case MismatchingNewDeleteDetector::NoMismatch:
3484     break;
3485   }
3486 }
3487 
3488 void Sema::AnalyzeDeleteExprMismatch(FieldDecl *Field, SourceLocation DeleteLoc,
3489                                      bool DeleteWasArrayForm) {
3490   MismatchingNewDeleteDetector Detector(/*EndOfTU=*/true);
3491   switch (Detector.analyzeField(Field, DeleteWasArrayForm)) {
3492   case MismatchingNewDeleteDetector::VarInitMismatches:
3493     llvm_unreachable("This analysis should have been done for class members.");
3494   case MismatchingNewDeleteDetector::AnalyzeLater:
3495     llvm_unreachable("Analysis cannot be postponed any point beyond end of "
3496                      "translation unit.");
3497   case MismatchingNewDeleteDetector::MemberInitMismatches:
3498     DiagnoseMismatchedNewDelete(*this, DeleteLoc, Detector);
3499     break;
3500   case MismatchingNewDeleteDetector::NoMismatch:
3501     break;
3502   }
3503 }
3504 
3505 /// ActOnCXXDelete - Parsed a C++ 'delete' expression (C++ 5.3.5), as in:
3506 /// @code ::delete ptr; @endcode
3507 /// or
3508 /// @code delete [] ptr; @endcode
3509 ExprResult
3510 Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal,
3511                      bool ArrayForm, Expr *ExE) {
3512   // C++ [expr.delete]p1:
3513   //   The operand shall have a pointer type, or a class type having a single
3514   //   non-explicit conversion function to a pointer type. The result has type
3515   //   void.
3516   //
3517   // DR599 amends "pointer type" to "pointer to object type" in both cases.
3518 
3519   ExprResult Ex = ExE;
3520   FunctionDecl *OperatorDelete = nullptr;
3521   bool ArrayFormAsWritten = ArrayForm;
3522   bool UsualArrayDeleteWantsSize = false;
3523 
3524   if (!Ex.get()->isTypeDependent()) {
3525     // Perform lvalue-to-rvalue cast, if needed.
3526     Ex = DefaultLvalueConversion(Ex.get());
3527     if (Ex.isInvalid())
3528       return ExprError();
3529 
3530     QualType Type = Ex.get()->getType();
3531 
3532     class DeleteConverter : public ContextualImplicitConverter {
3533     public:
3534       DeleteConverter() : ContextualImplicitConverter(false, true) {}
3535 
3536       bool match(QualType ConvType) override {
3537         // FIXME: If we have an operator T* and an operator void*, we must pick
3538         // the operator T*.
3539         if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>())
3540           if (ConvPtrType->getPointeeType()->isIncompleteOrObjectType())
3541             return true;
3542         return false;
3543       }
3544 
3545       SemaDiagnosticBuilder diagnoseNoMatch(Sema &S, SourceLocation Loc,
3546                                             QualType T) override {
3547         return S.Diag(Loc, diag::err_delete_operand) << T;
3548       }
3549 
3550       SemaDiagnosticBuilder diagnoseIncomplete(Sema &S, SourceLocation Loc,
3551                                                QualType T) override {
3552         return S.Diag(Loc, diag::err_delete_incomplete_class_type) << T;
3553       }
3554 
3555       SemaDiagnosticBuilder diagnoseExplicitConv(Sema &S, SourceLocation Loc,
3556                                                  QualType T,
3557                                                  QualType ConvTy) override {
3558         return S.Diag(Loc, diag::err_delete_explicit_conversion) << T << ConvTy;
3559       }
3560 
3561       SemaDiagnosticBuilder noteExplicitConv(Sema &S, CXXConversionDecl *Conv,
3562                                              QualType ConvTy) override {
3563         return S.Diag(Conv->getLocation(), diag::note_delete_conversion)
3564           << ConvTy;
3565       }
3566 
3567       SemaDiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc,
3568                                               QualType T) override {
3569         return S.Diag(Loc, diag::err_ambiguous_delete_operand) << T;
3570       }
3571 
3572       SemaDiagnosticBuilder noteAmbiguous(Sema &S, CXXConversionDecl *Conv,
3573                                           QualType ConvTy) override {
3574         return S.Diag(Conv->getLocation(), diag::note_delete_conversion)
3575           << ConvTy;
3576       }
3577 
3578       SemaDiagnosticBuilder diagnoseConversion(Sema &S, SourceLocation Loc,
3579                                                QualType T,
3580                                                QualType ConvTy) override {
3581         llvm_unreachable("conversion functions are permitted");
3582       }
3583     } Converter;
3584 
3585     Ex = PerformContextualImplicitConversion(StartLoc, Ex.get(), Converter);
3586     if (Ex.isInvalid())
3587       return ExprError();
3588     Type = Ex.get()->getType();
3589     if (!Converter.match(Type))
3590       // FIXME: PerformContextualImplicitConversion should return ExprError
3591       //        itself in this case.
3592       return ExprError();
3593 
3594     QualType Pointee = Type->castAs<PointerType>()->getPointeeType();
3595     QualType PointeeElem = Context.getBaseElementType(Pointee);
3596 
3597     if (Pointee.getAddressSpace() != LangAS::Default &&
3598         !getLangOpts().OpenCLCPlusPlus)
3599       return Diag(Ex.get()->getBeginLoc(),
3600                   diag::err_address_space_qualified_delete)
3601              << Pointee.getUnqualifiedType()
3602              << Pointee.getQualifiers().getAddressSpaceAttributePrintValue();
3603 
3604     CXXRecordDecl *PointeeRD = nullptr;
3605     if (Pointee->isVoidType() && !isSFINAEContext()) {
3606       // The C++ standard bans deleting a pointer to a non-object type, which
3607       // effectively bans deletion of "void*". However, most compilers support
3608       // this, so we treat it as a warning unless we're in a SFINAE context.
3609       Diag(StartLoc, diag::ext_delete_void_ptr_operand)
3610         << Type << Ex.get()->getSourceRange();
3611     } else if (Pointee->isFunctionType() || Pointee->isVoidType() ||
3612                Pointee->isSizelessType()) {
3613       return ExprError(Diag(StartLoc, diag::err_delete_operand)
3614         << Type << Ex.get()->getSourceRange());
3615     } else if (!Pointee->isDependentType()) {
3616       // FIXME: This can result in errors if the definition was imported from a
3617       // module but is hidden.
3618       if (!RequireCompleteType(StartLoc, Pointee,
3619                                diag::warn_delete_incomplete, Ex.get())) {
3620         if (const RecordType *RT = PointeeElem->getAs<RecordType>())
3621           PointeeRD = cast<CXXRecordDecl>(RT->getDecl());
3622       }
3623     }
3624 
3625     if (Pointee->isArrayType() && !ArrayForm) {
3626       Diag(StartLoc, diag::warn_delete_array_type)
3627           << Type << Ex.get()->getSourceRange()
3628           << FixItHint::CreateInsertion(getLocForEndOfToken(StartLoc), "[]");
3629       ArrayForm = true;
3630     }
3631 
3632     DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
3633                                       ArrayForm ? OO_Array_Delete : OO_Delete);
3634 
3635     if (PointeeRD) {
3636       if (!UseGlobal &&
3637           FindDeallocationFunction(StartLoc, PointeeRD, DeleteName,
3638                                    OperatorDelete))
3639         return ExprError();
3640 
3641       // If we're allocating an array of records, check whether the
3642       // usual operator delete[] has a size_t parameter.
3643       if (ArrayForm) {
3644         // If the user specifically asked to use the global allocator,
3645         // we'll need to do the lookup into the class.
3646         if (UseGlobal)
3647           UsualArrayDeleteWantsSize =
3648             doesUsualArrayDeleteWantSize(*this, StartLoc, PointeeElem);
3649 
3650         // Otherwise, the usual operator delete[] should be the
3651         // function we just found.
3652         else if (OperatorDelete && isa<CXXMethodDecl>(OperatorDelete))
3653           UsualArrayDeleteWantsSize =
3654             UsualDeallocFnInfo(*this,
3655                                DeclAccessPair::make(OperatorDelete, AS_public))
3656               .HasSizeT;
3657       }
3658 
3659       if (!PointeeRD->hasIrrelevantDestructor())
3660         if (CXXDestructorDecl *Dtor = LookupDestructor(PointeeRD)) {
3661           MarkFunctionReferenced(StartLoc,
3662                                     const_cast<CXXDestructorDecl*>(Dtor));
3663           if (DiagnoseUseOfDecl(Dtor, StartLoc))
3664             return ExprError();
3665         }
3666 
3667       CheckVirtualDtorCall(PointeeRD->getDestructor(), StartLoc,
3668                            /*IsDelete=*/true, /*CallCanBeVirtual=*/true,
3669                            /*WarnOnNonAbstractTypes=*/!ArrayForm,
3670                            SourceLocation());
3671     }
3672 
3673     if (!OperatorDelete) {
3674       if (getLangOpts().OpenCLCPlusPlus) {
3675         Diag(StartLoc, diag::err_openclcxx_not_supported) << "default delete";
3676         return ExprError();
3677       }
3678 
3679       bool IsComplete = isCompleteType(StartLoc, Pointee);
3680       bool CanProvideSize =
3681           IsComplete && (!ArrayForm || UsualArrayDeleteWantsSize ||
3682                          Pointee.isDestructedType());
3683       bool Overaligned = hasNewExtendedAlignment(*this, Pointee);
3684 
3685       // Look for a global declaration.
3686       OperatorDelete = FindUsualDeallocationFunction(StartLoc, CanProvideSize,
3687                                                      Overaligned, DeleteName);
3688     }
3689 
3690     MarkFunctionReferenced(StartLoc, OperatorDelete);
3691 
3692     // Check access and ambiguity of destructor if we're going to call it.
3693     // Note that this is required even for a virtual delete.
3694     bool IsVirtualDelete = false;
3695     if (PointeeRD) {
3696       if (CXXDestructorDecl *Dtor = LookupDestructor(PointeeRD)) {
3697         CheckDestructorAccess(Ex.get()->getExprLoc(), Dtor,
3698                               PDiag(diag::err_access_dtor) << PointeeElem);
3699         IsVirtualDelete = Dtor->isVirtual();
3700       }
3701     }
3702 
3703     DiagnoseUseOfDecl(OperatorDelete, StartLoc);
3704 
3705     // Convert the operand to the type of the first parameter of operator
3706     // delete. This is only necessary if we selected a destroying operator
3707     // delete that we are going to call (non-virtually); converting to void*
3708     // is trivial and left to AST consumers to handle.
3709     QualType ParamType = OperatorDelete->getParamDecl(0)->getType();
3710     if (!IsVirtualDelete && !ParamType->getPointeeType()->isVoidType()) {
3711       Qualifiers Qs = Pointee.getQualifiers();
3712       if (Qs.hasCVRQualifiers()) {
3713         // Qualifiers are irrelevant to this conversion; we're only looking
3714         // for access and ambiguity.
3715         Qs.removeCVRQualifiers();
3716         QualType Unqual = Context.getPointerType(
3717             Context.getQualifiedType(Pointee.getUnqualifiedType(), Qs));
3718         Ex = ImpCastExprToType(Ex.get(), Unqual, CK_NoOp);
3719       }
3720       Ex = PerformImplicitConversion(Ex.get(), ParamType, AA_Passing);
3721       if (Ex.isInvalid())
3722         return ExprError();
3723     }
3724   }
3725 
3726   CXXDeleteExpr *Result = new (Context) CXXDeleteExpr(
3727       Context.VoidTy, UseGlobal, ArrayForm, ArrayFormAsWritten,
3728       UsualArrayDeleteWantsSize, OperatorDelete, Ex.get(), StartLoc);
3729   AnalyzeDeleteExprMismatch(Result);
3730   return Result;
3731 }
3732 
3733 static bool resolveBuiltinNewDeleteOverload(Sema &S, CallExpr *TheCall,
3734                                             bool IsDelete,
3735                                             FunctionDecl *&Operator) {
3736 
3737   DeclarationName NewName = S.Context.DeclarationNames.getCXXOperatorName(
3738       IsDelete ? OO_Delete : OO_New);
3739 
3740   LookupResult R(S, NewName, TheCall->getBeginLoc(), Sema::LookupOrdinaryName);
3741   S.LookupQualifiedName(R, S.Context.getTranslationUnitDecl());
3742   assert(!R.empty() && "implicitly declared allocation functions not found");
3743   assert(!R.isAmbiguous() && "global allocation functions are ambiguous");
3744 
3745   // We do our own custom access checks below.
3746   R.suppressDiagnostics();
3747 
3748   SmallVector<Expr *, 8> Args(TheCall->arguments());
3749   OverloadCandidateSet Candidates(R.getNameLoc(),
3750                                   OverloadCandidateSet::CSK_Normal);
3751   for (LookupResult::iterator FnOvl = R.begin(), FnOvlEnd = R.end();
3752        FnOvl != FnOvlEnd; ++FnOvl) {
3753     // Even member operator new/delete are implicitly treated as
3754     // static, so don't use AddMemberCandidate.
3755     NamedDecl *D = (*FnOvl)->getUnderlyingDecl();
3756 
3757     if (FunctionTemplateDecl *FnTemplate = dyn_cast<FunctionTemplateDecl>(D)) {
3758       S.AddTemplateOverloadCandidate(FnTemplate, FnOvl.getPair(),
3759                                      /*ExplicitTemplateArgs=*/nullptr, Args,
3760                                      Candidates,
3761                                      /*SuppressUserConversions=*/false);
3762       continue;
3763     }
3764 
3765     FunctionDecl *Fn = cast<FunctionDecl>(D);
3766     S.AddOverloadCandidate(Fn, FnOvl.getPair(), Args, Candidates,
3767                            /*SuppressUserConversions=*/false);
3768   }
3769 
3770   SourceRange Range = TheCall->getSourceRange();
3771 
3772   // Do the resolution.
3773   OverloadCandidateSet::iterator Best;
3774   switch (Candidates.BestViableFunction(S, R.getNameLoc(), Best)) {
3775   case OR_Success: {
3776     // Got one!
3777     FunctionDecl *FnDecl = Best->Function;
3778     assert(R.getNamingClass() == nullptr &&
3779            "class members should not be considered");
3780 
3781     if (!FnDecl->isReplaceableGlobalAllocationFunction()) {
3782       S.Diag(R.getNameLoc(), diag::err_builtin_operator_new_delete_not_usual)
3783           << (IsDelete ? 1 : 0) << Range;
3784       S.Diag(FnDecl->getLocation(), diag::note_non_usual_function_declared_here)
3785           << R.getLookupName() << FnDecl->getSourceRange();
3786       return true;
3787     }
3788 
3789     Operator = FnDecl;
3790     return false;
3791   }
3792 
3793   case OR_No_Viable_Function:
3794     Candidates.NoteCandidates(
3795         PartialDiagnosticAt(R.getNameLoc(),
3796                             S.PDiag(diag::err_ovl_no_viable_function_in_call)
3797                                 << R.getLookupName() << Range),
3798         S, OCD_AllCandidates, Args);
3799     return true;
3800 
3801   case OR_Ambiguous:
3802     Candidates.NoteCandidates(
3803         PartialDiagnosticAt(R.getNameLoc(),
3804                             S.PDiag(diag::err_ovl_ambiguous_call)
3805                                 << R.getLookupName() << Range),
3806         S, OCD_AmbiguousCandidates, Args);
3807     return true;
3808 
3809   case OR_Deleted: {
3810     Candidates.NoteCandidates(
3811         PartialDiagnosticAt(R.getNameLoc(), S.PDiag(diag::err_ovl_deleted_call)
3812                                                 << R.getLookupName() << Range),
3813         S, OCD_AllCandidates, Args);
3814     return true;
3815   }
3816   }
3817   llvm_unreachable("Unreachable, bad result from BestViableFunction");
3818 }
3819 
3820 ExprResult
3821 Sema::SemaBuiltinOperatorNewDeleteOverloaded(ExprResult TheCallResult,
3822                                              bool IsDelete) {
3823   CallExpr *TheCall = cast<CallExpr>(TheCallResult.get());
3824   if (!getLangOpts().CPlusPlus) {
3825     Diag(TheCall->getExprLoc(), diag::err_builtin_requires_language)
3826         << (IsDelete ? "__builtin_operator_delete" : "__builtin_operator_new")
3827         << "C++";
3828     return ExprError();
3829   }
3830   // CodeGen assumes it can find the global new and delete to call,
3831   // so ensure that they are declared.
3832   DeclareGlobalNewDelete();
3833 
3834   FunctionDecl *OperatorNewOrDelete = nullptr;
3835   if (resolveBuiltinNewDeleteOverload(*this, TheCall, IsDelete,
3836                                       OperatorNewOrDelete))
3837     return ExprError();
3838   assert(OperatorNewOrDelete && "should be found");
3839 
3840   DiagnoseUseOfDecl(OperatorNewOrDelete, TheCall->getExprLoc());
3841   MarkFunctionReferenced(TheCall->getExprLoc(), OperatorNewOrDelete);
3842 
3843   TheCall->setType(OperatorNewOrDelete->getReturnType());
3844   for (unsigned i = 0; i != TheCall->getNumArgs(); ++i) {
3845     QualType ParamTy = OperatorNewOrDelete->getParamDecl(i)->getType();
3846     InitializedEntity Entity =
3847         InitializedEntity::InitializeParameter(Context, ParamTy, false);
3848     ExprResult Arg = PerformCopyInitialization(
3849         Entity, TheCall->getArg(i)->getBeginLoc(), TheCall->getArg(i));
3850     if (Arg.isInvalid())
3851       return ExprError();
3852     TheCall->setArg(i, Arg.get());
3853   }
3854   auto Callee = dyn_cast<ImplicitCastExpr>(TheCall->getCallee());
3855   assert(Callee && Callee->getCastKind() == CK_BuiltinFnToFnPtr &&
3856          "Callee expected to be implicit cast to a builtin function pointer");
3857   Callee->setType(OperatorNewOrDelete->getType());
3858 
3859   return TheCallResult;
3860 }
3861 
3862 void Sema::CheckVirtualDtorCall(CXXDestructorDecl *dtor, SourceLocation Loc,
3863                                 bool IsDelete, bool CallCanBeVirtual,
3864                                 bool WarnOnNonAbstractTypes,
3865                                 SourceLocation DtorLoc) {
3866   if (!dtor || dtor->isVirtual() || !CallCanBeVirtual || isUnevaluatedContext())
3867     return;
3868 
3869   // C++ [expr.delete]p3:
3870   //   In the first alternative (delete object), if the static type of the
3871   //   object to be deleted is different from its dynamic type, the static
3872   //   type shall be a base class of the dynamic type of the object to be
3873   //   deleted and the static type shall have a virtual destructor or the
3874   //   behavior is undefined.
3875   //
3876   const CXXRecordDecl *PointeeRD = dtor->getParent();
3877   // Note: a final class cannot be derived from, no issue there
3878   if (!PointeeRD->isPolymorphic() || PointeeRD->hasAttr<FinalAttr>())
3879     return;
3880 
3881   // If the superclass is in a system header, there's nothing that can be done.
3882   // The `delete` (where we emit the warning) can be in a system header,
3883   // what matters for this warning is where the deleted type is defined.
3884   if (getSourceManager().isInSystemHeader(PointeeRD->getLocation()))
3885     return;
3886 
3887   QualType ClassType = dtor->getThisType()->getPointeeType();
3888   if (PointeeRD->isAbstract()) {
3889     // If the class is abstract, we warn by default, because we're
3890     // sure the code has undefined behavior.
3891     Diag(Loc, diag::warn_delete_abstract_non_virtual_dtor) << (IsDelete ? 0 : 1)
3892                                                            << ClassType;
3893   } else if (WarnOnNonAbstractTypes) {
3894     // Otherwise, if this is not an array delete, it's a bit suspect,
3895     // but not necessarily wrong.
3896     Diag(Loc, diag::warn_delete_non_virtual_dtor) << (IsDelete ? 0 : 1)
3897                                                   << ClassType;
3898   }
3899   if (!IsDelete) {
3900     std::string TypeStr;
3901     ClassType.getAsStringInternal(TypeStr, getPrintingPolicy());
3902     Diag(DtorLoc, diag::note_delete_non_virtual)
3903         << FixItHint::CreateInsertion(DtorLoc, TypeStr + "::");
3904   }
3905 }
3906 
3907 Sema::ConditionResult Sema::ActOnConditionVariable(Decl *ConditionVar,
3908                                                    SourceLocation StmtLoc,
3909                                                    ConditionKind CK) {
3910   ExprResult E =
3911       CheckConditionVariable(cast<VarDecl>(ConditionVar), StmtLoc, CK);
3912   if (E.isInvalid())
3913     return ConditionError();
3914   return ConditionResult(*this, ConditionVar, MakeFullExpr(E.get(), StmtLoc),
3915                          CK == ConditionKind::ConstexprIf);
3916 }
3917 
3918 /// Check the use of the given variable as a C++ condition in an if,
3919 /// while, do-while, or switch statement.
3920 ExprResult Sema::CheckConditionVariable(VarDecl *ConditionVar,
3921                                         SourceLocation StmtLoc,
3922                                         ConditionKind CK) {
3923   if (ConditionVar->isInvalidDecl())
3924     return ExprError();
3925 
3926   QualType T = ConditionVar->getType();
3927 
3928   // C++ [stmt.select]p2:
3929   //   The declarator shall not specify a function or an array.
3930   if (T->isFunctionType())
3931     return ExprError(Diag(ConditionVar->getLocation(),
3932                           diag::err_invalid_use_of_function_type)
3933                        << ConditionVar->getSourceRange());
3934   else if (T->isArrayType())
3935     return ExprError(Diag(ConditionVar->getLocation(),
3936                           diag::err_invalid_use_of_array_type)
3937                      << ConditionVar->getSourceRange());
3938 
3939   ExprResult Condition = BuildDeclRefExpr(
3940       ConditionVar, ConditionVar->getType().getNonReferenceType(), VK_LValue,
3941       ConditionVar->getLocation());
3942 
3943   switch (CK) {
3944   case ConditionKind::Boolean:
3945     return CheckBooleanCondition(StmtLoc, Condition.get());
3946 
3947   case ConditionKind::ConstexprIf:
3948     return CheckBooleanCondition(StmtLoc, Condition.get(), true);
3949 
3950   case ConditionKind::Switch:
3951     return CheckSwitchCondition(StmtLoc, Condition.get());
3952   }
3953 
3954   llvm_unreachable("unexpected condition kind");
3955 }
3956 
3957 /// CheckCXXBooleanCondition - Returns true if a conversion to bool is invalid.
3958 ExprResult Sema::CheckCXXBooleanCondition(Expr *CondExpr, bool IsConstexpr) {
3959   // C++11 6.4p4:
3960   // The value of a condition that is an initialized declaration in a statement
3961   // other than a switch statement is the value of the declared variable
3962   // implicitly converted to type bool. If that conversion is ill-formed, the
3963   // program is ill-formed.
3964   // The value of a condition that is an expression is the value of the
3965   // expression, implicitly converted to bool.
3966   //
3967   // C++2b 8.5.2p2
3968   // If the if statement is of the form if constexpr, the value of the condition
3969   // is contextually converted to bool and the converted expression shall be
3970   // a constant expression.
3971   //
3972 
3973   ExprResult E = PerformContextuallyConvertToBool(CondExpr);
3974   if (!IsConstexpr || E.isInvalid() || E.get()->isValueDependent())
3975     return E;
3976 
3977   // FIXME: Return this value to the caller so they don't need to recompute it.
3978   llvm::APSInt Cond;
3979   E = VerifyIntegerConstantExpression(
3980       E.get(), &Cond,
3981       diag::err_constexpr_if_condition_expression_is_not_constant);
3982   return E;
3983 }
3984 
3985 /// Helper function to determine whether this is the (deprecated) C++
3986 /// conversion from a string literal to a pointer to non-const char or
3987 /// non-const wchar_t (for narrow and wide string literals,
3988 /// respectively).
3989 bool
3990 Sema::IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType) {
3991   // Look inside the implicit cast, if it exists.
3992   if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(From))
3993     From = Cast->getSubExpr();
3994 
3995   // A string literal (2.13.4) that is not a wide string literal can
3996   // be converted to an rvalue of type "pointer to char"; a wide
3997   // string literal can be converted to an rvalue of type "pointer
3998   // to wchar_t" (C++ 4.2p2).
3999   if (StringLiteral *StrLit = dyn_cast<StringLiteral>(From->IgnoreParens()))
4000     if (const PointerType *ToPtrType = ToType->getAs<PointerType>())
4001       if (const BuiltinType *ToPointeeType
4002           = ToPtrType->getPointeeType()->getAs<BuiltinType>()) {
4003         // This conversion is considered only when there is an
4004         // explicit appropriate pointer target type (C++ 4.2p2).
4005         if (!ToPtrType->getPointeeType().hasQualifiers()) {
4006           switch (StrLit->getKind()) {
4007             case StringLiteral::UTF8:
4008             case StringLiteral::UTF16:
4009             case StringLiteral::UTF32:
4010               // We don't allow UTF literals to be implicitly converted
4011               break;
4012             case StringLiteral::Ascii:
4013               return (ToPointeeType->getKind() == BuiltinType::Char_U ||
4014                       ToPointeeType->getKind() == BuiltinType::Char_S);
4015             case StringLiteral::Wide:
4016               return Context.typesAreCompatible(Context.getWideCharType(),
4017                                                 QualType(ToPointeeType, 0));
4018           }
4019         }
4020       }
4021 
4022   return false;
4023 }
4024 
4025 static ExprResult BuildCXXCastArgument(Sema &S,
4026                                        SourceLocation CastLoc,
4027                                        QualType Ty,
4028                                        CastKind Kind,
4029                                        CXXMethodDecl *Method,
4030                                        DeclAccessPair FoundDecl,
4031                                        bool HadMultipleCandidates,
4032                                        Expr *From) {
4033   switch (Kind) {
4034   default: llvm_unreachable("Unhandled cast kind!");
4035   case CK_ConstructorConversion: {
4036     CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Method);
4037     SmallVector<Expr*, 8> ConstructorArgs;
4038 
4039     if (S.RequireNonAbstractType(CastLoc, Ty,
4040                                  diag::err_allocation_of_abstract_type))
4041       return ExprError();
4042 
4043     if (S.CompleteConstructorCall(Constructor, Ty, From, CastLoc,
4044                                   ConstructorArgs))
4045       return ExprError();
4046 
4047     S.CheckConstructorAccess(CastLoc, Constructor, FoundDecl,
4048                              InitializedEntity::InitializeTemporary(Ty));
4049     if (S.DiagnoseUseOfDecl(Method, CastLoc))
4050       return ExprError();
4051 
4052     ExprResult Result = S.BuildCXXConstructExpr(
4053         CastLoc, Ty, FoundDecl, cast<CXXConstructorDecl>(Method),
4054         ConstructorArgs, HadMultipleCandidates,
4055         /*ListInit*/ false, /*StdInitListInit*/ false, /*ZeroInit*/ false,
4056         CXXConstructExpr::CK_Complete, SourceRange());
4057     if (Result.isInvalid())
4058       return ExprError();
4059 
4060     return S.MaybeBindToTemporary(Result.getAs<Expr>());
4061   }
4062 
4063   case CK_UserDefinedConversion: {
4064     assert(!From->getType()->isPointerType() && "Arg can't have pointer type!");
4065 
4066     S.CheckMemberOperatorAccess(CastLoc, From, /*arg*/ nullptr, FoundDecl);
4067     if (S.DiagnoseUseOfDecl(Method, CastLoc))
4068       return ExprError();
4069 
4070     // Create an implicit call expr that calls it.
4071     CXXConversionDecl *Conv = cast<CXXConversionDecl>(Method);
4072     ExprResult Result = S.BuildCXXMemberCallExpr(From, FoundDecl, Conv,
4073                                                  HadMultipleCandidates);
4074     if (Result.isInvalid())
4075       return ExprError();
4076     // Record usage of conversion in an implicit cast.
4077     Result = ImplicitCastExpr::Create(S.Context, Result.get()->getType(),
4078                                       CK_UserDefinedConversion, Result.get(),
4079                                       nullptr, Result.get()->getValueKind(),
4080                                       S.CurFPFeatureOverrides());
4081 
4082     return S.MaybeBindToTemporary(Result.get());
4083   }
4084   }
4085 }
4086 
4087 /// PerformImplicitConversion - Perform an implicit conversion of the
4088 /// expression From to the type ToType using the pre-computed implicit
4089 /// conversion sequence ICS. Returns the converted
4090 /// expression. Action is the kind of conversion we're performing,
4091 /// used in the error message.
4092 ExprResult
4093 Sema::PerformImplicitConversion(Expr *From, QualType ToType,
4094                                 const ImplicitConversionSequence &ICS,
4095                                 AssignmentAction Action,
4096                                 CheckedConversionKind CCK) {
4097   // C++ [over.match.oper]p7: [...] operands of class type are converted [...]
4098   if (CCK == CCK_ForBuiltinOverloadedOp && !From->getType()->isRecordType())
4099     return From;
4100 
4101   switch (ICS.getKind()) {
4102   case ImplicitConversionSequence::StandardConversion: {
4103     ExprResult Res = PerformImplicitConversion(From, ToType, ICS.Standard,
4104                                                Action, CCK);
4105     if (Res.isInvalid())
4106       return ExprError();
4107     From = Res.get();
4108     break;
4109   }
4110 
4111   case ImplicitConversionSequence::UserDefinedConversion: {
4112 
4113       FunctionDecl *FD = ICS.UserDefined.ConversionFunction;
4114       CastKind CastKind;
4115       QualType BeforeToType;
4116       assert(FD && "no conversion function for user-defined conversion seq");
4117       if (const CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(FD)) {
4118         CastKind = CK_UserDefinedConversion;
4119 
4120         // If the user-defined conversion is specified by a conversion function,
4121         // the initial standard conversion sequence converts the source type to
4122         // the implicit object parameter of the conversion function.
4123         BeforeToType = Context.getTagDeclType(Conv->getParent());
4124       } else {
4125         const CXXConstructorDecl *Ctor = cast<CXXConstructorDecl>(FD);
4126         CastKind = CK_ConstructorConversion;
4127         // Do no conversion if dealing with ... for the first conversion.
4128         if (!ICS.UserDefined.EllipsisConversion) {
4129           // If the user-defined conversion is specified by a constructor, the
4130           // initial standard conversion sequence converts the source type to
4131           // the type required by the argument of the constructor
4132           BeforeToType = Ctor->getParamDecl(0)->getType().getNonReferenceType();
4133         }
4134       }
4135       // Watch out for ellipsis conversion.
4136       if (!ICS.UserDefined.EllipsisConversion) {
4137         ExprResult Res =
4138           PerformImplicitConversion(From, BeforeToType,
4139                                     ICS.UserDefined.Before, AA_Converting,
4140                                     CCK);
4141         if (Res.isInvalid())
4142           return ExprError();
4143         From = Res.get();
4144       }
4145 
4146       ExprResult CastArg = BuildCXXCastArgument(
4147           *this, From->getBeginLoc(), ToType.getNonReferenceType(), CastKind,
4148           cast<CXXMethodDecl>(FD), ICS.UserDefined.FoundConversionFunction,
4149           ICS.UserDefined.HadMultipleCandidates, From);
4150 
4151       if (CastArg.isInvalid())
4152         return ExprError();
4153 
4154       From = CastArg.get();
4155 
4156       // C++ [over.match.oper]p7:
4157       //   [...] the second standard conversion sequence of a user-defined
4158       //   conversion sequence is not applied.
4159       if (CCK == CCK_ForBuiltinOverloadedOp)
4160         return From;
4161 
4162       return PerformImplicitConversion(From, ToType, ICS.UserDefined.After,
4163                                        AA_Converting, CCK);
4164   }
4165 
4166   case ImplicitConversionSequence::AmbiguousConversion:
4167     ICS.DiagnoseAmbiguousConversion(*this, From->getExprLoc(),
4168                           PDiag(diag::err_typecheck_ambiguous_condition)
4169                             << From->getSourceRange());
4170     return ExprError();
4171 
4172   case ImplicitConversionSequence::EllipsisConversion:
4173     llvm_unreachable("Cannot perform an ellipsis conversion");
4174 
4175   case ImplicitConversionSequence::BadConversion:
4176     Sema::AssignConvertType ConvTy =
4177         CheckAssignmentConstraints(From->getExprLoc(), ToType, From->getType());
4178     bool Diagnosed = DiagnoseAssignmentResult(
4179         ConvTy == Compatible ? Incompatible : ConvTy, From->getExprLoc(),
4180         ToType, From->getType(), From, Action);
4181     assert(Diagnosed && "failed to diagnose bad conversion"); (void)Diagnosed;
4182     return ExprError();
4183   }
4184 
4185   // Everything went well.
4186   return From;
4187 }
4188 
4189 /// PerformImplicitConversion - Perform an implicit conversion of the
4190 /// expression From to the type ToType by following the standard
4191 /// conversion sequence SCS. Returns the converted
4192 /// expression. Flavor is the context in which we're performing this
4193 /// conversion, for use in error messages.
4194 ExprResult
4195 Sema::PerformImplicitConversion(Expr *From, QualType ToType,
4196                                 const StandardConversionSequence& SCS,
4197                                 AssignmentAction Action,
4198                                 CheckedConversionKind CCK) {
4199   bool CStyle = (CCK == CCK_CStyleCast || CCK == CCK_FunctionalCast);
4200 
4201   // Overall FIXME: we are recomputing too many types here and doing far too
4202   // much extra work. What this means is that we need to keep track of more
4203   // information that is computed when we try the implicit conversion initially,
4204   // so that we don't need to recompute anything here.
4205   QualType FromType = From->getType();
4206 
4207   if (SCS.CopyConstructor) {
4208     // FIXME: When can ToType be a reference type?
4209     assert(!ToType->isReferenceType());
4210     if (SCS.Second == ICK_Derived_To_Base) {
4211       SmallVector<Expr*, 8> ConstructorArgs;
4212       if (CompleteConstructorCall(
4213               cast<CXXConstructorDecl>(SCS.CopyConstructor), ToType, From,
4214               /*FIXME:ConstructLoc*/ SourceLocation(), ConstructorArgs))
4215         return ExprError();
4216       return BuildCXXConstructExpr(
4217           /*FIXME:ConstructLoc*/ SourceLocation(), ToType,
4218           SCS.FoundCopyConstructor, SCS.CopyConstructor,
4219           ConstructorArgs, /*HadMultipleCandidates*/ false,
4220           /*ListInit*/ false, /*StdInitListInit*/ false, /*ZeroInit*/ false,
4221           CXXConstructExpr::CK_Complete, SourceRange());
4222     }
4223     return BuildCXXConstructExpr(
4224         /*FIXME:ConstructLoc*/ SourceLocation(), ToType,
4225         SCS.FoundCopyConstructor, SCS.CopyConstructor,
4226         From, /*HadMultipleCandidates*/ false,
4227         /*ListInit*/ false, /*StdInitListInit*/ false, /*ZeroInit*/ false,
4228         CXXConstructExpr::CK_Complete, SourceRange());
4229   }
4230 
4231   // Resolve overloaded function references.
4232   if (Context.hasSameType(FromType, Context.OverloadTy)) {
4233     DeclAccessPair Found;
4234     FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(From, ToType,
4235                                                           true, Found);
4236     if (!Fn)
4237       return ExprError();
4238 
4239     if (DiagnoseUseOfDecl(Fn, From->getBeginLoc()))
4240       return ExprError();
4241 
4242     From = FixOverloadedFunctionReference(From, Found, Fn);
4243 
4244     // We might get back another placeholder expression if we resolved to a
4245     // builtin.
4246     ExprResult Checked = CheckPlaceholderExpr(From);
4247     if (Checked.isInvalid())
4248       return ExprError();
4249 
4250     From = Checked.get();
4251     FromType = From->getType();
4252   }
4253 
4254   // If we're converting to an atomic type, first convert to the corresponding
4255   // non-atomic type.
4256   QualType ToAtomicType;
4257   if (const AtomicType *ToAtomic = ToType->getAs<AtomicType>()) {
4258     ToAtomicType = ToType;
4259     ToType = ToAtomic->getValueType();
4260   }
4261 
4262   QualType InitialFromType = FromType;
4263   // Perform the first implicit conversion.
4264   switch (SCS.First) {
4265   case ICK_Identity:
4266     if (const AtomicType *FromAtomic = FromType->getAs<AtomicType>()) {
4267       FromType = FromAtomic->getValueType().getUnqualifiedType();
4268       From = ImplicitCastExpr::Create(Context, FromType, CK_AtomicToNonAtomic,
4269                                       From, /*BasePath=*/nullptr, VK_PRValue,
4270                                       FPOptionsOverride());
4271     }
4272     break;
4273 
4274   case ICK_Lvalue_To_Rvalue: {
4275     assert(From->getObjectKind() != OK_ObjCProperty);
4276     ExprResult FromRes = DefaultLvalueConversion(From);
4277     if (FromRes.isInvalid())
4278       return ExprError();
4279 
4280     From = FromRes.get();
4281     FromType = From->getType();
4282     break;
4283   }
4284 
4285   case ICK_Array_To_Pointer:
4286     FromType = Context.getArrayDecayedType(FromType);
4287     From = ImpCastExprToType(From, FromType, CK_ArrayToPointerDecay, VK_PRValue,
4288                              /*BasePath=*/nullptr, CCK)
4289                .get();
4290     break;
4291 
4292   case ICK_Function_To_Pointer:
4293     FromType = Context.getPointerType(FromType);
4294     From = ImpCastExprToType(From, FromType, CK_FunctionToPointerDecay,
4295                              VK_PRValue, /*BasePath=*/nullptr, CCK)
4296                .get();
4297     break;
4298 
4299   default:
4300     llvm_unreachable("Improper first standard conversion");
4301   }
4302 
4303   // Perform the second implicit conversion
4304   switch (SCS.Second) {
4305   case ICK_Identity:
4306     // C++ [except.spec]p5:
4307     //   [For] assignment to and initialization of pointers to functions,
4308     //   pointers to member functions, and references to functions: the
4309     //   target entity shall allow at least the exceptions allowed by the
4310     //   source value in the assignment or initialization.
4311     switch (Action) {
4312     case AA_Assigning:
4313     case AA_Initializing:
4314       // Note, function argument passing and returning are initialization.
4315     case AA_Passing:
4316     case AA_Returning:
4317     case AA_Sending:
4318     case AA_Passing_CFAudited:
4319       if (CheckExceptionSpecCompatibility(From, ToType))
4320         return ExprError();
4321       break;
4322 
4323     case AA_Casting:
4324     case AA_Converting:
4325       // Casts and implicit conversions are not initialization, so are not
4326       // checked for exception specification mismatches.
4327       break;
4328     }
4329     // Nothing else to do.
4330     break;
4331 
4332   case ICK_Integral_Promotion:
4333   case ICK_Integral_Conversion:
4334     if (ToType->isBooleanType()) {
4335       assert(FromType->castAs<EnumType>()->getDecl()->isFixed() &&
4336              SCS.Second == ICK_Integral_Promotion &&
4337              "only enums with fixed underlying type can promote to bool");
4338       From = ImpCastExprToType(From, ToType, CK_IntegralToBoolean, VK_PRValue,
4339                                /*BasePath=*/nullptr, CCK)
4340                  .get();
4341     } else {
4342       From = ImpCastExprToType(From, ToType, CK_IntegralCast, VK_PRValue,
4343                                /*BasePath=*/nullptr, CCK)
4344                  .get();
4345     }
4346     break;
4347 
4348   case ICK_Floating_Promotion:
4349   case ICK_Floating_Conversion:
4350     From = ImpCastExprToType(From, ToType, CK_FloatingCast, VK_PRValue,
4351                              /*BasePath=*/nullptr, CCK)
4352                .get();
4353     break;
4354 
4355   case ICK_Complex_Promotion:
4356   case ICK_Complex_Conversion: {
4357     QualType FromEl = From->getType()->castAs<ComplexType>()->getElementType();
4358     QualType ToEl = ToType->castAs<ComplexType>()->getElementType();
4359     CastKind CK;
4360     if (FromEl->isRealFloatingType()) {
4361       if (ToEl->isRealFloatingType())
4362         CK = CK_FloatingComplexCast;
4363       else
4364         CK = CK_FloatingComplexToIntegralComplex;
4365     } else if (ToEl->isRealFloatingType()) {
4366       CK = CK_IntegralComplexToFloatingComplex;
4367     } else {
4368       CK = CK_IntegralComplexCast;
4369     }
4370     From = ImpCastExprToType(From, ToType, CK, VK_PRValue, /*BasePath=*/nullptr,
4371                              CCK)
4372                .get();
4373     break;
4374   }
4375 
4376   case ICK_Floating_Integral:
4377     if (ToType->isRealFloatingType())
4378       From = ImpCastExprToType(From, ToType, CK_IntegralToFloating, VK_PRValue,
4379                                /*BasePath=*/nullptr, CCK)
4380                  .get();
4381     else
4382       From = ImpCastExprToType(From, ToType, CK_FloatingToIntegral, VK_PRValue,
4383                                /*BasePath=*/nullptr, CCK)
4384                  .get();
4385     break;
4386 
4387   case ICK_Compatible_Conversion:
4388     From = ImpCastExprToType(From, ToType, CK_NoOp, From->getValueKind(),
4389                              /*BasePath=*/nullptr, CCK).get();
4390     break;
4391 
4392   case ICK_Writeback_Conversion:
4393   case ICK_Pointer_Conversion: {
4394     if (SCS.IncompatibleObjC && Action != AA_Casting) {
4395       // Diagnose incompatible Objective-C conversions
4396       if (Action == AA_Initializing || Action == AA_Assigning)
4397         Diag(From->getBeginLoc(),
4398              diag::ext_typecheck_convert_incompatible_pointer)
4399             << ToType << From->getType() << Action << From->getSourceRange()
4400             << 0;
4401       else
4402         Diag(From->getBeginLoc(),
4403              diag::ext_typecheck_convert_incompatible_pointer)
4404             << From->getType() << ToType << Action << From->getSourceRange()
4405             << 0;
4406 
4407       if (From->getType()->isObjCObjectPointerType() &&
4408           ToType->isObjCObjectPointerType())
4409         EmitRelatedResultTypeNote(From);
4410     } else if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
4411                !CheckObjCARCUnavailableWeakConversion(ToType,
4412                                                       From->getType())) {
4413       if (Action == AA_Initializing)
4414         Diag(From->getBeginLoc(), diag::err_arc_weak_unavailable_assign);
4415       else
4416         Diag(From->getBeginLoc(), diag::err_arc_convesion_of_weak_unavailable)
4417             << (Action == AA_Casting) << From->getType() << ToType
4418             << From->getSourceRange();
4419     }
4420 
4421     // Defer address space conversion to the third conversion.
4422     QualType FromPteeType = From->getType()->getPointeeType();
4423     QualType ToPteeType = ToType->getPointeeType();
4424     QualType NewToType = ToType;
4425     if (!FromPteeType.isNull() && !ToPteeType.isNull() &&
4426         FromPteeType.getAddressSpace() != ToPteeType.getAddressSpace()) {
4427       NewToType = Context.removeAddrSpaceQualType(ToPteeType);
4428       NewToType = Context.getAddrSpaceQualType(NewToType,
4429                                                FromPteeType.getAddressSpace());
4430       if (ToType->isObjCObjectPointerType())
4431         NewToType = Context.getObjCObjectPointerType(NewToType);
4432       else if (ToType->isBlockPointerType())
4433         NewToType = Context.getBlockPointerType(NewToType);
4434       else
4435         NewToType = Context.getPointerType(NewToType);
4436     }
4437 
4438     CastKind Kind;
4439     CXXCastPath BasePath;
4440     if (CheckPointerConversion(From, NewToType, Kind, BasePath, CStyle))
4441       return ExprError();
4442 
4443     // Make sure we extend blocks if necessary.
4444     // FIXME: doing this here is really ugly.
4445     if (Kind == CK_BlockPointerToObjCPointerCast) {
4446       ExprResult E = From;
4447       (void) PrepareCastToObjCObjectPointer(E);
4448       From = E.get();
4449     }
4450     if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers())
4451       CheckObjCConversion(SourceRange(), NewToType, From, CCK);
4452     From = ImpCastExprToType(From, NewToType, Kind, VK_PRValue, &BasePath, CCK)
4453                .get();
4454     break;
4455   }
4456 
4457   case ICK_Pointer_Member: {
4458     CastKind Kind;
4459     CXXCastPath BasePath;
4460     if (CheckMemberPointerConversion(From, ToType, Kind, BasePath, CStyle))
4461       return ExprError();
4462     if (CheckExceptionSpecCompatibility(From, ToType))
4463       return ExprError();
4464 
4465     // We may not have been able to figure out what this member pointer resolved
4466     // to up until this exact point.  Attempt to lock-in it's inheritance model.
4467     if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
4468       (void)isCompleteType(From->getExprLoc(), From->getType());
4469       (void)isCompleteType(From->getExprLoc(), ToType);
4470     }
4471 
4472     From =
4473         ImpCastExprToType(From, ToType, Kind, VK_PRValue, &BasePath, CCK).get();
4474     break;
4475   }
4476 
4477   case ICK_Boolean_Conversion:
4478     // Perform half-to-boolean conversion via float.
4479     if (From->getType()->isHalfType()) {
4480       From = ImpCastExprToType(From, Context.FloatTy, CK_FloatingCast).get();
4481       FromType = Context.FloatTy;
4482     }
4483 
4484     From = ImpCastExprToType(From, Context.BoolTy,
4485                              ScalarTypeToBooleanCastKind(FromType), VK_PRValue,
4486                              /*BasePath=*/nullptr, CCK)
4487                .get();
4488     break;
4489 
4490   case ICK_Derived_To_Base: {
4491     CXXCastPath BasePath;
4492     if (CheckDerivedToBaseConversion(
4493             From->getType(), ToType.getNonReferenceType(), From->getBeginLoc(),
4494             From->getSourceRange(), &BasePath, CStyle))
4495       return ExprError();
4496 
4497     From = ImpCastExprToType(From, ToType.getNonReferenceType(),
4498                       CK_DerivedToBase, From->getValueKind(),
4499                       &BasePath, CCK).get();
4500     break;
4501   }
4502 
4503   case ICK_Vector_Conversion:
4504     From = ImpCastExprToType(From, ToType, CK_BitCast, VK_PRValue,
4505                              /*BasePath=*/nullptr, CCK)
4506                .get();
4507     break;
4508 
4509   case ICK_SVE_Vector_Conversion:
4510     From = ImpCastExprToType(From, ToType, CK_BitCast, VK_PRValue,
4511                              /*BasePath=*/nullptr, CCK)
4512                .get();
4513     break;
4514 
4515   case ICK_Vector_Splat: {
4516     // Vector splat from any arithmetic type to a vector.
4517     Expr *Elem = prepareVectorSplat(ToType, From).get();
4518     From = ImpCastExprToType(Elem, ToType, CK_VectorSplat, VK_PRValue,
4519                              /*BasePath=*/nullptr, CCK)
4520                .get();
4521     break;
4522   }
4523 
4524   case ICK_Complex_Real:
4525     // Case 1.  x -> _Complex y
4526     if (const ComplexType *ToComplex = ToType->getAs<ComplexType>()) {
4527       QualType ElType = ToComplex->getElementType();
4528       bool isFloatingComplex = ElType->isRealFloatingType();
4529 
4530       // x -> y
4531       if (Context.hasSameUnqualifiedType(ElType, From->getType())) {
4532         // do nothing
4533       } else if (From->getType()->isRealFloatingType()) {
4534         From = ImpCastExprToType(From, ElType,
4535                 isFloatingComplex ? CK_FloatingCast : CK_FloatingToIntegral).get();
4536       } else {
4537         assert(From->getType()->isIntegerType());
4538         From = ImpCastExprToType(From, ElType,
4539                 isFloatingComplex ? CK_IntegralToFloating : CK_IntegralCast).get();
4540       }
4541       // y -> _Complex y
4542       From = ImpCastExprToType(From, ToType,
4543                    isFloatingComplex ? CK_FloatingRealToComplex
4544                                      : CK_IntegralRealToComplex).get();
4545 
4546     // Case 2.  _Complex x -> y
4547     } else {
4548       auto *FromComplex = From->getType()->castAs<ComplexType>();
4549       QualType ElType = FromComplex->getElementType();
4550       bool isFloatingComplex = ElType->isRealFloatingType();
4551 
4552       // _Complex x -> x
4553       From = ImpCastExprToType(From, ElType,
4554                                isFloatingComplex ? CK_FloatingComplexToReal
4555                                                  : CK_IntegralComplexToReal,
4556                                VK_PRValue, /*BasePath=*/nullptr, CCK)
4557                  .get();
4558 
4559       // x -> y
4560       if (Context.hasSameUnqualifiedType(ElType, ToType)) {
4561         // do nothing
4562       } else if (ToType->isRealFloatingType()) {
4563         From = ImpCastExprToType(From, ToType,
4564                                  isFloatingComplex ? CK_FloatingCast
4565                                                    : CK_IntegralToFloating,
4566                                  VK_PRValue, /*BasePath=*/nullptr, CCK)
4567                    .get();
4568       } else {
4569         assert(ToType->isIntegerType());
4570         From = ImpCastExprToType(From, ToType,
4571                                  isFloatingComplex ? CK_FloatingToIntegral
4572                                                    : CK_IntegralCast,
4573                                  VK_PRValue, /*BasePath=*/nullptr, CCK)
4574                    .get();
4575       }
4576     }
4577     break;
4578 
4579   case ICK_Block_Pointer_Conversion: {
4580     LangAS AddrSpaceL =
4581         ToType->castAs<BlockPointerType>()->getPointeeType().getAddressSpace();
4582     LangAS AddrSpaceR =
4583         FromType->castAs<BlockPointerType>()->getPointeeType().getAddressSpace();
4584     assert(Qualifiers::isAddressSpaceSupersetOf(AddrSpaceL, AddrSpaceR) &&
4585            "Invalid cast");
4586     CastKind Kind =
4587         AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast;
4588     From = ImpCastExprToType(From, ToType.getUnqualifiedType(), Kind,
4589                              VK_PRValue, /*BasePath=*/nullptr, CCK)
4590                .get();
4591     break;
4592   }
4593 
4594   case ICK_TransparentUnionConversion: {
4595     ExprResult FromRes = From;
4596     Sema::AssignConvertType ConvTy =
4597       CheckTransparentUnionArgumentConstraints(ToType, FromRes);
4598     if (FromRes.isInvalid())
4599       return ExprError();
4600     From = FromRes.get();
4601     assert ((ConvTy == Sema::Compatible) &&
4602             "Improper transparent union conversion");
4603     (void)ConvTy;
4604     break;
4605   }
4606 
4607   case ICK_Zero_Event_Conversion:
4608   case ICK_Zero_Queue_Conversion:
4609     From = ImpCastExprToType(From, ToType,
4610                              CK_ZeroToOCLOpaqueType,
4611                              From->getValueKind()).get();
4612     break;
4613 
4614   case ICK_Lvalue_To_Rvalue:
4615   case ICK_Array_To_Pointer:
4616   case ICK_Function_To_Pointer:
4617   case ICK_Function_Conversion:
4618   case ICK_Qualification:
4619   case ICK_Num_Conversion_Kinds:
4620   case ICK_C_Only_Conversion:
4621   case ICK_Incompatible_Pointer_Conversion:
4622     llvm_unreachable("Improper second standard conversion");
4623   }
4624 
4625   switch (SCS.Third) {
4626   case ICK_Identity:
4627     // Nothing to do.
4628     break;
4629 
4630   case ICK_Function_Conversion:
4631     // If both sides are functions (or pointers/references to them), there could
4632     // be incompatible exception declarations.
4633     if (CheckExceptionSpecCompatibility(From, ToType))
4634       return ExprError();
4635 
4636     From = ImpCastExprToType(From, ToType, CK_NoOp, VK_PRValue,
4637                              /*BasePath=*/nullptr, CCK)
4638                .get();
4639     break;
4640 
4641   case ICK_Qualification: {
4642     ExprValueKind VK = From->getValueKind();
4643     CastKind CK = CK_NoOp;
4644 
4645     if (ToType->isReferenceType() &&
4646         ToType->getPointeeType().getAddressSpace() !=
4647             From->getType().getAddressSpace())
4648       CK = CK_AddressSpaceConversion;
4649 
4650     if (ToType->isPointerType() &&
4651         ToType->getPointeeType().getAddressSpace() !=
4652             From->getType()->getPointeeType().getAddressSpace())
4653       CK = CK_AddressSpaceConversion;
4654 
4655     if (!isCast(CCK) &&
4656         !ToType->getPointeeType().getQualifiers().hasUnaligned() &&
4657         From->getType()->getPointeeType().getQualifiers().hasUnaligned()) {
4658       Diag(From->getBeginLoc(), diag::warn_imp_cast_drops_unaligned)
4659           << InitialFromType << ToType;
4660     }
4661 
4662     From = ImpCastExprToType(From, ToType.getNonLValueExprType(Context), CK, VK,
4663                              /*BasePath=*/nullptr, CCK)
4664                .get();
4665 
4666     if (SCS.DeprecatedStringLiteralToCharPtr &&
4667         !getLangOpts().WritableStrings) {
4668       Diag(From->getBeginLoc(),
4669            getLangOpts().CPlusPlus11
4670                ? diag::ext_deprecated_string_literal_conversion
4671                : diag::warn_deprecated_string_literal_conversion)
4672           << ToType.getNonReferenceType();
4673     }
4674 
4675     break;
4676   }
4677 
4678   default:
4679     llvm_unreachable("Improper third standard conversion");
4680   }
4681 
4682   // If this conversion sequence involved a scalar -> atomic conversion, perform
4683   // that conversion now.
4684   if (!ToAtomicType.isNull()) {
4685     assert(Context.hasSameType(
4686         ToAtomicType->castAs<AtomicType>()->getValueType(), From->getType()));
4687     From = ImpCastExprToType(From, ToAtomicType, CK_NonAtomicToAtomic,
4688                              VK_PRValue, nullptr, CCK)
4689                .get();
4690   }
4691 
4692   // Materialize a temporary if we're implicitly converting to a reference
4693   // type. This is not required by the C++ rules but is necessary to maintain
4694   // AST invariants.
4695   if (ToType->isReferenceType() && From->isPRValue()) {
4696     ExprResult Res = TemporaryMaterializationConversion(From);
4697     if (Res.isInvalid())
4698       return ExprError();
4699     From = Res.get();
4700   }
4701 
4702   // If this conversion sequence succeeded and involved implicitly converting a
4703   // _Nullable type to a _Nonnull one, complain.
4704   if (!isCast(CCK))
4705     diagnoseNullableToNonnullConversion(ToType, InitialFromType,
4706                                         From->getBeginLoc());
4707 
4708   return From;
4709 }
4710 
4711 /// Check the completeness of a type in a unary type trait.
4712 ///
4713 /// If the particular type trait requires a complete type, tries to complete
4714 /// it. If completing the type fails, a diagnostic is emitted and false
4715 /// returned. If completing the type succeeds or no completion was required,
4716 /// returns true.
4717 static bool CheckUnaryTypeTraitTypeCompleteness(Sema &S, TypeTrait UTT,
4718                                                 SourceLocation Loc,
4719                                                 QualType ArgTy) {
4720   // C++0x [meta.unary.prop]p3:
4721   //   For all of the class templates X declared in this Clause, instantiating
4722   //   that template with a template argument that is a class template
4723   //   specialization may result in the implicit instantiation of the template
4724   //   argument if and only if the semantics of X require that the argument
4725   //   must be a complete type.
4726   // We apply this rule to all the type trait expressions used to implement
4727   // these class templates. We also try to follow any GCC documented behavior
4728   // in these expressions to ensure portability of standard libraries.
4729   switch (UTT) {
4730   default: llvm_unreachable("not a UTT");
4731     // is_complete_type somewhat obviously cannot require a complete type.
4732   case UTT_IsCompleteType:
4733     // Fall-through
4734 
4735     // These traits are modeled on the type predicates in C++0x
4736     // [meta.unary.cat] and [meta.unary.comp]. They are not specified as
4737     // requiring a complete type, as whether or not they return true cannot be
4738     // impacted by the completeness of the type.
4739   case UTT_IsVoid:
4740   case UTT_IsIntegral:
4741   case UTT_IsFloatingPoint:
4742   case UTT_IsArray:
4743   case UTT_IsPointer:
4744   case UTT_IsLvalueReference:
4745   case UTT_IsRvalueReference:
4746   case UTT_IsMemberFunctionPointer:
4747   case UTT_IsMemberObjectPointer:
4748   case UTT_IsEnum:
4749   case UTT_IsUnion:
4750   case UTT_IsClass:
4751   case UTT_IsFunction:
4752   case UTT_IsReference:
4753   case UTT_IsArithmetic:
4754   case UTT_IsFundamental:
4755   case UTT_IsObject:
4756   case UTT_IsScalar:
4757   case UTT_IsCompound:
4758   case UTT_IsMemberPointer:
4759     // Fall-through
4760 
4761     // These traits are modeled on type predicates in C++0x [meta.unary.prop]
4762     // which requires some of its traits to have the complete type. However,
4763     // the completeness of the type cannot impact these traits' semantics, and
4764     // so they don't require it. This matches the comments on these traits in
4765     // Table 49.
4766   case UTT_IsConst:
4767   case UTT_IsVolatile:
4768   case UTT_IsSigned:
4769   case UTT_IsUnsigned:
4770 
4771   // This type trait always returns false, checking the type is moot.
4772   case UTT_IsInterfaceClass:
4773     return true;
4774 
4775   // C++14 [meta.unary.prop]:
4776   //   If T is a non-union class type, T shall be a complete type.
4777   case UTT_IsEmpty:
4778   case UTT_IsPolymorphic:
4779   case UTT_IsAbstract:
4780     if (const auto *RD = ArgTy->getAsCXXRecordDecl())
4781       if (!RD->isUnion())
4782         return !S.RequireCompleteType(
4783             Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr);
4784     return true;
4785 
4786   // C++14 [meta.unary.prop]:
4787   //   If T is a class type, T shall be a complete type.
4788   case UTT_IsFinal:
4789   case UTT_IsSealed:
4790     if (ArgTy->getAsCXXRecordDecl())
4791       return !S.RequireCompleteType(
4792           Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr);
4793     return true;
4794 
4795   // C++1z [meta.unary.prop]:
4796   //   remove_all_extents_t<T> shall be a complete type or cv void.
4797   case UTT_IsAggregate:
4798   case UTT_IsTrivial:
4799   case UTT_IsTriviallyCopyable:
4800   case UTT_IsStandardLayout:
4801   case UTT_IsPOD:
4802   case UTT_IsLiteral:
4803   // By analogy, is_trivially_relocatable imposes the same constraints.
4804   case UTT_IsTriviallyRelocatable:
4805   // Per the GCC type traits documentation, T shall be a complete type, cv void,
4806   // or an array of unknown bound. But GCC actually imposes the same constraints
4807   // as above.
4808   case UTT_HasNothrowAssign:
4809   case UTT_HasNothrowMoveAssign:
4810   case UTT_HasNothrowConstructor:
4811   case UTT_HasNothrowCopy:
4812   case UTT_HasTrivialAssign:
4813   case UTT_HasTrivialMoveAssign:
4814   case UTT_HasTrivialDefaultConstructor:
4815   case UTT_HasTrivialMoveConstructor:
4816   case UTT_HasTrivialCopy:
4817   case UTT_HasTrivialDestructor:
4818   case UTT_HasVirtualDestructor:
4819     ArgTy = QualType(ArgTy->getBaseElementTypeUnsafe(), 0);
4820     LLVM_FALLTHROUGH;
4821 
4822   // C++1z [meta.unary.prop]:
4823   //   T shall be a complete type, cv void, or an array of unknown bound.
4824   case UTT_IsDestructible:
4825   case UTT_IsNothrowDestructible:
4826   case UTT_IsTriviallyDestructible:
4827   case UTT_HasUniqueObjectRepresentations:
4828     if (ArgTy->isIncompleteArrayType() || ArgTy->isVoidType())
4829       return true;
4830 
4831     return !S.RequireCompleteType(
4832         Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr);
4833   }
4834 }
4835 
4836 static bool HasNoThrowOperator(const RecordType *RT, OverloadedOperatorKind Op,
4837                                Sema &Self, SourceLocation KeyLoc, ASTContext &C,
4838                                bool (CXXRecordDecl::*HasTrivial)() const,
4839                                bool (CXXRecordDecl::*HasNonTrivial)() const,
4840                                bool (CXXMethodDecl::*IsDesiredOp)() const)
4841 {
4842   CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
4843   if ((RD->*HasTrivial)() && !(RD->*HasNonTrivial)())
4844     return true;
4845 
4846   DeclarationName Name = C.DeclarationNames.getCXXOperatorName(Op);
4847   DeclarationNameInfo NameInfo(Name, KeyLoc);
4848   LookupResult Res(Self, NameInfo, Sema::LookupOrdinaryName);
4849   if (Self.LookupQualifiedName(Res, RD)) {
4850     bool FoundOperator = false;
4851     Res.suppressDiagnostics();
4852     for (LookupResult::iterator Op = Res.begin(), OpEnd = Res.end();
4853          Op != OpEnd; ++Op) {
4854       if (isa<FunctionTemplateDecl>(*Op))
4855         continue;
4856 
4857       CXXMethodDecl *Operator = cast<CXXMethodDecl>(*Op);
4858       if((Operator->*IsDesiredOp)()) {
4859         FoundOperator = true;
4860         auto *CPT = Operator->getType()->castAs<FunctionProtoType>();
4861         CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
4862         if (!CPT || !CPT->isNothrow())
4863           return false;
4864       }
4865     }
4866     return FoundOperator;
4867   }
4868   return false;
4869 }
4870 
4871 static bool EvaluateUnaryTypeTrait(Sema &Self, TypeTrait UTT,
4872                                    SourceLocation KeyLoc, QualType T) {
4873   assert(!T->isDependentType() && "Cannot evaluate traits of dependent type");
4874 
4875   ASTContext &C = Self.Context;
4876   switch(UTT) {
4877   default: llvm_unreachable("not a UTT");
4878     // Type trait expressions corresponding to the primary type category
4879     // predicates in C++0x [meta.unary.cat].
4880   case UTT_IsVoid:
4881     return T->isVoidType();
4882   case UTT_IsIntegral:
4883     return T->isIntegralType(C);
4884   case UTT_IsFloatingPoint:
4885     return T->isFloatingType();
4886   case UTT_IsArray:
4887     return T->isArrayType();
4888   case UTT_IsPointer:
4889     return T->isAnyPointerType();
4890   case UTT_IsLvalueReference:
4891     return T->isLValueReferenceType();
4892   case UTT_IsRvalueReference:
4893     return T->isRValueReferenceType();
4894   case UTT_IsMemberFunctionPointer:
4895     return T->isMemberFunctionPointerType();
4896   case UTT_IsMemberObjectPointer:
4897     return T->isMemberDataPointerType();
4898   case UTT_IsEnum:
4899     return T->isEnumeralType();
4900   case UTT_IsUnion:
4901     return T->isUnionType();
4902   case UTT_IsClass:
4903     return T->isClassType() || T->isStructureType() || T->isInterfaceType();
4904   case UTT_IsFunction:
4905     return T->isFunctionType();
4906 
4907     // Type trait expressions which correspond to the convenient composition
4908     // predicates in C++0x [meta.unary.comp].
4909   case UTT_IsReference:
4910     return T->isReferenceType();
4911   case UTT_IsArithmetic:
4912     return T->isArithmeticType() && !T->isEnumeralType();
4913   case UTT_IsFundamental:
4914     return T->isFundamentalType();
4915   case UTT_IsObject:
4916     return T->isObjectType();
4917   case UTT_IsScalar:
4918     // Note: semantic analysis depends on Objective-C lifetime types to be
4919     // considered scalar types. However, such types do not actually behave
4920     // like scalar types at run time (since they may require retain/release
4921     // operations), so we report them as non-scalar.
4922     if (T->isObjCLifetimeType()) {
4923       switch (T.getObjCLifetime()) {
4924       case Qualifiers::OCL_None:
4925       case Qualifiers::OCL_ExplicitNone:
4926         return true;
4927 
4928       case Qualifiers::OCL_Strong:
4929       case Qualifiers::OCL_Weak:
4930       case Qualifiers::OCL_Autoreleasing:
4931         return false;
4932       }
4933     }
4934 
4935     return T->isScalarType();
4936   case UTT_IsCompound:
4937     return T->isCompoundType();
4938   case UTT_IsMemberPointer:
4939     return T->isMemberPointerType();
4940 
4941     // Type trait expressions which correspond to the type property predicates
4942     // in C++0x [meta.unary.prop].
4943   case UTT_IsConst:
4944     return T.isConstQualified();
4945   case UTT_IsVolatile:
4946     return T.isVolatileQualified();
4947   case UTT_IsTrivial:
4948     return T.isTrivialType(C);
4949   case UTT_IsTriviallyCopyable:
4950     return T.isTriviallyCopyableType(C);
4951   case UTT_IsStandardLayout:
4952     return T->isStandardLayoutType();
4953   case UTT_IsPOD:
4954     return T.isPODType(C);
4955   case UTT_IsLiteral:
4956     return T->isLiteralType(C);
4957   case UTT_IsEmpty:
4958     if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4959       return !RD->isUnion() && RD->isEmpty();
4960     return false;
4961   case UTT_IsPolymorphic:
4962     if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4963       return !RD->isUnion() && RD->isPolymorphic();
4964     return false;
4965   case UTT_IsAbstract:
4966     if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4967       return !RD->isUnion() && RD->isAbstract();
4968     return false;
4969   case UTT_IsAggregate:
4970     // Report vector extensions and complex types as aggregates because they
4971     // support aggregate initialization. GCC mirrors this behavior for vectors
4972     // but not _Complex.
4973     return T->isAggregateType() || T->isVectorType() || T->isExtVectorType() ||
4974            T->isAnyComplexType();
4975   // __is_interface_class only returns true when CL is invoked in /CLR mode and
4976   // even then only when it is used with the 'interface struct ...' syntax
4977   // Clang doesn't support /CLR which makes this type trait moot.
4978   case UTT_IsInterfaceClass:
4979     return false;
4980   case UTT_IsFinal:
4981   case UTT_IsSealed:
4982     if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4983       return RD->hasAttr<FinalAttr>();
4984     return false;
4985   case UTT_IsSigned:
4986     // Enum types should always return false.
4987     // Floating points should always return true.
4988     return T->isFloatingType() ||
4989            (T->isSignedIntegerType() && !T->isEnumeralType());
4990   case UTT_IsUnsigned:
4991     // Enum types should always return false.
4992     return T->isUnsignedIntegerType() && !T->isEnumeralType();
4993 
4994     // Type trait expressions which query classes regarding their construction,
4995     // destruction, and copying. Rather than being based directly on the
4996     // related type predicates in the standard, they are specified by both
4997     // GCC[1] and the Embarcadero C++ compiler[2], and Clang implements those
4998     // specifications.
4999     //
5000     //   1: http://gcc.gnu/.org/onlinedocs/gcc/Type-Traits.html
5001     //   2: http://docwiki.embarcadero.com/RADStudio/XE/en/Type_Trait_Functions_(C%2B%2B0x)_Index
5002     //
5003     // Note that these builtins do not behave as documented in g++: if a class
5004     // has both a trivial and a non-trivial special member of a particular kind,
5005     // they return false! For now, we emulate this behavior.
5006     // FIXME: This appears to be a g++ bug: more complex cases reveal that it
5007     // does not correctly compute triviality in the presence of multiple special
5008     // members of the same kind. Revisit this once the g++ bug is fixed.
5009   case UTT_HasTrivialDefaultConstructor:
5010     // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
5011     //   If __is_pod (type) is true then the trait is true, else if type is
5012     //   a cv class or union type (or array thereof) with a trivial default
5013     //   constructor ([class.ctor]) then the trait is true, else it is false.
5014     if (T.isPODType(C))
5015       return true;
5016     if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl())
5017       return RD->hasTrivialDefaultConstructor() &&
5018              !RD->hasNonTrivialDefaultConstructor();
5019     return false;
5020   case UTT_HasTrivialMoveConstructor:
5021     //  This trait is implemented by MSVC 2012 and needed to parse the
5022     //  standard library headers. Specifically this is used as the logic
5023     //  behind std::is_trivially_move_constructible (20.9.4.3).
5024     if (T.isPODType(C))
5025       return true;
5026     if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl())
5027       return RD->hasTrivialMoveConstructor() && !RD->hasNonTrivialMoveConstructor();
5028     return false;
5029   case UTT_HasTrivialCopy:
5030     // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
5031     //   If __is_pod (type) is true or type is a reference type then
5032     //   the trait is true, else if type is a cv class or union type
5033     //   with a trivial copy constructor ([class.copy]) then the trait
5034     //   is true, else it is false.
5035     if (T.isPODType(C) || T->isReferenceType())
5036       return true;
5037     if (CXXRecordDecl *RD = T->getAsCXXRecordDecl())
5038       return RD->hasTrivialCopyConstructor() &&
5039              !RD->hasNonTrivialCopyConstructor();
5040     return false;
5041   case UTT_HasTrivialMoveAssign:
5042     //  This trait is implemented by MSVC 2012 and needed to parse the
5043     //  standard library headers. Specifically it is used as the logic
5044     //  behind std::is_trivially_move_assignable (20.9.4.3)
5045     if (T.isPODType(C))
5046       return true;
5047     if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl())
5048       return RD->hasTrivialMoveAssignment() && !RD->hasNonTrivialMoveAssignment();
5049     return false;
5050   case UTT_HasTrivialAssign:
5051     // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
5052     //   If type is const qualified or is a reference type then the
5053     //   trait is false. Otherwise if __is_pod (type) is true then the
5054     //   trait is true, else if type is a cv class or union type with
5055     //   a trivial copy assignment ([class.copy]) then the trait is
5056     //   true, else it is false.
5057     // Note: the const and reference restrictions are interesting,
5058     // given that const and reference members don't prevent a class
5059     // from having a trivial copy assignment operator (but do cause
5060     // errors if the copy assignment operator is actually used, q.v.
5061     // [class.copy]p12).
5062 
5063     if (T.isConstQualified())
5064       return false;
5065     if (T.isPODType(C))
5066       return true;
5067     if (CXXRecordDecl *RD = T->getAsCXXRecordDecl())
5068       return RD->hasTrivialCopyAssignment() &&
5069              !RD->hasNonTrivialCopyAssignment();
5070     return false;
5071   case UTT_IsDestructible:
5072   case UTT_IsTriviallyDestructible:
5073   case UTT_IsNothrowDestructible:
5074     // C++14 [meta.unary.prop]:
5075     //   For reference types, is_destructible<T>::value is true.
5076     if (T->isReferenceType())
5077       return true;
5078 
5079     // Objective-C++ ARC: autorelease types don't require destruction.
5080     if (T->isObjCLifetimeType() &&
5081         T.getObjCLifetime() == Qualifiers::OCL_Autoreleasing)
5082       return true;
5083 
5084     // C++14 [meta.unary.prop]:
5085     //   For incomplete types and function types, is_destructible<T>::value is
5086     //   false.
5087     if (T->isIncompleteType() || T->isFunctionType())
5088       return false;
5089 
5090     // A type that requires destruction (via a non-trivial destructor or ARC
5091     // lifetime semantics) is not trivially-destructible.
5092     if (UTT == UTT_IsTriviallyDestructible && T.isDestructedType())
5093       return false;
5094 
5095     // C++14 [meta.unary.prop]:
5096     //   For object types and given U equal to remove_all_extents_t<T>, if the
5097     //   expression std::declval<U&>().~U() is well-formed when treated as an
5098     //   unevaluated operand (Clause 5), then is_destructible<T>::value is true
5099     if (auto *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) {
5100       CXXDestructorDecl *Destructor = Self.LookupDestructor(RD);
5101       if (!Destructor)
5102         return false;
5103       //  C++14 [dcl.fct.def.delete]p2:
5104       //    A program that refers to a deleted function implicitly or
5105       //    explicitly, other than to declare it, is ill-formed.
5106       if (Destructor->isDeleted())
5107         return false;
5108       if (C.getLangOpts().AccessControl && Destructor->getAccess() != AS_public)
5109         return false;
5110       if (UTT == UTT_IsNothrowDestructible) {
5111         auto *CPT = Destructor->getType()->castAs<FunctionProtoType>();
5112         CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
5113         if (!CPT || !CPT->isNothrow())
5114           return false;
5115       }
5116     }
5117     return true;
5118 
5119   case UTT_HasTrivialDestructor:
5120     // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html
5121     //   If __is_pod (type) is true or type is a reference type
5122     //   then the trait is true, else if type is a cv class or union
5123     //   type (or array thereof) with a trivial destructor
5124     //   ([class.dtor]) then the trait is true, else it is
5125     //   false.
5126     if (T.isPODType(C) || T->isReferenceType())
5127       return true;
5128 
5129     // Objective-C++ ARC: autorelease types don't require destruction.
5130     if (T->isObjCLifetimeType() &&
5131         T.getObjCLifetime() == Qualifiers::OCL_Autoreleasing)
5132       return true;
5133 
5134     if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl())
5135       return RD->hasTrivialDestructor();
5136     return false;
5137   // TODO: Propagate nothrowness for implicitly declared special members.
5138   case UTT_HasNothrowAssign:
5139     // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
5140     //   If type is const qualified or is a reference type then the
5141     //   trait is false. Otherwise if __has_trivial_assign (type)
5142     //   is true then the trait is true, else if type is a cv class
5143     //   or union type with copy assignment operators that are known
5144     //   not to throw an exception then the trait is true, else it is
5145     //   false.
5146     if (C.getBaseElementType(T).isConstQualified())
5147       return false;
5148     if (T->isReferenceType())
5149       return false;
5150     if (T.isPODType(C) || T->isObjCLifetimeType())
5151       return true;
5152 
5153     if (const RecordType *RT = T->getAs<RecordType>())
5154       return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C,
5155                                 &CXXRecordDecl::hasTrivialCopyAssignment,
5156                                 &CXXRecordDecl::hasNonTrivialCopyAssignment,
5157                                 &CXXMethodDecl::isCopyAssignmentOperator);
5158     return false;
5159   case UTT_HasNothrowMoveAssign:
5160     //  This trait is implemented by MSVC 2012 and needed to parse the
5161     //  standard library headers. Specifically this is used as the logic
5162     //  behind std::is_nothrow_move_assignable (20.9.4.3).
5163     if (T.isPODType(C))
5164       return true;
5165 
5166     if (const RecordType *RT = C.getBaseElementType(T)->getAs<RecordType>())
5167       return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C,
5168                                 &CXXRecordDecl::hasTrivialMoveAssignment,
5169                                 &CXXRecordDecl::hasNonTrivialMoveAssignment,
5170                                 &CXXMethodDecl::isMoveAssignmentOperator);
5171     return false;
5172   case UTT_HasNothrowCopy:
5173     // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
5174     //   If __has_trivial_copy (type) is true then the trait is true, else
5175     //   if type is a cv class or union type with copy constructors that are
5176     //   known not to throw an exception then the trait is true, else it is
5177     //   false.
5178     if (T.isPODType(C) || T->isReferenceType() || T->isObjCLifetimeType())
5179       return true;
5180     if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) {
5181       if (RD->hasTrivialCopyConstructor() &&
5182           !RD->hasNonTrivialCopyConstructor())
5183         return true;
5184 
5185       bool FoundConstructor = false;
5186       unsigned FoundTQs;
5187       for (const auto *ND : Self.LookupConstructors(RD)) {
5188         // A template constructor is never a copy constructor.
5189         // FIXME: However, it may actually be selected at the actual overload
5190         // resolution point.
5191         if (isa<FunctionTemplateDecl>(ND->getUnderlyingDecl()))
5192           continue;
5193         // UsingDecl itself is not a constructor
5194         if (isa<UsingDecl>(ND))
5195           continue;
5196         auto *Constructor = cast<CXXConstructorDecl>(ND->getUnderlyingDecl());
5197         if (Constructor->isCopyConstructor(FoundTQs)) {
5198           FoundConstructor = true;
5199           auto *CPT = Constructor->getType()->castAs<FunctionProtoType>();
5200           CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
5201           if (!CPT)
5202             return false;
5203           // TODO: check whether evaluating default arguments can throw.
5204           // For now, we'll be conservative and assume that they can throw.
5205           if (!CPT->isNothrow() || CPT->getNumParams() > 1)
5206             return false;
5207         }
5208       }
5209 
5210       return FoundConstructor;
5211     }
5212     return false;
5213   case UTT_HasNothrowConstructor:
5214     // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html
5215     //   If __has_trivial_constructor (type) is true then the trait is
5216     //   true, else if type is a cv class or union type (or array
5217     //   thereof) with a default constructor that is known not to
5218     //   throw an exception then the trait is true, else it is false.
5219     if (T.isPODType(C) || T->isObjCLifetimeType())
5220       return true;
5221     if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) {
5222       if (RD->hasTrivialDefaultConstructor() &&
5223           !RD->hasNonTrivialDefaultConstructor())
5224         return true;
5225 
5226       bool FoundConstructor = false;
5227       for (const auto *ND : Self.LookupConstructors(RD)) {
5228         // FIXME: In C++0x, a constructor template can be a default constructor.
5229         if (isa<FunctionTemplateDecl>(ND->getUnderlyingDecl()))
5230           continue;
5231         // UsingDecl itself is not a constructor
5232         if (isa<UsingDecl>(ND))
5233           continue;
5234         auto *Constructor = cast<CXXConstructorDecl>(ND->getUnderlyingDecl());
5235         if (Constructor->isDefaultConstructor()) {
5236           FoundConstructor = true;
5237           auto *CPT = Constructor->getType()->castAs<FunctionProtoType>();
5238           CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
5239           if (!CPT)
5240             return false;
5241           // FIXME: check whether evaluating default arguments can throw.
5242           // For now, we'll be conservative and assume that they can throw.
5243           if (!CPT->isNothrow() || CPT->getNumParams() > 0)
5244             return false;
5245         }
5246       }
5247       return FoundConstructor;
5248     }
5249     return false;
5250   case UTT_HasVirtualDestructor:
5251     // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
5252     //   If type is a class type with a virtual destructor ([class.dtor])
5253     //   then the trait is true, else it is false.
5254     if (CXXRecordDecl *RD = T->getAsCXXRecordDecl())
5255       if (CXXDestructorDecl *Destructor = Self.LookupDestructor(RD))
5256         return Destructor->isVirtual();
5257     return false;
5258 
5259     // These type trait expressions are modeled on the specifications for the
5260     // Embarcadero C++0x type trait functions:
5261     //   http://docwiki.embarcadero.com/RADStudio/XE/en/Type_Trait_Functions_(C%2B%2B0x)_Index
5262   case UTT_IsCompleteType:
5263     // http://docwiki.embarcadero.com/RADStudio/XE/en/Is_complete_type_(typename_T_):
5264     //   Returns True if and only if T is a complete type at the point of the
5265     //   function call.
5266     return !T->isIncompleteType();
5267   case UTT_HasUniqueObjectRepresentations:
5268     return C.hasUniqueObjectRepresentations(T);
5269   case UTT_IsTriviallyRelocatable:
5270     return T.isTriviallyRelocatableType(C);
5271   }
5272 }
5273 
5274 static bool EvaluateBinaryTypeTrait(Sema &Self, TypeTrait BTT, QualType LhsT,
5275                                     QualType RhsT, SourceLocation KeyLoc);
5276 
5277 static bool evaluateTypeTrait(Sema &S, TypeTrait Kind, SourceLocation KWLoc,
5278                               ArrayRef<TypeSourceInfo *> Args,
5279                               SourceLocation RParenLoc) {
5280   if (Kind <= UTT_Last)
5281     return EvaluateUnaryTypeTrait(S, Kind, KWLoc, Args[0]->getType());
5282 
5283   // Evaluate BTT_ReferenceBindsToTemporary alongside the IsConstructible
5284   // traits to avoid duplication.
5285   if (Kind <= BTT_Last && Kind != BTT_ReferenceBindsToTemporary)
5286     return EvaluateBinaryTypeTrait(S, Kind, Args[0]->getType(),
5287                                    Args[1]->getType(), RParenLoc);
5288 
5289   switch (Kind) {
5290   case clang::BTT_ReferenceBindsToTemporary:
5291   case clang::TT_IsConstructible:
5292   case clang::TT_IsNothrowConstructible:
5293   case clang::TT_IsTriviallyConstructible: {
5294     // C++11 [meta.unary.prop]:
5295     //   is_trivially_constructible is defined as:
5296     //
5297     //     is_constructible<T, Args...>::value is true and the variable
5298     //     definition for is_constructible, as defined below, is known to call
5299     //     no operation that is not trivial.
5300     //
5301     //   The predicate condition for a template specialization
5302     //   is_constructible<T, Args...> shall be satisfied if and only if the
5303     //   following variable definition would be well-formed for some invented
5304     //   variable t:
5305     //
5306     //     T t(create<Args>()...);
5307     assert(!Args.empty());
5308 
5309     // Precondition: T and all types in the parameter pack Args shall be
5310     // complete types, (possibly cv-qualified) void, or arrays of
5311     // unknown bound.
5312     for (const auto *TSI : Args) {
5313       QualType ArgTy = TSI->getType();
5314       if (ArgTy->isVoidType() || ArgTy->isIncompleteArrayType())
5315         continue;
5316 
5317       if (S.RequireCompleteType(KWLoc, ArgTy,
5318           diag::err_incomplete_type_used_in_type_trait_expr))
5319         return false;
5320     }
5321 
5322     // Make sure the first argument is not incomplete nor a function type.
5323     QualType T = Args[0]->getType();
5324     if (T->isIncompleteType() || T->isFunctionType())
5325       return false;
5326 
5327     // Make sure the first argument is not an abstract type.
5328     CXXRecordDecl *RD = T->getAsCXXRecordDecl();
5329     if (RD && RD->isAbstract())
5330       return false;
5331 
5332     llvm::BumpPtrAllocator OpaqueExprAllocator;
5333     SmallVector<Expr *, 2> ArgExprs;
5334     ArgExprs.reserve(Args.size() - 1);
5335     for (unsigned I = 1, N = Args.size(); I != N; ++I) {
5336       QualType ArgTy = Args[I]->getType();
5337       if (ArgTy->isObjectType() || ArgTy->isFunctionType())
5338         ArgTy = S.Context.getRValueReferenceType(ArgTy);
5339       ArgExprs.push_back(
5340           new (OpaqueExprAllocator.Allocate<OpaqueValueExpr>())
5341               OpaqueValueExpr(Args[I]->getTypeLoc().getBeginLoc(),
5342                               ArgTy.getNonLValueExprType(S.Context),
5343                               Expr::getValueKindForType(ArgTy)));
5344     }
5345 
5346     // Perform the initialization in an unevaluated context within a SFINAE
5347     // trap at translation unit scope.
5348     EnterExpressionEvaluationContext Unevaluated(
5349         S, Sema::ExpressionEvaluationContext::Unevaluated);
5350     Sema::SFINAETrap SFINAE(S, /*AccessCheckingSFINAE=*/true);
5351     Sema::ContextRAII TUContext(S, S.Context.getTranslationUnitDecl());
5352     InitializedEntity To(
5353         InitializedEntity::InitializeTemporary(S.Context, Args[0]));
5354     InitializationKind InitKind(InitializationKind::CreateDirect(KWLoc, KWLoc,
5355                                                                  RParenLoc));
5356     InitializationSequence Init(S, To, InitKind, ArgExprs);
5357     if (Init.Failed())
5358       return false;
5359 
5360     ExprResult Result = Init.Perform(S, To, InitKind, ArgExprs);
5361     if (Result.isInvalid() || SFINAE.hasErrorOccurred())
5362       return false;
5363 
5364     if (Kind == clang::TT_IsConstructible)
5365       return true;
5366 
5367     if (Kind == clang::BTT_ReferenceBindsToTemporary) {
5368       if (!T->isReferenceType())
5369         return false;
5370 
5371       return !Init.isDirectReferenceBinding();
5372     }
5373 
5374     if (Kind == clang::TT_IsNothrowConstructible)
5375       return S.canThrow(Result.get()) == CT_Cannot;
5376 
5377     if (Kind == clang::TT_IsTriviallyConstructible) {
5378       // Under Objective-C ARC and Weak, if the destination has non-trivial
5379       // Objective-C lifetime, this is a non-trivial construction.
5380       if (T.getNonReferenceType().hasNonTrivialObjCLifetime())
5381         return false;
5382 
5383       // The initialization succeeded; now make sure there are no non-trivial
5384       // calls.
5385       return !Result.get()->hasNonTrivialCall(S.Context);
5386     }
5387 
5388     llvm_unreachable("unhandled type trait");
5389     return false;
5390   }
5391     default: llvm_unreachable("not a TT");
5392   }
5393 
5394   return false;
5395 }
5396 
5397 ExprResult Sema::BuildTypeTrait(TypeTrait Kind, SourceLocation KWLoc,
5398                                 ArrayRef<TypeSourceInfo *> Args,
5399                                 SourceLocation RParenLoc) {
5400   QualType ResultType = Context.getLogicalOperationType();
5401 
5402   if (Kind <= UTT_Last && !CheckUnaryTypeTraitTypeCompleteness(
5403                                *this, Kind, KWLoc, Args[0]->getType()))
5404     return ExprError();
5405 
5406   bool Dependent = false;
5407   for (unsigned I = 0, N = Args.size(); I != N; ++I) {
5408     if (Args[I]->getType()->isDependentType()) {
5409       Dependent = true;
5410       break;
5411     }
5412   }
5413 
5414   bool Result = false;
5415   if (!Dependent)
5416     Result = evaluateTypeTrait(*this, Kind, KWLoc, Args, RParenLoc);
5417 
5418   return TypeTraitExpr::Create(Context, ResultType, KWLoc, Kind, Args,
5419                                RParenLoc, Result);
5420 }
5421 
5422 ExprResult Sema::ActOnTypeTrait(TypeTrait Kind, SourceLocation KWLoc,
5423                                 ArrayRef<ParsedType> Args,
5424                                 SourceLocation RParenLoc) {
5425   SmallVector<TypeSourceInfo *, 4> ConvertedArgs;
5426   ConvertedArgs.reserve(Args.size());
5427 
5428   for (unsigned I = 0, N = Args.size(); I != N; ++I) {
5429     TypeSourceInfo *TInfo;
5430     QualType T = GetTypeFromParser(Args[I], &TInfo);
5431     if (!TInfo)
5432       TInfo = Context.getTrivialTypeSourceInfo(T, KWLoc);
5433 
5434     ConvertedArgs.push_back(TInfo);
5435   }
5436 
5437   return BuildTypeTrait(Kind, KWLoc, ConvertedArgs, RParenLoc);
5438 }
5439 
5440 static bool EvaluateBinaryTypeTrait(Sema &Self, TypeTrait BTT, QualType LhsT,
5441                                     QualType RhsT, SourceLocation KeyLoc) {
5442   assert(!LhsT->isDependentType() && !RhsT->isDependentType() &&
5443          "Cannot evaluate traits of dependent types");
5444 
5445   switch(BTT) {
5446   case BTT_IsBaseOf: {
5447     // C++0x [meta.rel]p2
5448     // Base is a base class of Derived without regard to cv-qualifiers or
5449     // Base and Derived are not unions and name the same class type without
5450     // regard to cv-qualifiers.
5451 
5452     const RecordType *lhsRecord = LhsT->getAs<RecordType>();
5453     const RecordType *rhsRecord = RhsT->getAs<RecordType>();
5454     if (!rhsRecord || !lhsRecord) {
5455       const ObjCObjectType *LHSObjTy = LhsT->getAs<ObjCObjectType>();
5456       const ObjCObjectType *RHSObjTy = RhsT->getAs<ObjCObjectType>();
5457       if (!LHSObjTy || !RHSObjTy)
5458         return false;
5459 
5460       ObjCInterfaceDecl *BaseInterface = LHSObjTy->getInterface();
5461       ObjCInterfaceDecl *DerivedInterface = RHSObjTy->getInterface();
5462       if (!BaseInterface || !DerivedInterface)
5463         return false;
5464 
5465       if (Self.RequireCompleteType(
5466               KeyLoc, RhsT, diag::err_incomplete_type_used_in_type_trait_expr))
5467         return false;
5468 
5469       return BaseInterface->isSuperClassOf(DerivedInterface);
5470     }
5471 
5472     assert(Self.Context.hasSameUnqualifiedType(LhsT, RhsT)
5473              == (lhsRecord == rhsRecord));
5474 
5475     // Unions are never base classes, and never have base classes.
5476     // It doesn't matter if they are complete or not. See PR#41843
5477     if (lhsRecord && lhsRecord->getDecl()->isUnion())
5478       return false;
5479     if (rhsRecord && rhsRecord->getDecl()->isUnion())
5480       return false;
5481 
5482     if (lhsRecord == rhsRecord)
5483       return true;
5484 
5485     // C++0x [meta.rel]p2:
5486     //   If Base and Derived are class types and are different types
5487     //   (ignoring possible cv-qualifiers) then Derived shall be a
5488     //   complete type.
5489     if (Self.RequireCompleteType(KeyLoc, RhsT,
5490                           diag::err_incomplete_type_used_in_type_trait_expr))
5491       return false;
5492 
5493     return cast<CXXRecordDecl>(rhsRecord->getDecl())
5494       ->isDerivedFrom(cast<CXXRecordDecl>(lhsRecord->getDecl()));
5495   }
5496   case BTT_IsSame:
5497     return Self.Context.hasSameType(LhsT, RhsT);
5498   case BTT_TypeCompatible: {
5499     // GCC ignores cv-qualifiers on arrays for this builtin.
5500     Qualifiers LhsQuals, RhsQuals;
5501     QualType Lhs = Self.getASTContext().getUnqualifiedArrayType(LhsT, LhsQuals);
5502     QualType Rhs = Self.getASTContext().getUnqualifiedArrayType(RhsT, RhsQuals);
5503     return Self.Context.typesAreCompatible(Lhs, Rhs);
5504   }
5505   case BTT_IsConvertible:
5506   case BTT_IsConvertibleTo: {
5507     // C++0x [meta.rel]p4:
5508     //   Given the following function prototype:
5509     //
5510     //     template <class T>
5511     //       typename add_rvalue_reference<T>::type create();
5512     //
5513     //   the predicate condition for a template specialization
5514     //   is_convertible<From, To> shall be satisfied if and only if
5515     //   the return expression in the following code would be
5516     //   well-formed, including any implicit conversions to the return
5517     //   type of the function:
5518     //
5519     //     To test() {
5520     //       return create<From>();
5521     //     }
5522     //
5523     //   Access checking is performed as if in a context unrelated to To and
5524     //   From. Only the validity of the immediate context of the expression
5525     //   of the return-statement (including conversions to the return type)
5526     //   is considered.
5527     //
5528     // We model the initialization as a copy-initialization of a temporary
5529     // of the appropriate type, which for this expression is identical to the
5530     // return statement (since NRVO doesn't apply).
5531 
5532     // Functions aren't allowed to return function or array types.
5533     if (RhsT->isFunctionType() || RhsT->isArrayType())
5534       return false;
5535 
5536     // A return statement in a void function must have void type.
5537     if (RhsT->isVoidType())
5538       return LhsT->isVoidType();
5539 
5540     // A function definition requires a complete, non-abstract return type.
5541     if (!Self.isCompleteType(KeyLoc, RhsT) || Self.isAbstractType(KeyLoc, RhsT))
5542       return false;
5543 
5544     // Compute the result of add_rvalue_reference.
5545     if (LhsT->isObjectType() || LhsT->isFunctionType())
5546       LhsT = Self.Context.getRValueReferenceType(LhsT);
5547 
5548     // Build a fake source and destination for initialization.
5549     InitializedEntity To(InitializedEntity::InitializeTemporary(RhsT));
5550     OpaqueValueExpr From(KeyLoc, LhsT.getNonLValueExprType(Self.Context),
5551                          Expr::getValueKindForType(LhsT));
5552     Expr *FromPtr = &From;
5553     InitializationKind Kind(InitializationKind::CreateCopy(KeyLoc,
5554                                                            SourceLocation()));
5555 
5556     // Perform the initialization in an unevaluated context within a SFINAE
5557     // trap at translation unit scope.
5558     EnterExpressionEvaluationContext Unevaluated(
5559         Self, Sema::ExpressionEvaluationContext::Unevaluated);
5560     Sema::SFINAETrap SFINAE(Self, /*AccessCheckingSFINAE=*/true);
5561     Sema::ContextRAII TUContext(Self, Self.Context.getTranslationUnitDecl());
5562     InitializationSequence Init(Self, To, Kind, FromPtr);
5563     if (Init.Failed())
5564       return false;
5565 
5566     ExprResult Result = Init.Perform(Self, To, Kind, FromPtr);
5567     return !Result.isInvalid() && !SFINAE.hasErrorOccurred();
5568   }
5569 
5570   case BTT_IsAssignable:
5571   case BTT_IsNothrowAssignable:
5572   case BTT_IsTriviallyAssignable: {
5573     // C++11 [meta.unary.prop]p3:
5574     //   is_trivially_assignable is defined as:
5575     //     is_assignable<T, U>::value is true and the assignment, as defined by
5576     //     is_assignable, is known to call no operation that is not trivial
5577     //
5578     //   is_assignable is defined as:
5579     //     The expression declval<T>() = declval<U>() is well-formed when
5580     //     treated as an unevaluated operand (Clause 5).
5581     //
5582     //   For both, T and U shall be complete types, (possibly cv-qualified)
5583     //   void, or arrays of unknown bound.
5584     if (!LhsT->isVoidType() && !LhsT->isIncompleteArrayType() &&
5585         Self.RequireCompleteType(KeyLoc, LhsT,
5586           diag::err_incomplete_type_used_in_type_trait_expr))
5587       return false;
5588     if (!RhsT->isVoidType() && !RhsT->isIncompleteArrayType() &&
5589         Self.RequireCompleteType(KeyLoc, RhsT,
5590           diag::err_incomplete_type_used_in_type_trait_expr))
5591       return false;
5592 
5593     // cv void is never assignable.
5594     if (LhsT->isVoidType() || RhsT->isVoidType())
5595       return false;
5596 
5597     // Build expressions that emulate the effect of declval<T>() and
5598     // declval<U>().
5599     if (LhsT->isObjectType() || LhsT->isFunctionType())
5600       LhsT = Self.Context.getRValueReferenceType(LhsT);
5601     if (RhsT->isObjectType() || RhsT->isFunctionType())
5602       RhsT = Self.Context.getRValueReferenceType(RhsT);
5603     OpaqueValueExpr Lhs(KeyLoc, LhsT.getNonLValueExprType(Self.Context),
5604                         Expr::getValueKindForType(LhsT));
5605     OpaqueValueExpr Rhs(KeyLoc, RhsT.getNonLValueExprType(Self.Context),
5606                         Expr::getValueKindForType(RhsT));
5607 
5608     // Attempt the assignment in an unevaluated context within a SFINAE
5609     // trap at translation unit scope.
5610     EnterExpressionEvaluationContext Unevaluated(
5611         Self, Sema::ExpressionEvaluationContext::Unevaluated);
5612     Sema::SFINAETrap SFINAE(Self, /*AccessCheckingSFINAE=*/true);
5613     Sema::ContextRAII TUContext(Self, Self.Context.getTranslationUnitDecl());
5614     ExprResult Result = Self.BuildBinOp(/*S=*/nullptr, KeyLoc, BO_Assign, &Lhs,
5615                                         &Rhs);
5616     if (Result.isInvalid())
5617       return false;
5618 
5619     // Treat the assignment as unused for the purpose of -Wdeprecated-volatile.
5620     Self.CheckUnusedVolatileAssignment(Result.get());
5621 
5622     if (SFINAE.hasErrorOccurred())
5623       return false;
5624 
5625     if (BTT == BTT_IsAssignable)
5626       return true;
5627 
5628     if (BTT == BTT_IsNothrowAssignable)
5629       return Self.canThrow(Result.get()) == CT_Cannot;
5630 
5631     if (BTT == BTT_IsTriviallyAssignable) {
5632       // Under Objective-C ARC and Weak, if the destination has non-trivial
5633       // Objective-C lifetime, this is a non-trivial assignment.
5634       if (LhsT.getNonReferenceType().hasNonTrivialObjCLifetime())
5635         return false;
5636 
5637       return !Result.get()->hasNonTrivialCall(Self.Context);
5638     }
5639 
5640     llvm_unreachable("unhandled type trait");
5641     return false;
5642   }
5643     default: llvm_unreachable("not a BTT");
5644   }
5645   llvm_unreachable("Unknown type trait or not implemented");
5646 }
5647 
5648 ExprResult Sema::ActOnArrayTypeTrait(ArrayTypeTrait ATT,
5649                                      SourceLocation KWLoc,
5650                                      ParsedType Ty,
5651                                      Expr* DimExpr,
5652                                      SourceLocation RParen) {
5653   TypeSourceInfo *TSInfo;
5654   QualType T = GetTypeFromParser(Ty, &TSInfo);
5655   if (!TSInfo)
5656     TSInfo = Context.getTrivialTypeSourceInfo(T);
5657 
5658   return BuildArrayTypeTrait(ATT, KWLoc, TSInfo, DimExpr, RParen);
5659 }
5660 
5661 static uint64_t EvaluateArrayTypeTrait(Sema &Self, ArrayTypeTrait ATT,
5662                                            QualType T, Expr *DimExpr,
5663                                            SourceLocation KeyLoc) {
5664   assert(!T->isDependentType() && "Cannot evaluate traits of dependent type");
5665 
5666   switch(ATT) {
5667   case ATT_ArrayRank:
5668     if (T->isArrayType()) {
5669       unsigned Dim = 0;
5670       while (const ArrayType *AT = Self.Context.getAsArrayType(T)) {
5671         ++Dim;
5672         T = AT->getElementType();
5673       }
5674       return Dim;
5675     }
5676     return 0;
5677 
5678   case ATT_ArrayExtent: {
5679     llvm::APSInt Value;
5680     uint64_t Dim;
5681     if (Self.VerifyIntegerConstantExpression(
5682                 DimExpr, &Value, diag::err_dimension_expr_not_constant_integer)
5683             .isInvalid())
5684       return 0;
5685     if (Value.isSigned() && Value.isNegative()) {
5686       Self.Diag(KeyLoc, diag::err_dimension_expr_not_constant_integer)
5687         << DimExpr->getSourceRange();
5688       return 0;
5689     }
5690     Dim = Value.getLimitedValue();
5691 
5692     if (T->isArrayType()) {
5693       unsigned D = 0;
5694       bool Matched = false;
5695       while (const ArrayType *AT = Self.Context.getAsArrayType(T)) {
5696         if (Dim == D) {
5697           Matched = true;
5698           break;
5699         }
5700         ++D;
5701         T = AT->getElementType();
5702       }
5703 
5704       if (Matched && T->isArrayType()) {
5705         if (const ConstantArrayType *CAT = Self.Context.getAsConstantArrayType(T))
5706           return CAT->getSize().getLimitedValue();
5707       }
5708     }
5709     return 0;
5710   }
5711   }
5712   llvm_unreachable("Unknown type trait or not implemented");
5713 }
5714 
5715 ExprResult Sema::BuildArrayTypeTrait(ArrayTypeTrait ATT,
5716                                      SourceLocation KWLoc,
5717                                      TypeSourceInfo *TSInfo,
5718                                      Expr* DimExpr,
5719                                      SourceLocation RParen) {
5720   QualType T = TSInfo->getType();
5721 
5722   // FIXME: This should likely be tracked as an APInt to remove any host
5723   // assumptions about the width of size_t on the target.
5724   uint64_t Value = 0;
5725   if (!T->isDependentType())
5726     Value = EvaluateArrayTypeTrait(*this, ATT, T, DimExpr, KWLoc);
5727 
5728   // While the specification for these traits from the Embarcadero C++
5729   // compiler's documentation says the return type is 'unsigned int', Clang
5730   // returns 'size_t'. On Windows, the primary platform for the Embarcadero
5731   // compiler, there is no difference. On several other platforms this is an
5732   // important distinction.
5733   return new (Context) ArrayTypeTraitExpr(KWLoc, ATT, TSInfo, Value, DimExpr,
5734                                           RParen, Context.getSizeType());
5735 }
5736 
5737 ExprResult Sema::ActOnExpressionTrait(ExpressionTrait ET,
5738                                       SourceLocation KWLoc,
5739                                       Expr *Queried,
5740                                       SourceLocation RParen) {
5741   // If error parsing the expression, ignore.
5742   if (!Queried)
5743     return ExprError();
5744 
5745   ExprResult Result = BuildExpressionTrait(ET, KWLoc, Queried, RParen);
5746 
5747   return Result;
5748 }
5749 
5750 static bool EvaluateExpressionTrait(ExpressionTrait ET, Expr *E) {
5751   switch (ET) {
5752   case ET_IsLValueExpr: return E->isLValue();
5753   case ET_IsRValueExpr:
5754     return E->isPRValue();
5755   }
5756   llvm_unreachable("Expression trait not covered by switch");
5757 }
5758 
5759 ExprResult Sema::BuildExpressionTrait(ExpressionTrait ET,
5760                                       SourceLocation KWLoc,
5761                                       Expr *Queried,
5762                                       SourceLocation RParen) {
5763   if (Queried->isTypeDependent()) {
5764     // Delay type-checking for type-dependent expressions.
5765   } else if (Queried->hasPlaceholderType()) {
5766     ExprResult PE = CheckPlaceholderExpr(Queried);
5767     if (PE.isInvalid()) return ExprError();
5768     return BuildExpressionTrait(ET, KWLoc, PE.get(), RParen);
5769   }
5770 
5771   bool Value = EvaluateExpressionTrait(ET, Queried);
5772 
5773   return new (Context)
5774       ExpressionTraitExpr(KWLoc, ET, Queried, Value, RParen, Context.BoolTy);
5775 }
5776 
5777 QualType Sema::CheckPointerToMemberOperands(ExprResult &LHS, ExprResult &RHS,
5778                                             ExprValueKind &VK,
5779                                             SourceLocation Loc,
5780                                             bool isIndirect) {
5781   assert(!LHS.get()->hasPlaceholderType() && !RHS.get()->hasPlaceholderType() &&
5782          "placeholders should have been weeded out by now");
5783 
5784   // The LHS undergoes lvalue conversions if this is ->*, and undergoes the
5785   // temporary materialization conversion otherwise.
5786   if (isIndirect)
5787     LHS = DefaultLvalueConversion(LHS.get());
5788   else if (LHS.get()->isPRValue())
5789     LHS = TemporaryMaterializationConversion(LHS.get());
5790   if (LHS.isInvalid())
5791     return QualType();
5792 
5793   // The RHS always undergoes lvalue conversions.
5794   RHS = DefaultLvalueConversion(RHS.get());
5795   if (RHS.isInvalid()) return QualType();
5796 
5797   const char *OpSpelling = isIndirect ? "->*" : ".*";
5798   // C++ 5.5p2
5799   //   The binary operator .* [p3: ->*] binds its second operand, which shall
5800   //   be of type "pointer to member of T" (where T is a completely-defined
5801   //   class type) [...]
5802   QualType RHSType = RHS.get()->getType();
5803   const MemberPointerType *MemPtr = RHSType->getAs<MemberPointerType>();
5804   if (!MemPtr) {
5805     Diag(Loc, diag::err_bad_memptr_rhs)
5806       << OpSpelling << RHSType << RHS.get()->getSourceRange();
5807     return QualType();
5808   }
5809 
5810   QualType Class(MemPtr->getClass(), 0);
5811 
5812   // Note: C++ [expr.mptr.oper]p2-3 says that the class type into which the
5813   // member pointer points must be completely-defined. However, there is no
5814   // reason for this semantic distinction, and the rule is not enforced by
5815   // other compilers. Therefore, we do not check this property, as it is
5816   // likely to be considered a defect.
5817 
5818   // C++ 5.5p2
5819   //   [...] to its first operand, which shall be of class T or of a class of
5820   //   which T is an unambiguous and accessible base class. [p3: a pointer to
5821   //   such a class]
5822   QualType LHSType = LHS.get()->getType();
5823   if (isIndirect) {
5824     if (const PointerType *Ptr = LHSType->getAs<PointerType>())
5825       LHSType = Ptr->getPointeeType();
5826     else {
5827       Diag(Loc, diag::err_bad_memptr_lhs)
5828         << OpSpelling << 1 << LHSType
5829         << FixItHint::CreateReplacement(SourceRange(Loc), ".*");
5830       return QualType();
5831     }
5832   }
5833 
5834   if (!Context.hasSameUnqualifiedType(Class, LHSType)) {
5835     // If we want to check the hierarchy, we need a complete type.
5836     if (RequireCompleteType(Loc, LHSType, diag::err_bad_memptr_lhs,
5837                             OpSpelling, (int)isIndirect)) {
5838       return QualType();
5839     }
5840 
5841     if (!IsDerivedFrom(Loc, LHSType, Class)) {
5842       Diag(Loc, diag::err_bad_memptr_lhs) << OpSpelling
5843         << (int)isIndirect << LHS.get()->getType();
5844       return QualType();
5845     }
5846 
5847     CXXCastPath BasePath;
5848     if (CheckDerivedToBaseConversion(
5849             LHSType, Class, Loc,
5850             SourceRange(LHS.get()->getBeginLoc(), RHS.get()->getEndLoc()),
5851             &BasePath))
5852       return QualType();
5853 
5854     // Cast LHS to type of use.
5855     QualType UseType = Context.getQualifiedType(Class, LHSType.getQualifiers());
5856     if (isIndirect)
5857       UseType = Context.getPointerType(UseType);
5858     ExprValueKind VK = isIndirect ? VK_PRValue : LHS.get()->getValueKind();
5859     LHS = ImpCastExprToType(LHS.get(), UseType, CK_DerivedToBase, VK,
5860                             &BasePath);
5861   }
5862 
5863   if (isa<CXXScalarValueInitExpr>(RHS.get()->IgnoreParens())) {
5864     // Diagnose use of pointer-to-member type which when used as
5865     // the functional cast in a pointer-to-member expression.
5866     Diag(Loc, diag::err_pointer_to_member_type) << isIndirect;
5867      return QualType();
5868   }
5869 
5870   // C++ 5.5p2
5871   //   The result is an object or a function of the type specified by the
5872   //   second operand.
5873   // The cv qualifiers are the union of those in the pointer and the left side,
5874   // in accordance with 5.5p5 and 5.2.5.
5875   QualType Result = MemPtr->getPointeeType();
5876   Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers());
5877 
5878   // C++0x [expr.mptr.oper]p6:
5879   //   In a .* expression whose object expression is an rvalue, the program is
5880   //   ill-formed if the second operand is a pointer to member function with
5881   //   ref-qualifier &. In a ->* expression or in a .* expression whose object
5882   //   expression is an lvalue, the program is ill-formed if the second operand
5883   //   is a pointer to member function with ref-qualifier &&.
5884   if (const FunctionProtoType *Proto = Result->getAs<FunctionProtoType>()) {
5885     switch (Proto->getRefQualifier()) {
5886     case RQ_None:
5887       // Do nothing
5888       break;
5889 
5890     case RQ_LValue:
5891       if (!isIndirect && !LHS.get()->Classify(Context).isLValue()) {
5892         // C++2a allows functions with ref-qualifier & if their cv-qualifier-seq
5893         // is (exactly) 'const'.
5894         if (Proto->isConst() && !Proto->isVolatile())
5895           Diag(Loc, getLangOpts().CPlusPlus20
5896                         ? diag::warn_cxx17_compat_pointer_to_const_ref_member_on_rvalue
5897                         : diag::ext_pointer_to_const_ref_member_on_rvalue);
5898         else
5899           Diag(Loc, diag::err_pointer_to_member_oper_value_classify)
5900               << RHSType << 1 << LHS.get()->getSourceRange();
5901       }
5902       break;
5903 
5904     case RQ_RValue:
5905       if (isIndirect || !LHS.get()->Classify(Context).isRValue())
5906         Diag(Loc, diag::err_pointer_to_member_oper_value_classify)
5907           << RHSType << 0 << LHS.get()->getSourceRange();
5908       break;
5909     }
5910   }
5911 
5912   // C++ [expr.mptr.oper]p6:
5913   //   The result of a .* expression whose second operand is a pointer
5914   //   to a data member is of the same value category as its
5915   //   first operand. The result of a .* expression whose second
5916   //   operand is a pointer to a member function is a prvalue. The
5917   //   result of an ->* expression is an lvalue if its second operand
5918   //   is a pointer to data member and a prvalue otherwise.
5919   if (Result->isFunctionType()) {
5920     VK = VK_PRValue;
5921     return Context.BoundMemberTy;
5922   } else if (isIndirect) {
5923     VK = VK_LValue;
5924   } else {
5925     VK = LHS.get()->getValueKind();
5926   }
5927 
5928   return Result;
5929 }
5930 
5931 /// Try to convert a type to another according to C++11 5.16p3.
5932 ///
5933 /// This is part of the parameter validation for the ? operator. If either
5934 /// value operand is a class type, the two operands are attempted to be
5935 /// converted to each other. This function does the conversion in one direction.
5936 /// It returns true if the program is ill-formed and has already been diagnosed
5937 /// as such.
5938 static bool TryClassUnification(Sema &Self, Expr *From, Expr *To,
5939                                 SourceLocation QuestionLoc,
5940                                 bool &HaveConversion,
5941                                 QualType &ToType) {
5942   HaveConversion = false;
5943   ToType = To->getType();
5944 
5945   InitializationKind Kind =
5946       InitializationKind::CreateCopy(To->getBeginLoc(), SourceLocation());
5947   // C++11 5.16p3
5948   //   The process for determining whether an operand expression E1 of type T1
5949   //   can be converted to match an operand expression E2 of type T2 is defined
5950   //   as follows:
5951   //   -- If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
5952   //      implicitly converted to type "lvalue reference to T2", subject to the
5953   //      constraint that in the conversion the reference must bind directly to
5954   //      an lvalue.
5955   //   -- If E2 is an xvalue: E1 can be converted to match E2 if E1 can be
5956   //      implicitly converted to the type "rvalue reference to R2", subject to
5957   //      the constraint that the reference must bind directly.
5958   if (To->isGLValue()) {
5959     QualType T = Self.Context.getReferenceQualifiedType(To);
5960     InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
5961 
5962     InitializationSequence InitSeq(Self, Entity, Kind, From);
5963     if (InitSeq.isDirectReferenceBinding()) {
5964       ToType = T;
5965       HaveConversion = true;
5966       return false;
5967     }
5968 
5969     if (InitSeq.isAmbiguous())
5970       return InitSeq.Diagnose(Self, Entity, Kind, From);
5971   }
5972 
5973   //   -- If E2 is an rvalue, or if the conversion above cannot be done:
5974   //      -- if E1 and E2 have class type, and the underlying class types are
5975   //         the same or one is a base class of the other:
5976   QualType FTy = From->getType();
5977   QualType TTy = To->getType();
5978   const RecordType *FRec = FTy->getAs<RecordType>();
5979   const RecordType *TRec = TTy->getAs<RecordType>();
5980   bool FDerivedFromT = FRec && TRec && FRec != TRec &&
5981                        Self.IsDerivedFrom(QuestionLoc, FTy, TTy);
5982   if (FRec && TRec && (FRec == TRec || FDerivedFromT ||
5983                        Self.IsDerivedFrom(QuestionLoc, TTy, FTy))) {
5984     //         E1 can be converted to match E2 if the class of T2 is the
5985     //         same type as, or a base class of, the class of T1, and
5986     //         [cv2 > cv1].
5987     if (FRec == TRec || FDerivedFromT) {
5988       if (TTy.isAtLeastAsQualifiedAs(FTy)) {
5989         InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
5990         InitializationSequence InitSeq(Self, Entity, Kind, From);
5991         if (InitSeq) {
5992           HaveConversion = true;
5993           return false;
5994         }
5995 
5996         if (InitSeq.isAmbiguous())
5997           return InitSeq.Diagnose(Self, Entity, Kind, From);
5998       }
5999     }
6000 
6001     return false;
6002   }
6003 
6004   //     -- Otherwise: E1 can be converted to match E2 if E1 can be
6005   //        implicitly converted to the type that expression E2 would have
6006   //        if E2 were converted to an rvalue (or the type it has, if E2 is
6007   //        an rvalue).
6008   //
6009   // This actually refers very narrowly to the lvalue-to-rvalue conversion, not
6010   // to the array-to-pointer or function-to-pointer conversions.
6011   TTy = TTy.getNonLValueExprType(Self.Context);
6012 
6013   InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
6014   InitializationSequence InitSeq(Self, Entity, Kind, From);
6015   HaveConversion = !InitSeq.Failed();
6016   ToType = TTy;
6017   if (InitSeq.isAmbiguous())
6018     return InitSeq.Diagnose(Self, Entity, Kind, From);
6019 
6020   return false;
6021 }
6022 
6023 /// Try to find a common type for two according to C++0x 5.16p5.
6024 ///
6025 /// This is part of the parameter validation for the ? operator. If either
6026 /// value operand is a class type, overload resolution is used to find a
6027 /// conversion to a common type.
6028 static bool FindConditionalOverload(Sema &Self, ExprResult &LHS, ExprResult &RHS,
6029                                     SourceLocation QuestionLoc) {
6030   Expr *Args[2] = { LHS.get(), RHS.get() };
6031   OverloadCandidateSet CandidateSet(QuestionLoc,
6032                                     OverloadCandidateSet::CSK_Operator);
6033   Self.AddBuiltinOperatorCandidates(OO_Conditional, QuestionLoc, Args,
6034                                     CandidateSet);
6035 
6036   OverloadCandidateSet::iterator Best;
6037   switch (CandidateSet.BestViableFunction(Self, QuestionLoc, Best)) {
6038     case OR_Success: {
6039       // We found a match. Perform the conversions on the arguments and move on.
6040       ExprResult LHSRes = Self.PerformImplicitConversion(
6041           LHS.get(), Best->BuiltinParamTypes[0], Best->Conversions[0],
6042           Sema::AA_Converting);
6043       if (LHSRes.isInvalid())
6044         break;
6045       LHS = LHSRes;
6046 
6047       ExprResult RHSRes = Self.PerformImplicitConversion(
6048           RHS.get(), Best->BuiltinParamTypes[1], Best->Conversions[1],
6049           Sema::AA_Converting);
6050       if (RHSRes.isInvalid())
6051         break;
6052       RHS = RHSRes;
6053       if (Best->Function)
6054         Self.MarkFunctionReferenced(QuestionLoc, Best->Function);
6055       return false;
6056     }
6057 
6058     case OR_No_Viable_Function:
6059 
6060       // Emit a better diagnostic if one of the expressions is a null pointer
6061       // constant and the other is a pointer type. In this case, the user most
6062       // likely forgot to take the address of the other expression.
6063       if (Self.DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
6064         return true;
6065 
6066       Self.Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
6067         << LHS.get()->getType() << RHS.get()->getType()
6068         << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6069       return true;
6070 
6071     case OR_Ambiguous:
6072       Self.Diag(QuestionLoc, diag::err_conditional_ambiguous_ovl)
6073         << LHS.get()->getType() << RHS.get()->getType()
6074         << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6075       // FIXME: Print the possible common types by printing the return types of
6076       // the viable candidates.
6077       break;
6078 
6079     case OR_Deleted:
6080       llvm_unreachable("Conditional operator has only built-in overloads");
6081   }
6082   return true;
6083 }
6084 
6085 /// Perform an "extended" implicit conversion as returned by
6086 /// TryClassUnification.
6087 static bool ConvertForConditional(Sema &Self, ExprResult &E, QualType T) {
6088   InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
6089   InitializationKind Kind =
6090       InitializationKind::CreateCopy(E.get()->getBeginLoc(), SourceLocation());
6091   Expr *Arg = E.get();
6092   InitializationSequence InitSeq(Self, Entity, Kind, Arg);
6093   ExprResult Result = InitSeq.Perform(Self, Entity, Kind, Arg);
6094   if (Result.isInvalid())
6095     return true;
6096 
6097   E = Result;
6098   return false;
6099 }
6100 
6101 // Check the condition operand of ?: to see if it is valid for the GCC
6102 // extension.
6103 static bool isValidVectorForConditionalCondition(ASTContext &Ctx,
6104                                                  QualType CondTy) {
6105   if (!CondTy->isVectorType() && !CondTy->isExtVectorType())
6106     return false;
6107   const QualType EltTy =
6108       cast<VectorType>(CondTy.getCanonicalType())->getElementType();
6109   assert(!EltTy->isEnumeralType() && "Vectors cant be enum types");
6110   return EltTy->isIntegralType(Ctx);
6111 }
6112 
6113 static bool isValidSizelessVectorForConditionalCondition(ASTContext &Ctx,
6114                                                          QualType CondTy) {
6115   if (!CondTy->isVLSTBuiltinType())
6116     return false;
6117   const QualType EltTy =
6118       cast<BuiltinType>(CondTy.getCanonicalType())->getSveEltType(Ctx);
6119   assert(!EltTy->isEnumeralType() && "Vectors cant be enum types");
6120   return EltTy->isIntegralType(Ctx);
6121 }
6122 
6123 QualType Sema::CheckVectorConditionalTypes(ExprResult &Cond, ExprResult &LHS,
6124                                            ExprResult &RHS,
6125                                            SourceLocation QuestionLoc) {
6126   LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
6127   RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
6128 
6129   QualType CondType = Cond.get()->getType();
6130   const auto *CondVT = CondType->castAs<VectorType>();
6131   QualType CondElementTy = CondVT->getElementType();
6132   unsigned CondElementCount = CondVT->getNumElements();
6133   QualType LHSType = LHS.get()->getType();
6134   const auto *LHSVT = LHSType->getAs<VectorType>();
6135   QualType RHSType = RHS.get()->getType();
6136   const auto *RHSVT = RHSType->getAs<VectorType>();
6137 
6138   QualType ResultType;
6139 
6140 
6141   if (LHSVT && RHSVT) {
6142     if (isa<ExtVectorType>(CondVT) != isa<ExtVectorType>(LHSVT)) {
6143       Diag(QuestionLoc, diag::err_conditional_vector_cond_result_mismatch)
6144           << /*isExtVector*/ isa<ExtVectorType>(CondVT);
6145       return {};
6146     }
6147 
6148     // If both are vector types, they must be the same type.
6149     if (!Context.hasSameType(LHSType, RHSType)) {
6150       Diag(QuestionLoc, diag::err_conditional_vector_mismatched)
6151           << LHSType << RHSType;
6152       return {};
6153     }
6154     ResultType = LHSType;
6155   } else if (LHSVT || RHSVT) {
6156     ResultType = CheckVectorOperands(
6157         LHS, RHS, QuestionLoc, /*isCompAssign*/ false, /*AllowBothBool*/ true,
6158         /*AllowBoolConversions*/ false,
6159         /*AllowBoolOperation*/ true,
6160         /*ReportInvalid*/ true);
6161     if (ResultType.isNull())
6162       return {};
6163   } else {
6164     // Both are scalar.
6165     QualType ResultElementTy;
6166     LHSType = LHSType.getCanonicalType().getUnqualifiedType();
6167     RHSType = RHSType.getCanonicalType().getUnqualifiedType();
6168 
6169     if (Context.hasSameType(LHSType, RHSType))
6170       ResultElementTy = LHSType;
6171     else
6172       ResultElementTy =
6173           UsualArithmeticConversions(LHS, RHS, QuestionLoc, ACK_Conditional);
6174 
6175     if (ResultElementTy->isEnumeralType()) {
6176       Diag(QuestionLoc, diag::err_conditional_vector_operand_type)
6177           << ResultElementTy;
6178       return {};
6179     }
6180     if (CondType->isExtVectorType())
6181       ResultType =
6182           Context.getExtVectorType(ResultElementTy, CondVT->getNumElements());
6183     else
6184       ResultType = Context.getVectorType(
6185           ResultElementTy, CondVT->getNumElements(), VectorType::GenericVector);
6186 
6187     LHS = ImpCastExprToType(LHS.get(), ResultType, CK_VectorSplat);
6188     RHS = ImpCastExprToType(RHS.get(), ResultType, CK_VectorSplat);
6189   }
6190 
6191   assert(!ResultType.isNull() && ResultType->isVectorType() &&
6192          (!CondType->isExtVectorType() || ResultType->isExtVectorType()) &&
6193          "Result should have been a vector type");
6194   auto *ResultVectorTy = ResultType->castAs<VectorType>();
6195   QualType ResultElementTy = ResultVectorTy->getElementType();
6196   unsigned ResultElementCount = ResultVectorTy->getNumElements();
6197 
6198   if (ResultElementCount != CondElementCount) {
6199     Diag(QuestionLoc, diag::err_conditional_vector_size) << CondType
6200                                                          << ResultType;
6201     return {};
6202   }
6203 
6204   if (Context.getTypeSize(ResultElementTy) !=
6205       Context.getTypeSize(CondElementTy)) {
6206     Diag(QuestionLoc, diag::err_conditional_vector_element_size) << CondType
6207                                                                  << ResultType;
6208     return {};
6209   }
6210 
6211   return ResultType;
6212 }
6213 
6214 QualType Sema::CheckSizelessVectorConditionalTypes(ExprResult &Cond,
6215                                                    ExprResult &LHS,
6216                                                    ExprResult &RHS,
6217                                                    SourceLocation QuestionLoc) {
6218   LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
6219   RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
6220 
6221   QualType CondType = Cond.get()->getType();
6222   const auto *CondBT = CondType->castAs<BuiltinType>();
6223   QualType CondElementTy = CondBT->getSveEltType(Context);
6224   llvm::ElementCount CondElementCount =
6225       Context.getBuiltinVectorTypeInfo(CondBT).EC;
6226 
6227   QualType LHSType = LHS.get()->getType();
6228   const auto *LHSBT =
6229       LHSType->isVLSTBuiltinType() ? LHSType->getAs<BuiltinType>() : nullptr;
6230   QualType RHSType = RHS.get()->getType();
6231   const auto *RHSBT =
6232       RHSType->isVLSTBuiltinType() ? RHSType->getAs<BuiltinType>() : nullptr;
6233 
6234   QualType ResultType;
6235 
6236   if (LHSBT && RHSBT) {
6237     // If both are sizeless vector types, they must be the same type.
6238     if (!Context.hasSameType(LHSType, RHSType)) {
6239       Diag(QuestionLoc, diag::err_conditional_vector_mismatched)
6240           << LHSType << RHSType;
6241       return QualType();
6242     }
6243     ResultType = LHSType;
6244   } else if (LHSBT || RHSBT) {
6245     ResultType = CheckSizelessVectorOperands(
6246         LHS, RHS, QuestionLoc, /*IsCompAssign*/ false, ACK_Conditional);
6247     if (ResultType.isNull())
6248       return QualType();
6249   } else {
6250     // Both are scalar so splat
6251     QualType ResultElementTy;
6252     LHSType = LHSType.getCanonicalType().getUnqualifiedType();
6253     RHSType = RHSType.getCanonicalType().getUnqualifiedType();
6254 
6255     if (Context.hasSameType(LHSType, RHSType))
6256       ResultElementTy = LHSType;
6257     else
6258       ResultElementTy =
6259           UsualArithmeticConversions(LHS, RHS, QuestionLoc, ACK_Conditional);
6260 
6261     if (ResultElementTy->isEnumeralType()) {
6262       Diag(QuestionLoc, diag::err_conditional_vector_operand_type)
6263           << ResultElementTy;
6264       return QualType();
6265     }
6266 
6267     ResultType = Context.getScalableVectorType(
6268         ResultElementTy, CondElementCount.getKnownMinValue());
6269 
6270     LHS = ImpCastExprToType(LHS.get(), ResultType, CK_VectorSplat);
6271     RHS = ImpCastExprToType(RHS.get(), ResultType, CK_VectorSplat);
6272   }
6273 
6274   assert(!ResultType.isNull() && ResultType->isVLSTBuiltinType() &&
6275          "Result should have been a vector type");
6276   auto *ResultBuiltinTy = ResultType->castAs<BuiltinType>();
6277   QualType ResultElementTy = ResultBuiltinTy->getSveEltType(Context);
6278   llvm::ElementCount ResultElementCount =
6279       Context.getBuiltinVectorTypeInfo(ResultBuiltinTy).EC;
6280 
6281   if (ResultElementCount != CondElementCount) {
6282     Diag(QuestionLoc, diag::err_conditional_vector_size)
6283         << CondType << ResultType;
6284     return QualType();
6285   }
6286 
6287   if (Context.getTypeSize(ResultElementTy) !=
6288       Context.getTypeSize(CondElementTy)) {
6289     Diag(QuestionLoc, diag::err_conditional_vector_element_size)
6290         << CondType << ResultType;
6291     return QualType();
6292   }
6293 
6294   return ResultType;
6295 }
6296 
6297 /// Check the operands of ?: under C++ semantics.
6298 ///
6299 /// See C++ [expr.cond]. Note that LHS is never null, even for the GNU x ?: y
6300 /// extension. In this case, LHS == Cond. (But they're not aliases.)
6301 ///
6302 /// This function also implements GCC's vector extension and the
6303 /// OpenCL/ext_vector_type extension for conditionals. The vector extensions
6304 /// permit the use of a?b:c where the type of a is that of a integer vector with
6305 /// the same number of elements and size as the vectors of b and c. If one of
6306 /// either b or c is a scalar it is implicitly converted to match the type of
6307 /// the vector. Otherwise the expression is ill-formed. If both b and c are
6308 /// scalars, then b and c are checked and converted to the type of a if
6309 /// possible.
6310 ///
6311 /// The expressions are evaluated differently for GCC's and OpenCL's extensions.
6312 /// For the GCC extension, the ?: operator is evaluated as
6313 ///   (a[0] != 0 ? b[0] : c[0], .. , a[n] != 0 ? b[n] : c[n]).
6314 /// For the OpenCL extensions, the ?: operator is evaluated as
6315 ///   (most-significant-bit-set(a[0])  ? b[0] : c[0], .. ,
6316 ///    most-significant-bit-set(a[n]) ? b[n] : c[n]).
6317 QualType Sema::CXXCheckConditionalOperands(ExprResult &Cond, ExprResult &LHS,
6318                                            ExprResult &RHS, ExprValueKind &VK,
6319                                            ExprObjectKind &OK,
6320                                            SourceLocation QuestionLoc) {
6321   // FIXME: Handle C99's complex types, block pointers and Obj-C++ interface
6322   // pointers.
6323 
6324   // Assume r-value.
6325   VK = VK_PRValue;
6326   OK = OK_Ordinary;
6327   bool IsVectorConditional =
6328       isValidVectorForConditionalCondition(Context, Cond.get()->getType());
6329 
6330   bool IsSizelessVectorConditional =
6331       isValidSizelessVectorForConditionalCondition(Context,
6332                                                    Cond.get()->getType());
6333 
6334   // C++11 [expr.cond]p1
6335   //   The first expression is contextually converted to bool.
6336   if (!Cond.get()->isTypeDependent()) {
6337     ExprResult CondRes = IsVectorConditional || IsSizelessVectorConditional
6338                              ? DefaultFunctionArrayLvalueConversion(Cond.get())
6339                              : CheckCXXBooleanCondition(Cond.get());
6340     if (CondRes.isInvalid())
6341       return QualType();
6342     Cond = CondRes;
6343   } else {
6344     // To implement C++, the first expression typically doesn't alter the result
6345     // type of the conditional, however the GCC compatible vector extension
6346     // changes the result type to be that of the conditional. Since we cannot
6347     // know if this is a vector extension here, delay the conversion of the
6348     // LHS/RHS below until later.
6349     return Context.DependentTy;
6350   }
6351 
6352 
6353   // Either of the arguments dependent?
6354   if (LHS.get()->isTypeDependent() || RHS.get()->isTypeDependent())
6355     return Context.DependentTy;
6356 
6357   // C++11 [expr.cond]p2
6358   //   If either the second or the third operand has type (cv) void, ...
6359   QualType LTy = LHS.get()->getType();
6360   QualType RTy = RHS.get()->getType();
6361   bool LVoid = LTy->isVoidType();
6362   bool RVoid = RTy->isVoidType();
6363   if (LVoid || RVoid) {
6364     //   ... one of the following shall hold:
6365     //   -- The second or the third operand (but not both) is a (possibly
6366     //      parenthesized) throw-expression; the result is of the type
6367     //      and value category of the other.
6368     bool LThrow = isa<CXXThrowExpr>(LHS.get()->IgnoreParenImpCasts());
6369     bool RThrow = isa<CXXThrowExpr>(RHS.get()->IgnoreParenImpCasts());
6370 
6371     // Void expressions aren't legal in the vector-conditional expressions.
6372     if (IsVectorConditional) {
6373       SourceRange DiagLoc =
6374           LVoid ? LHS.get()->getSourceRange() : RHS.get()->getSourceRange();
6375       bool IsThrow = LVoid ? LThrow : RThrow;
6376       Diag(DiagLoc.getBegin(), diag::err_conditional_vector_has_void)
6377           << DiagLoc << IsThrow;
6378       return QualType();
6379     }
6380 
6381     if (LThrow != RThrow) {
6382       Expr *NonThrow = LThrow ? RHS.get() : LHS.get();
6383       VK = NonThrow->getValueKind();
6384       // DR (no number yet): the result is a bit-field if the
6385       // non-throw-expression operand is a bit-field.
6386       OK = NonThrow->getObjectKind();
6387       return NonThrow->getType();
6388     }
6389 
6390     //   -- Both the second and third operands have type void; the result is of
6391     //      type void and is a prvalue.
6392     if (LVoid && RVoid)
6393       return Context.VoidTy;
6394 
6395     // Neither holds, error.
6396     Diag(QuestionLoc, diag::err_conditional_void_nonvoid)
6397       << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
6398       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6399     return QualType();
6400   }
6401 
6402   // Neither is void.
6403   if (IsVectorConditional)
6404     return CheckVectorConditionalTypes(Cond, LHS, RHS, QuestionLoc);
6405 
6406   if (IsSizelessVectorConditional)
6407     return CheckSizelessVectorConditionalTypes(Cond, LHS, RHS, QuestionLoc);
6408 
6409   // C++11 [expr.cond]p3
6410   //   Otherwise, if the second and third operand have different types, and
6411   //   either has (cv) class type [...] an attempt is made to convert each of
6412   //   those operands to the type of the other.
6413   if (!Context.hasSameType(LTy, RTy) &&
6414       (LTy->isRecordType() || RTy->isRecordType())) {
6415     // These return true if a single direction is already ambiguous.
6416     QualType L2RType, R2LType;
6417     bool HaveL2R, HaveR2L;
6418     if (TryClassUnification(*this, LHS.get(), RHS.get(), QuestionLoc, HaveL2R, L2RType))
6419       return QualType();
6420     if (TryClassUnification(*this, RHS.get(), LHS.get(), QuestionLoc, HaveR2L, R2LType))
6421       return QualType();
6422 
6423     //   If both can be converted, [...] the program is ill-formed.
6424     if (HaveL2R && HaveR2L) {
6425       Diag(QuestionLoc, diag::err_conditional_ambiguous)
6426         << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6427       return QualType();
6428     }
6429 
6430     //   If exactly one conversion is possible, that conversion is applied to
6431     //   the chosen operand and the converted operands are used in place of the
6432     //   original operands for the remainder of this section.
6433     if (HaveL2R) {
6434       if (ConvertForConditional(*this, LHS, L2RType) || LHS.isInvalid())
6435         return QualType();
6436       LTy = LHS.get()->getType();
6437     } else if (HaveR2L) {
6438       if (ConvertForConditional(*this, RHS, R2LType) || RHS.isInvalid())
6439         return QualType();
6440       RTy = RHS.get()->getType();
6441     }
6442   }
6443 
6444   // C++11 [expr.cond]p3
6445   //   if both are glvalues of the same value category and the same type except
6446   //   for cv-qualification, an attempt is made to convert each of those
6447   //   operands to the type of the other.
6448   // FIXME:
6449   //   Resolving a defect in P0012R1: we extend this to cover all cases where
6450   //   one of the operands is reference-compatible with the other, in order
6451   //   to support conditionals between functions differing in noexcept. This
6452   //   will similarly cover difference in array bounds after P0388R4.
6453   // FIXME: If LTy and RTy have a composite pointer type, should we convert to
6454   //   that instead?
6455   ExprValueKind LVK = LHS.get()->getValueKind();
6456   ExprValueKind RVK = RHS.get()->getValueKind();
6457   if (!Context.hasSameType(LTy, RTy) && LVK == RVK && LVK != VK_PRValue) {
6458     // DerivedToBase was already handled by the class-specific case above.
6459     // FIXME: Should we allow ObjC conversions here?
6460     const ReferenceConversions AllowedConversions =
6461         ReferenceConversions::Qualification |
6462         ReferenceConversions::NestedQualification |
6463         ReferenceConversions::Function;
6464 
6465     ReferenceConversions RefConv;
6466     if (CompareReferenceRelationship(QuestionLoc, LTy, RTy, &RefConv) ==
6467             Ref_Compatible &&
6468         !(RefConv & ~AllowedConversions) &&
6469         // [...] subject to the constraint that the reference must bind
6470         // directly [...]
6471         !RHS.get()->refersToBitField() && !RHS.get()->refersToVectorElement()) {
6472       RHS = ImpCastExprToType(RHS.get(), LTy, CK_NoOp, RVK);
6473       RTy = RHS.get()->getType();
6474     } else if (CompareReferenceRelationship(QuestionLoc, RTy, LTy, &RefConv) ==
6475                    Ref_Compatible &&
6476                !(RefConv & ~AllowedConversions) &&
6477                !LHS.get()->refersToBitField() &&
6478                !LHS.get()->refersToVectorElement()) {
6479       LHS = ImpCastExprToType(LHS.get(), RTy, CK_NoOp, LVK);
6480       LTy = LHS.get()->getType();
6481     }
6482   }
6483 
6484   // C++11 [expr.cond]p4
6485   //   If the second and third operands are glvalues of the same value
6486   //   category and have the same type, the result is of that type and
6487   //   value category and it is a bit-field if the second or the third
6488   //   operand is a bit-field, or if both are bit-fields.
6489   // We only extend this to bitfields, not to the crazy other kinds of
6490   // l-values.
6491   bool Same = Context.hasSameType(LTy, RTy);
6492   if (Same && LVK == RVK && LVK != VK_PRValue &&
6493       LHS.get()->isOrdinaryOrBitFieldObject() &&
6494       RHS.get()->isOrdinaryOrBitFieldObject()) {
6495     VK = LHS.get()->getValueKind();
6496     if (LHS.get()->getObjectKind() == OK_BitField ||
6497         RHS.get()->getObjectKind() == OK_BitField)
6498       OK = OK_BitField;
6499 
6500     // If we have function pointer types, unify them anyway to unify their
6501     // exception specifications, if any.
6502     if (LTy->isFunctionPointerType() || LTy->isMemberFunctionPointerType()) {
6503       Qualifiers Qs = LTy.getQualifiers();
6504       LTy = FindCompositePointerType(QuestionLoc, LHS, RHS,
6505                                      /*ConvertArgs*/false);
6506       LTy = Context.getQualifiedType(LTy, Qs);
6507 
6508       assert(!LTy.isNull() && "failed to find composite pointer type for "
6509                               "canonically equivalent function ptr types");
6510       assert(Context.hasSameType(LTy, RTy) && "bad composite pointer type");
6511     }
6512 
6513     return LTy;
6514   }
6515 
6516   // C++11 [expr.cond]p5
6517   //   Otherwise, the result is a prvalue. If the second and third operands
6518   //   do not have the same type, and either has (cv) class type, ...
6519   if (!Same && (LTy->isRecordType() || RTy->isRecordType())) {
6520     //   ... overload resolution is used to determine the conversions (if any)
6521     //   to be applied to the operands. If the overload resolution fails, the
6522     //   program is ill-formed.
6523     if (FindConditionalOverload(*this, LHS, RHS, QuestionLoc))
6524       return QualType();
6525   }
6526 
6527   // C++11 [expr.cond]p6
6528   //   Lvalue-to-rvalue, array-to-pointer, and function-to-pointer standard
6529   //   conversions are performed on the second and third operands.
6530   LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
6531   RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
6532   if (LHS.isInvalid() || RHS.isInvalid())
6533     return QualType();
6534   LTy = LHS.get()->getType();
6535   RTy = RHS.get()->getType();
6536 
6537   //   After those conversions, one of the following shall hold:
6538   //   -- The second and third operands have the same type; the result
6539   //      is of that type. If the operands have class type, the result
6540   //      is a prvalue temporary of the result type, which is
6541   //      copy-initialized from either the second operand or the third
6542   //      operand depending on the value of the first operand.
6543   if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy)) {
6544     if (LTy->isRecordType()) {
6545       // The operands have class type. Make a temporary copy.
6546       InitializedEntity Entity = InitializedEntity::InitializeTemporary(LTy);
6547 
6548       ExprResult LHSCopy = PerformCopyInitialization(Entity,
6549                                                      SourceLocation(),
6550                                                      LHS);
6551       if (LHSCopy.isInvalid())
6552         return QualType();
6553 
6554       ExprResult RHSCopy = PerformCopyInitialization(Entity,
6555                                                      SourceLocation(),
6556                                                      RHS);
6557       if (RHSCopy.isInvalid())
6558         return QualType();
6559 
6560       LHS = LHSCopy;
6561       RHS = RHSCopy;
6562     }
6563 
6564     // If we have function pointer types, unify them anyway to unify their
6565     // exception specifications, if any.
6566     if (LTy->isFunctionPointerType() || LTy->isMemberFunctionPointerType()) {
6567       LTy = FindCompositePointerType(QuestionLoc, LHS, RHS);
6568       assert(!LTy.isNull() && "failed to find composite pointer type for "
6569                               "canonically equivalent function ptr types");
6570     }
6571 
6572     return LTy;
6573   }
6574 
6575   // Extension: conditional operator involving vector types.
6576   if (LTy->isVectorType() || RTy->isVectorType())
6577     return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/ false,
6578                                /*AllowBothBool*/ true,
6579                                /*AllowBoolConversions*/ false,
6580                                /*AllowBoolOperation*/ false,
6581                                /*ReportInvalid*/ true);
6582 
6583   //   -- The second and third operands have arithmetic or enumeration type;
6584   //      the usual arithmetic conversions are performed to bring them to a
6585   //      common type, and the result is of that type.
6586   if (LTy->isArithmeticType() && RTy->isArithmeticType()) {
6587     QualType ResTy =
6588         UsualArithmeticConversions(LHS, RHS, QuestionLoc, ACK_Conditional);
6589     if (LHS.isInvalid() || RHS.isInvalid())
6590       return QualType();
6591     if (ResTy.isNull()) {
6592       Diag(QuestionLoc,
6593            diag::err_typecheck_cond_incompatible_operands) << LTy << RTy
6594         << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6595       return QualType();
6596     }
6597 
6598     LHS = ImpCastExprToType(LHS.get(), ResTy, PrepareScalarCast(LHS, ResTy));
6599     RHS = ImpCastExprToType(RHS.get(), ResTy, PrepareScalarCast(RHS, ResTy));
6600 
6601     return ResTy;
6602   }
6603 
6604   //   -- The second and third operands have pointer type, or one has pointer
6605   //      type and the other is a null pointer constant, or both are null
6606   //      pointer constants, at least one of which is non-integral; pointer
6607   //      conversions and qualification conversions are performed to bring them
6608   //      to their composite pointer type. The result is of the composite
6609   //      pointer type.
6610   //   -- The second and third operands have pointer to member type, or one has
6611   //      pointer to member type and the other is a null pointer constant;
6612   //      pointer to member conversions and qualification conversions are
6613   //      performed to bring them to a common type, whose cv-qualification
6614   //      shall match the cv-qualification of either the second or the third
6615   //      operand. The result is of the common type.
6616   QualType Composite = FindCompositePointerType(QuestionLoc, LHS, RHS);
6617   if (!Composite.isNull())
6618     return Composite;
6619 
6620   // Similarly, attempt to find composite type of two objective-c pointers.
6621   Composite = FindCompositeObjCPointerType(LHS, RHS, QuestionLoc);
6622   if (LHS.isInvalid() || RHS.isInvalid())
6623     return QualType();
6624   if (!Composite.isNull())
6625     return Composite;
6626 
6627   // Check if we are using a null with a non-pointer type.
6628   if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
6629     return QualType();
6630 
6631   Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
6632     << LHS.get()->getType() << RHS.get()->getType()
6633     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6634   return QualType();
6635 }
6636 
6637 static FunctionProtoType::ExceptionSpecInfo
6638 mergeExceptionSpecs(Sema &S, FunctionProtoType::ExceptionSpecInfo ESI1,
6639                     FunctionProtoType::ExceptionSpecInfo ESI2,
6640                     SmallVectorImpl<QualType> &ExceptionTypeStorage) {
6641   ExceptionSpecificationType EST1 = ESI1.Type;
6642   ExceptionSpecificationType EST2 = ESI2.Type;
6643 
6644   // If either of them can throw anything, that is the result.
6645   if (EST1 == EST_None) return ESI1;
6646   if (EST2 == EST_None) return ESI2;
6647   if (EST1 == EST_MSAny) return ESI1;
6648   if (EST2 == EST_MSAny) return ESI2;
6649   if (EST1 == EST_NoexceptFalse) return ESI1;
6650   if (EST2 == EST_NoexceptFalse) return ESI2;
6651 
6652   // If either of them is non-throwing, the result is the other.
6653   if (EST1 == EST_NoThrow) return ESI2;
6654   if (EST2 == EST_NoThrow) return ESI1;
6655   if (EST1 == EST_DynamicNone) return ESI2;
6656   if (EST2 == EST_DynamicNone) return ESI1;
6657   if (EST1 == EST_BasicNoexcept) return ESI2;
6658   if (EST2 == EST_BasicNoexcept) return ESI1;
6659   if (EST1 == EST_NoexceptTrue) return ESI2;
6660   if (EST2 == EST_NoexceptTrue) return ESI1;
6661 
6662   // If we're left with value-dependent computed noexcept expressions, we're
6663   // stuck. Before C++17, we can just drop the exception specification entirely,
6664   // since it's not actually part of the canonical type. And this should never
6665   // happen in C++17, because it would mean we were computing the composite
6666   // pointer type of dependent types, which should never happen.
6667   if (EST1 == EST_DependentNoexcept || EST2 == EST_DependentNoexcept) {
6668     assert(!S.getLangOpts().CPlusPlus17 &&
6669            "computing composite pointer type of dependent types");
6670     return FunctionProtoType::ExceptionSpecInfo();
6671   }
6672 
6673   // Switch over the possibilities so that people adding new values know to
6674   // update this function.
6675   switch (EST1) {
6676   case EST_None:
6677   case EST_DynamicNone:
6678   case EST_MSAny:
6679   case EST_BasicNoexcept:
6680   case EST_DependentNoexcept:
6681   case EST_NoexceptFalse:
6682   case EST_NoexceptTrue:
6683   case EST_NoThrow:
6684     llvm_unreachable("handled above");
6685 
6686   case EST_Dynamic: {
6687     // This is the fun case: both exception specifications are dynamic. Form
6688     // the union of the two lists.
6689     assert(EST2 == EST_Dynamic && "other cases should already be handled");
6690     llvm::SmallPtrSet<QualType, 8> Found;
6691     for (auto &Exceptions : {ESI1.Exceptions, ESI2.Exceptions})
6692       for (QualType E : Exceptions)
6693         if (Found.insert(S.Context.getCanonicalType(E)).second)
6694           ExceptionTypeStorage.push_back(E);
6695 
6696     FunctionProtoType::ExceptionSpecInfo Result(EST_Dynamic);
6697     Result.Exceptions = ExceptionTypeStorage;
6698     return Result;
6699   }
6700 
6701   case EST_Unevaluated:
6702   case EST_Uninstantiated:
6703   case EST_Unparsed:
6704     llvm_unreachable("shouldn't see unresolved exception specifications here");
6705   }
6706 
6707   llvm_unreachable("invalid ExceptionSpecificationType");
6708 }
6709 
6710 /// Find a merged pointer type and convert the two expressions to it.
6711 ///
6712 /// This finds the composite pointer type for \p E1 and \p E2 according to
6713 /// C++2a [expr.type]p3. It converts both expressions to this type and returns
6714 /// it.  It does not emit diagnostics (FIXME: that's not true if \p ConvertArgs
6715 /// is \c true).
6716 ///
6717 /// \param Loc The location of the operator requiring these two expressions to
6718 /// be converted to the composite pointer type.
6719 ///
6720 /// \param ConvertArgs If \c false, do not convert E1 and E2 to the target type.
6721 QualType Sema::FindCompositePointerType(SourceLocation Loc,
6722                                         Expr *&E1, Expr *&E2,
6723                                         bool ConvertArgs) {
6724   assert(getLangOpts().CPlusPlus && "This function assumes C++");
6725 
6726   // C++1z [expr]p14:
6727   //   The composite pointer type of two operands p1 and p2 having types T1
6728   //   and T2
6729   QualType T1 = E1->getType(), T2 = E2->getType();
6730 
6731   //   where at least one is a pointer or pointer to member type or
6732   //   std::nullptr_t is:
6733   bool T1IsPointerLike = T1->isAnyPointerType() || T1->isMemberPointerType() ||
6734                          T1->isNullPtrType();
6735   bool T2IsPointerLike = T2->isAnyPointerType() || T2->isMemberPointerType() ||
6736                          T2->isNullPtrType();
6737   if (!T1IsPointerLike && !T2IsPointerLike)
6738     return QualType();
6739 
6740   //   - if both p1 and p2 are null pointer constants, std::nullptr_t;
6741   // This can't actually happen, following the standard, but we also use this
6742   // to implement the end of [expr.conv], which hits this case.
6743   //
6744   //   - if either p1 or p2 is a null pointer constant, T2 or T1, respectively;
6745   if (T1IsPointerLike &&
6746       E2->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
6747     if (ConvertArgs)
6748       E2 = ImpCastExprToType(E2, T1, T1->isMemberPointerType()
6749                                          ? CK_NullToMemberPointer
6750                                          : CK_NullToPointer).get();
6751     return T1;
6752   }
6753   if (T2IsPointerLike &&
6754       E1->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
6755     if (ConvertArgs)
6756       E1 = ImpCastExprToType(E1, T2, T2->isMemberPointerType()
6757                                          ? CK_NullToMemberPointer
6758                                          : CK_NullToPointer).get();
6759     return T2;
6760   }
6761 
6762   // Now both have to be pointers or member pointers.
6763   if (!T1IsPointerLike || !T2IsPointerLike)
6764     return QualType();
6765   assert(!T1->isNullPtrType() && !T2->isNullPtrType() &&
6766          "nullptr_t should be a null pointer constant");
6767 
6768   struct Step {
6769     enum Kind { Pointer, ObjCPointer, MemberPointer, Array } K;
6770     // Qualifiers to apply under the step kind.
6771     Qualifiers Quals;
6772     /// The class for a pointer-to-member; a constant array type with a bound
6773     /// (if any) for an array.
6774     const Type *ClassOrBound;
6775 
6776     Step(Kind K, const Type *ClassOrBound = nullptr)
6777         : K(K), ClassOrBound(ClassOrBound) {}
6778     QualType rebuild(ASTContext &Ctx, QualType T) const {
6779       T = Ctx.getQualifiedType(T, Quals);
6780       switch (K) {
6781       case Pointer:
6782         return Ctx.getPointerType(T);
6783       case MemberPointer:
6784         return Ctx.getMemberPointerType(T, ClassOrBound);
6785       case ObjCPointer:
6786         return Ctx.getObjCObjectPointerType(T);
6787       case Array:
6788         if (auto *CAT = cast_or_null<ConstantArrayType>(ClassOrBound))
6789           return Ctx.getConstantArrayType(T, CAT->getSize(), nullptr,
6790                                           ArrayType::Normal, 0);
6791         else
6792           return Ctx.getIncompleteArrayType(T, ArrayType::Normal, 0);
6793       }
6794       llvm_unreachable("unknown step kind");
6795     }
6796   };
6797 
6798   SmallVector<Step, 8> Steps;
6799 
6800   //  - if T1 is "pointer to cv1 C1" and T2 is "pointer to cv2 C2", where C1
6801   //    is reference-related to C2 or C2 is reference-related to C1 (8.6.3),
6802   //    the cv-combined type of T1 and T2 or the cv-combined type of T2 and T1,
6803   //    respectively;
6804   //  - if T1 is "pointer to member of C1 of type cv1 U1" and T2 is "pointer
6805   //    to member of C2 of type cv2 U2" for some non-function type U, where
6806   //    C1 is reference-related to C2 or C2 is reference-related to C1, the
6807   //    cv-combined type of T2 and T1 or the cv-combined type of T1 and T2,
6808   //    respectively;
6809   //  - if T1 and T2 are similar types (4.5), the cv-combined type of T1 and
6810   //    T2;
6811   //
6812   // Dismantle T1 and T2 to simultaneously determine whether they are similar
6813   // and to prepare to form the cv-combined type if so.
6814   QualType Composite1 = T1;
6815   QualType Composite2 = T2;
6816   unsigned NeedConstBefore = 0;
6817   while (true) {
6818     assert(!Composite1.isNull() && !Composite2.isNull());
6819 
6820     Qualifiers Q1, Q2;
6821     Composite1 = Context.getUnqualifiedArrayType(Composite1, Q1);
6822     Composite2 = Context.getUnqualifiedArrayType(Composite2, Q2);
6823 
6824     // Top-level qualifiers are ignored. Merge at all lower levels.
6825     if (!Steps.empty()) {
6826       // Find the qualifier union: (approximately) the unique minimal set of
6827       // qualifiers that is compatible with both types.
6828       Qualifiers Quals = Qualifiers::fromCVRUMask(Q1.getCVRUQualifiers() |
6829                                                   Q2.getCVRUQualifiers());
6830 
6831       // Under one level of pointer or pointer-to-member, we can change to an
6832       // unambiguous compatible address space.
6833       if (Q1.getAddressSpace() == Q2.getAddressSpace()) {
6834         Quals.setAddressSpace(Q1.getAddressSpace());
6835       } else if (Steps.size() == 1) {
6836         bool MaybeQ1 = Q1.isAddressSpaceSupersetOf(Q2);
6837         bool MaybeQ2 = Q2.isAddressSpaceSupersetOf(Q1);
6838         if (MaybeQ1 == MaybeQ2) {
6839           // Exception for ptr size address spaces. Should be able to choose
6840           // either address space during comparison.
6841           if (isPtrSizeAddressSpace(Q1.getAddressSpace()) ||
6842               isPtrSizeAddressSpace(Q2.getAddressSpace()))
6843             MaybeQ1 = true;
6844           else
6845             return QualType(); // No unique best address space.
6846         }
6847         Quals.setAddressSpace(MaybeQ1 ? Q1.getAddressSpace()
6848                                       : Q2.getAddressSpace());
6849       } else {
6850         return QualType();
6851       }
6852 
6853       // FIXME: In C, we merge __strong and none to __strong at the top level.
6854       if (Q1.getObjCGCAttr() == Q2.getObjCGCAttr())
6855         Quals.setObjCGCAttr(Q1.getObjCGCAttr());
6856       else if (T1->isVoidPointerType() || T2->isVoidPointerType())
6857         assert(Steps.size() == 1);
6858       else
6859         return QualType();
6860 
6861       // Mismatched lifetime qualifiers never compatibly include each other.
6862       if (Q1.getObjCLifetime() == Q2.getObjCLifetime())
6863         Quals.setObjCLifetime(Q1.getObjCLifetime());
6864       else if (T1->isVoidPointerType() || T2->isVoidPointerType())
6865         assert(Steps.size() == 1);
6866       else
6867         return QualType();
6868 
6869       Steps.back().Quals = Quals;
6870       if (Q1 != Quals || Q2 != Quals)
6871         NeedConstBefore = Steps.size() - 1;
6872     }
6873 
6874     // FIXME: Can we unify the following with UnwrapSimilarTypes?
6875 
6876     const ArrayType *Arr1, *Arr2;
6877     if ((Arr1 = Context.getAsArrayType(Composite1)) &&
6878         (Arr2 = Context.getAsArrayType(Composite2))) {
6879       auto *CAT1 = dyn_cast<ConstantArrayType>(Arr1);
6880       auto *CAT2 = dyn_cast<ConstantArrayType>(Arr2);
6881       if (CAT1 && CAT2 && CAT1->getSize() == CAT2->getSize()) {
6882         Composite1 = Arr1->getElementType();
6883         Composite2 = Arr2->getElementType();
6884         Steps.emplace_back(Step::Array, CAT1);
6885         continue;
6886       }
6887       bool IAT1 = isa<IncompleteArrayType>(Arr1);
6888       bool IAT2 = isa<IncompleteArrayType>(Arr2);
6889       if ((IAT1 && IAT2) ||
6890           (getLangOpts().CPlusPlus20 && (IAT1 != IAT2) &&
6891            ((bool)CAT1 != (bool)CAT2) &&
6892            (Steps.empty() || Steps.back().K != Step::Array))) {
6893         // In C++20 onwards, we can unify an array of N T with an array of
6894         // a different or unknown bound. But we can't form an array whose
6895         // element type is an array of unknown bound by doing so.
6896         Composite1 = Arr1->getElementType();
6897         Composite2 = Arr2->getElementType();
6898         Steps.emplace_back(Step::Array);
6899         if (CAT1 || CAT2)
6900           NeedConstBefore = Steps.size();
6901         continue;
6902       }
6903     }
6904 
6905     const PointerType *Ptr1, *Ptr2;
6906     if ((Ptr1 = Composite1->getAs<PointerType>()) &&
6907         (Ptr2 = Composite2->getAs<PointerType>())) {
6908       Composite1 = Ptr1->getPointeeType();
6909       Composite2 = Ptr2->getPointeeType();
6910       Steps.emplace_back(Step::Pointer);
6911       continue;
6912     }
6913 
6914     const ObjCObjectPointerType *ObjPtr1, *ObjPtr2;
6915     if ((ObjPtr1 = Composite1->getAs<ObjCObjectPointerType>()) &&
6916         (ObjPtr2 = Composite2->getAs<ObjCObjectPointerType>())) {
6917       Composite1 = ObjPtr1->getPointeeType();
6918       Composite2 = ObjPtr2->getPointeeType();
6919       Steps.emplace_back(Step::ObjCPointer);
6920       continue;
6921     }
6922 
6923     const MemberPointerType *MemPtr1, *MemPtr2;
6924     if ((MemPtr1 = Composite1->getAs<MemberPointerType>()) &&
6925         (MemPtr2 = Composite2->getAs<MemberPointerType>())) {
6926       Composite1 = MemPtr1->getPointeeType();
6927       Composite2 = MemPtr2->getPointeeType();
6928 
6929       // At the top level, we can perform a base-to-derived pointer-to-member
6930       // conversion:
6931       //
6932       //  - [...] where C1 is reference-related to C2 or C2 is
6933       //    reference-related to C1
6934       //
6935       // (Note that the only kinds of reference-relatedness in scope here are
6936       // "same type or derived from".) At any other level, the class must
6937       // exactly match.
6938       const Type *Class = nullptr;
6939       QualType Cls1(MemPtr1->getClass(), 0);
6940       QualType Cls2(MemPtr2->getClass(), 0);
6941       if (Context.hasSameType(Cls1, Cls2))
6942         Class = MemPtr1->getClass();
6943       else if (Steps.empty())
6944         Class = IsDerivedFrom(Loc, Cls1, Cls2) ? MemPtr1->getClass() :
6945                 IsDerivedFrom(Loc, Cls2, Cls1) ? MemPtr2->getClass() : nullptr;
6946       if (!Class)
6947         return QualType();
6948 
6949       Steps.emplace_back(Step::MemberPointer, Class);
6950       continue;
6951     }
6952 
6953     // Special case: at the top level, we can decompose an Objective-C pointer
6954     // and a 'cv void *'. Unify the qualifiers.
6955     if (Steps.empty() && ((Composite1->isVoidPointerType() &&
6956                            Composite2->isObjCObjectPointerType()) ||
6957                           (Composite1->isObjCObjectPointerType() &&
6958                            Composite2->isVoidPointerType()))) {
6959       Composite1 = Composite1->getPointeeType();
6960       Composite2 = Composite2->getPointeeType();
6961       Steps.emplace_back(Step::Pointer);
6962       continue;
6963     }
6964 
6965     // FIXME: block pointer types?
6966 
6967     // Cannot unwrap any more types.
6968     break;
6969   }
6970 
6971   //  - if T1 or T2 is "pointer to noexcept function" and the other type is
6972   //    "pointer to function", where the function types are otherwise the same,
6973   //    "pointer to function";
6974   //  - if T1 or T2 is "pointer to member of C1 of type function", the other
6975   //    type is "pointer to member of C2 of type noexcept function", and C1
6976   //    is reference-related to C2 or C2 is reference-related to C1, where
6977   //    the function types are otherwise the same, "pointer to member of C2 of
6978   //    type function" or "pointer to member of C1 of type function",
6979   //    respectively;
6980   //
6981   // We also support 'noreturn' here, so as a Clang extension we generalize the
6982   // above to:
6983   //
6984   //  - [Clang] If T1 and T2 are both of type "pointer to function" or
6985   //    "pointer to member function" and the pointee types can be unified
6986   //    by a function pointer conversion, that conversion is applied
6987   //    before checking the following rules.
6988   //
6989   // We've already unwrapped down to the function types, and we want to merge
6990   // rather than just convert, so do this ourselves rather than calling
6991   // IsFunctionConversion.
6992   //
6993   // FIXME: In order to match the standard wording as closely as possible, we
6994   // currently only do this under a single level of pointers. Ideally, we would
6995   // allow this in general, and set NeedConstBefore to the relevant depth on
6996   // the side(s) where we changed anything. If we permit that, we should also
6997   // consider this conversion when determining type similarity and model it as
6998   // a qualification conversion.
6999   if (Steps.size() == 1) {
7000     if (auto *FPT1 = Composite1->getAs<FunctionProtoType>()) {
7001       if (auto *FPT2 = Composite2->getAs<FunctionProtoType>()) {
7002         FunctionProtoType::ExtProtoInfo EPI1 = FPT1->getExtProtoInfo();
7003         FunctionProtoType::ExtProtoInfo EPI2 = FPT2->getExtProtoInfo();
7004 
7005         // The result is noreturn if both operands are.
7006         bool Noreturn =
7007             EPI1.ExtInfo.getNoReturn() && EPI2.ExtInfo.getNoReturn();
7008         EPI1.ExtInfo = EPI1.ExtInfo.withNoReturn(Noreturn);
7009         EPI2.ExtInfo = EPI2.ExtInfo.withNoReturn(Noreturn);
7010 
7011         // The result is nothrow if both operands are.
7012         SmallVector<QualType, 8> ExceptionTypeStorage;
7013         EPI1.ExceptionSpec = EPI2.ExceptionSpec =
7014             mergeExceptionSpecs(*this, EPI1.ExceptionSpec, EPI2.ExceptionSpec,
7015                                 ExceptionTypeStorage);
7016 
7017         Composite1 = Context.getFunctionType(FPT1->getReturnType(),
7018                                              FPT1->getParamTypes(), EPI1);
7019         Composite2 = Context.getFunctionType(FPT2->getReturnType(),
7020                                              FPT2->getParamTypes(), EPI2);
7021       }
7022     }
7023   }
7024 
7025   // There are some more conversions we can perform under exactly one pointer.
7026   if (Steps.size() == 1 && Steps.front().K == Step::Pointer &&
7027       !Context.hasSameType(Composite1, Composite2)) {
7028     //  - if T1 or T2 is "pointer to cv1 void" and the other type is
7029     //    "pointer to cv2 T", where T is an object type or void,
7030     //    "pointer to cv12 void", where cv12 is the union of cv1 and cv2;
7031     if (Composite1->isVoidType() && Composite2->isObjectType())
7032       Composite2 = Composite1;
7033     else if (Composite2->isVoidType() && Composite1->isObjectType())
7034       Composite1 = Composite2;
7035     //  - if T1 is "pointer to cv1 C1" and T2 is "pointer to cv2 C2", where C1
7036     //    is reference-related to C2 or C2 is reference-related to C1 (8.6.3),
7037     //    the cv-combined type of T1 and T2 or the cv-combined type of T2 and
7038     //    T1, respectively;
7039     //
7040     // The "similar type" handling covers all of this except for the "T1 is a
7041     // base class of T2" case in the definition of reference-related.
7042     else if (IsDerivedFrom(Loc, Composite1, Composite2))
7043       Composite1 = Composite2;
7044     else if (IsDerivedFrom(Loc, Composite2, Composite1))
7045       Composite2 = Composite1;
7046   }
7047 
7048   // At this point, either the inner types are the same or we have failed to
7049   // find a composite pointer type.
7050   if (!Context.hasSameType(Composite1, Composite2))
7051     return QualType();
7052 
7053   // Per C++ [conv.qual]p3, add 'const' to every level before the last
7054   // differing qualifier.
7055   for (unsigned I = 0; I != NeedConstBefore; ++I)
7056     Steps[I].Quals.addConst();
7057 
7058   // Rebuild the composite type.
7059   QualType Composite = Composite1;
7060   for (auto &S : llvm::reverse(Steps))
7061     Composite = S.rebuild(Context, Composite);
7062 
7063   if (ConvertArgs) {
7064     // Convert the expressions to the composite pointer type.
7065     InitializedEntity Entity =
7066         InitializedEntity::InitializeTemporary(Composite);
7067     InitializationKind Kind =
7068         InitializationKind::CreateCopy(Loc, SourceLocation());
7069 
7070     InitializationSequence E1ToC(*this, Entity, Kind, E1);
7071     if (!E1ToC)
7072       return QualType();
7073 
7074     InitializationSequence E2ToC(*this, Entity, Kind, E2);
7075     if (!E2ToC)
7076       return QualType();
7077 
7078     // FIXME: Let the caller know if these fail to avoid duplicate diagnostics.
7079     ExprResult E1Result = E1ToC.Perform(*this, Entity, Kind, E1);
7080     if (E1Result.isInvalid())
7081       return QualType();
7082     E1 = E1Result.get();
7083 
7084     ExprResult E2Result = E2ToC.Perform(*this, Entity, Kind, E2);
7085     if (E2Result.isInvalid())
7086       return QualType();
7087     E2 = E2Result.get();
7088   }
7089 
7090   return Composite;
7091 }
7092 
7093 ExprResult Sema::MaybeBindToTemporary(Expr *E) {
7094   if (!E)
7095     return ExprError();
7096 
7097   assert(!isa<CXXBindTemporaryExpr>(E) && "Double-bound temporary?");
7098 
7099   // If the result is a glvalue, we shouldn't bind it.
7100   if (E->isGLValue())
7101     return E;
7102 
7103   // In ARC, calls that return a retainable type can return retained,
7104   // in which case we have to insert a consuming cast.
7105   if (getLangOpts().ObjCAutoRefCount &&
7106       E->getType()->isObjCRetainableType()) {
7107 
7108     bool ReturnsRetained;
7109 
7110     // For actual calls, we compute this by examining the type of the
7111     // called value.
7112     if (CallExpr *Call = dyn_cast<CallExpr>(E)) {
7113       Expr *Callee = Call->getCallee()->IgnoreParens();
7114       QualType T = Callee->getType();
7115 
7116       if (T == Context.BoundMemberTy) {
7117         // Handle pointer-to-members.
7118         if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Callee))
7119           T = BinOp->getRHS()->getType();
7120         else if (MemberExpr *Mem = dyn_cast<MemberExpr>(Callee))
7121           T = Mem->getMemberDecl()->getType();
7122       }
7123 
7124       if (const PointerType *Ptr = T->getAs<PointerType>())
7125         T = Ptr->getPointeeType();
7126       else if (const BlockPointerType *Ptr = T->getAs<BlockPointerType>())
7127         T = Ptr->getPointeeType();
7128       else if (const MemberPointerType *MemPtr = T->getAs<MemberPointerType>())
7129         T = MemPtr->getPointeeType();
7130 
7131       auto *FTy = T->castAs<FunctionType>();
7132       ReturnsRetained = FTy->getExtInfo().getProducesResult();
7133 
7134     // ActOnStmtExpr arranges things so that StmtExprs of retainable
7135     // type always produce a +1 object.
7136     } else if (isa<StmtExpr>(E)) {
7137       ReturnsRetained = true;
7138 
7139     // We hit this case with the lambda conversion-to-block optimization;
7140     // we don't want any extra casts here.
7141     } else if (isa<CastExpr>(E) &&
7142                isa<BlockExpr>(cast<CastExpr>(E)->getSubExpr())) {
7143       return E;
7144 
7145     // For message sends and property references, we try to find an
7146     // actual method.  FIXME: we should infer retention by selector in
7147     // cases where we don't have an actual method.
7148     } else {
7149       ObjCMethodDecl *D = nullptr;
7150       if (ObjCMessageExpr *Send = dyn_cast<ObjCMessageExpr>(E)) {
7151         D = Send->getMethodDecl();
7152       } else if (ObjCBoxedExpr *BoxedExpr = dyn_cast<ObjCBoxedExpr>(E)) {
7153         D = BoxedExpr->getBoxingMethod();
7154       } else if (ObjCArrayLiteral *ArrayLit = dyn_cast<ObjCArrayLiteral>(E)) {
7155         // Don't do reclaims if we're using the zero-element array
7156         // constant.
7157         if (ArrayLit->getNumElements() == 0 &&
7158             Context.getLangOpts().ObjCRuntime.hasEmptyCollections())
7159           return E;
7160 
7161         D = ArrayLit->getArrayWithObjectsMethod();
7162       } else if (ObjCDictionaryLiteral *DictLit
7163                                         = dyn_cast<ObjCDictionaryLiteral>(E)) {
7164         // Don't do reclaims if we're using the zero-element dictionary
7165         // constant.
7166         if (DictLit->getNumElements() == 0 &&
7167             Context.getLangOpts().ObjCRuntime.hasEmptyCollections())
7168           return E;
7169 
7170         D = DictLit->getDictWithObjectsMethod();
7171       }
7172 
7173       ReturnsRetained = (D && D->hasAttr<NSReturnsRetainedAttr>());
7174 
7175       // Don't do reclaims on performSelector calls; despite their
7176       // return type, the invoked method doesn't necessarily actually
7177       // return an object.
7178       if (!ReturnsRetained &&
7179           D && D->getMethodFamily() == OMF_performSelector)
7180         return E;
7181     }
7182 
7183     // Don't reclaim an object of Class type.
7184     if (!ReturnsRetained && E->getType()->isObjCARCImplicitlyUnretainedType())
7185       return E;
7186 
7187     Cleanup.setExprNeedsCleanups(true);
7188 
7189     CastKind ck = (ReturnsRetained ? CK_ARCConsumeObject
7190                                    : CK_ARCReclaimReturnedObject);
7191     return ImplicitCastExpr::Create(Context, E->getType(), ck, E, nullptr,
7192                                     VK_PRValue, FPOptionsOverride());
7193   }
7194 
7195   if (E->getType().isDestructedType() == QualType::DK_nontrivial_c_struct)
7196     Cleanup.setExprNeedsCleanups(true);
7197 
7198   if (!getLangOpts().CPlusPlus)
7199     return E;
7200 
7201   // Search for the base element type (cf. ASTContext::getBaseElementType) with
7202   // a fast path for the common case that the type is directly a RecordType.
7203   const Type *T = Context.getCanonicalType(E->getType().getTypePtr());
7204   const RecordType *RT = nullptr;
7205   while (!RT) {
7206     switch (T->getTypeClass()) {
7207     case Type::Record:
7208       RT = cast<RecordType>(T);
7209       break;
7210     case Type::ConstantArray:
7211     case Type::IncompleteArray:
7212     case Type::VariableArray:
7213     case Type::DependentSizedArray:
7214       T = cast<ArrayType>(T)->getElementType().getTypePtr();
7215       break;
7216     default:
7217       return E;
7218     }
7219   }
7220 
7221   // That should be enough to guarantee that this type is complete, if we're
7222   // not processing a decltype expression.
7223   CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
7224   if (RD->isInvalidDecl() || RD->isDependentContext())
7225     return E;
7226 
7227   bool IsDecltype = ExprEvalContexts.back().ExprContext ==
7228                     ExpressionEvaluationContextRecord::EK_Decltype;
7229   CXXDestructorDecl *Destructor = IsDecltype ? nullptr : LookupDestructor(RD);
7230 
7231   if (Destructor) {
7232     MarkFunctionReferenced(E->getExprLoc(), Destructor);
7233     CheckDestructorAccess(E->getExprLoc(), Destructor,
7234                           PDiag(diag::err_access_dtor_temp)
7235                             << E->getType());
7236     if (DiagnoseUseOfDecl(Destructor, E->getExprLoc()))
7237       return ExprError();
7238 
7239     // If destructor is trivial, we can avoid the extra copy.
7240     if (Destructor->isTrivial())
7241       return E;
7242 
7243     // We need a cleanup, but we don't need to remember the temporary.
7244     Cleanup.setExprNeedsCleanups(true);
7245   }
7246 
7247   CXXTemporary *Temp = CXXTemporary::Create(Context, Destructor);
7248   CXXBindTemporaryExpr *Bind = CXXBindTemporaryExpr::Create(Context, Temp, E);
7249 
7250   if (IsDecltype)
7251     ExprEvalContexts.back().DelayedDecltypeBinds.push_back(Bind);
7252 
7253   return Bind;
7254 }
7255 
7256 ExprResult
7257 Sema::MaybeCreateExprWithCleanups(ExprResult SubExpr) {
7258   if (SubExpr.isInvalid())
7259     return ExprError();
7260 
7261   return MaybeCreateExprWithCleanups(SubExpr.get());
7262 }
7263 
7264 Expr *Sema::MaybeCreateExprWithCleanups(Expr *SubExpr) {
7265   assert(SubExpr && "subexpression can't be null!");
7266 
7267   CleanupVarDeclMarking();
7268 
7269   unsigned FirstCleanup = ExprEvalContexts.back().NumCleanupObjects;
7270   assert(ExprCleanupObjects.size() >= FirstCleanup);
7271   assert(Cleanup.exprNeedsCleanups() ||
7272          ExprCleanupObjects.size() == FirstCleanup);
7273   if (!Cleanup.exprNeedsCleanups())
7274     return SubExpr;
7275 
7276   auto Cleanups = llvm::makeArrayRef(ExprCleanupObjects.begin() + FirstCleanup,
7277                                      ExprCleanupObjects.size() - FirstCleanup);
7278 
7279   auto *E = ExprWithCleanups::Create(
7280       Context, SubExpr, Cleanup.cleanupsHaveSideEffects(), Cleanups);
7281   DiscardCleanupsInEvaluationContext();
7282 
7283   return E;
7284 }
7285 
7286 Stmt *Sema::MaybeCreateStmtWithCleanups(Stmt *SubStmt) {
7287   assert(SubStmt && "sub-statement can't be null!");
7288 
7289   CleanupVarDeclMarking();
7290 
7291   if (!Cleanup.exprNeedsCleanups())
7292     return SubStmt;
7293 
7294   // FIXME: In order to attach the temporaries, wrap the statement into
7295   // a StmtExpr; currently this is only used for asm statements.
7296   // This is hacky, either create a new CXXStmtWithTemporaries statement or
7297   // a new AsmStmtWithTemporaries.
7298   CompoundStmt *CompStmt = CompoundStmt::Create(
7299       Context, SubStmt, SourceLocation(), SourceLocation());
7300   Expr *E = new (Context)
7301       StmtExpr(CompStmt, Context.VoidTy, SourceLocation(), SourceLocation(),
7302                /*FIXME TemplateDepth=*/0);
7303   return MaybeCreateExprWithCleanups(E);
7304 }
7305 
7306 /// Process the expression contained within a decltype. For such expressions,
7307 /// certain semantic checks on temporaries are delayed until this point, and
7308 /// are omitted for the 'topmost' call in the decltype expression. If the
7309 /// topmost call bound a temporary, strip that temporary off the expression.
7310 ExprResult Sema::ActOnDecltypeExpression(Expr *E) {
7311   assert(ExprEvalContexts.back().ExprContext ==
7312              ExpressionEvaluationContextRecord::EK_Decltype &&
7313          "not in a decltype expression");
7314 
7315   ExprResult Result = CheckPlaceholderExpr(E);
7316   if (Result.isInvalid())
7317     return ExprError();
7318   E = Result.get();
7319 
7320   // C++11 [expr.call]p11:
7321   //   If a function call is a prvalue of object type,
7322   // -- if the function call is either
7323   //   -- the operand of a decltype-specifier, or
7324   //   -- the right operand of a comma operator that is the operand of a
7325   //      decltype-specifier,
7326   //   a temporary object is not introduced for the prvalue.
7327 
7328   // Recursively rebuild ParenExprs and comma expressions to strip out the
7329   // outermost CXXBindTemporaryExpr, if any.
7330   if (ParenExpr *PE = dyn_cast<ParenExpr>(E)) {
7331     ExprResult SubExpr = ActOnDecltypeExpression(PE->getSubExpr());
7332     if (SubExpr.isInvalid())
7333       return ExprError();
7334     if (SubExpr.get() == PE->getSubExpr())
7335       return E;
7336     return ActOnParenExpr(PE->getLParen(), PE->getRParen(), SubExpr.get());
7337   }
7338   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
7339     if (BO->getOpcode() == BO_Comma) {
7340       ExprResult RHS = ActOnDecltypeExpression(BO->getRHS());
7341       if (RHS.isInvalid())
7342         return ExprError();
7343       if (RHS.get() == BO->getRHS())
7344         return E;
7345       return BinaryOperator::Create(Context, BO->getLHS(), RHS.get(), BO_Comma,
7346                                     BO->getType(), BO->getValueKind(),
7347                                     BO->getObjectKind(), BO->getOperatorLoc(),
7348                                     BO->getFPFeatures(getLangOpts()));
7349     }
7350   }
7351 
7352   CXXBindTemporaryExpr *TopBind = dyn_cast<CXXBindTemporaryExpr>(E);
7353   CallExpr *TopCall = TopBind ? dyn_cast<CallExpr>(TopBind->getSubExpr())
7354                               : nullptr;
7355   if (TopCall)
7356     E = TopCall;
7357   else
7358     TopBind = nullptr;
7359 
7360   // Disable the special decltype handling now.
7361   ExprEvalContexts.back().ExprContext =
7362       ExpressionEvaluationContextRecord::EK_Other;
7363 
7364   Result = CheckUnevaluatedOperand(E);
7365   if (Result.isInvalid())
7366     return ExprError();
7367   E = Result.get();
7368 
7369   // In MS mode, don't perform any extra checking of call return types within a
7370   // decltype expression.
7371   if (getLangOpts().MSVCCompat)
7372     return E;
7373 
7374   // Perform the semantic checks we delayed until this point.
7375   for (unsigned I = 0, N = ExprEvalContexts.back().DelayedDecltypeCalls.size();
7376        I != N; ++I) {
7377     CallExpr *Call = ExprEvalContexts.back().DelayedDecltypeCalls[I];
7378     if (Call == TopCall)
7379       continue;
7380 
7381     if (CheckCallReturnType(Call->getCallReturnType(Context),
7382                             Call->getBeginLoc(), Call, Call->getDirectCallee()))
7383       return ExprError();
7384   }
7385 
7386   // Now all relevant types are complete, check the destructors are accessible
7387   // and non-deleted, and annotate them on the temporaries.
7388   for (unsigned I = 0, N = ExprEvalContexts.back().DelayedDecltypeBinds.size();
7389        I != N; ++I) {
7390     CXXBindTemporaryExpr *Bind =
7391       ExprEvalContexts.back().DelayedDecltypeBinds[I];
7392     if (Bind == TopBind)
7393       continue;
7394 
7395     CXXTemporary *Temp = Bind->getTemporary();
7396 
7397     CXXRecordDecl *RD =
7398       Bind->getType()->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
7399     CXXDestructorDecl *Destructor = LookupDestructor(RD);
7400     Temp->setDestructor(Destructor);
7401 
7402     MarkFunctionReferenced(Bind->getExprLoc(), Destructor);
7403     CheckDestructorAccess(Bind->getExprLoc(), Destructor,
7404                           PDiag(diag::err_access_dtor_temp)
7405                             << Bind->getType());
7406     if (DiagnoseUseOfDecl(Destructor, Bind->getExprLoc()))
7407       return ExprError();
7408 
7409     // We need a cleanup, but we don't need to remember the temporary.
7410     Cleanup.setExprNeedsCleanups(true);
7411   }
7412 
7413   // Possibly strip off the top CXXBindTemporaryExpr.
7414   return E;
7415 }
7416 
7417 /// Note a set of 'operator->' functions that were used for a member access.
7418 static void noteOperatorArrows(Sema &S,
7419                                ArrayRef<FunctionDecl *> OperatorArrows) {
7420   unsigned SkipStart = OperatorArrows.size(), SkipCount = 0;
7421   // FIXME: Make this configurable?
7422   unsigned Limit = 9;
7423   if (OperatorArrows.size() > Limit) {
7424     // Produce Limit-1 normal notes and one 'skipping' note.
7425     SkipStart = (Limit - 1) / 2 + (Limit - 1) % 2;
7426     SkipCount = OperatorArrows.size() - (Limit - 1);
7427   }
7428 
7429   for (unsigned I = 0; I < OperatorArrows.size(); /**/) {
7430     if (I == SkipStart) {
7431       S.Diag(OperatorArrows[I]->getLocation(),
7432              diag::note_operator_arrows_suppressed)
7433           << SkipCount;
7434       I += SkipCount;
7435     } else {
7436       S.Diag(OperatorArrows[I]->getLocation(), diag::note_operator_arrow_here)
7437           << OperatorArrows[I]->getCallResultType();
7438       ++I;
7439     }
7440   }
7441 }
7442 
7443 ExprResult Sema::ActOnStartCXXMemberReference(Scope *S, Expr *Base,
7444                                               SourceLocation OpLoc,
7445                                               tok::TokenKind OpKind,
7446                                               ParsedType &ObjectType,
7447                                               bool &MayBePseudoDestructor) {
7448   // Since this might be a postfix expression, get rid of ParenListExprs.
7449   ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base);
7450   if (Result.isInvalid()) return ExprError();
7451   Base = Result.get();
7452 
7453   Result = CheckPlaceholderExpr(Base);
7454   if (Result.isInvalid()) return ExprError();
7455   Base = Result.get();
7456 
7457   QualType BaseType = Base->getType();
7458   MayBePseudoDestructor = false;
7459   if (BaseType->isDependentType()) {
7460     // If we have a pointer to a dependent type and are using the -> operator,
7461     // the object type is the type that the pointer points to. We might still
7462     // have enough information about that type to do something useful.
7463     if (OpKind == tok::arrow)
7464       if (const PointerType *Ptr = BaseType->getAs<PointerType>())
7465         BaseType = Ptr->getPointeeType();
7466 
7467     ObjectType = ParsedType::make(BaseType);
7468     MayBePseudoDestructor = true;
7469     return Base;
7470   }
7471 
7472   // C++ [over.match.oper]p8:
7473   //   [...] When operator->returns, the operator-> is applied  to the value
7474   //   returned, with the original second operand.
7475   if (OpKind == tok::arrow) {
7476     QualType StartingType = BaseType;
7477     bool NoArrowOperatorFound = false;
7478     bool FirstIteration = true;
7479     FunctionDecl *CurFD = dyn_cast<FunctionDecl>(CurContext);
7480     // The set of types we've considered so far.
7481     llvm::SmallPtrSet<CanQualType,8> CTypes;
7482     SmallVector<FunctionDecl*, 8> OperatorArrows;
7483     CTypes.insert(Context.getCanonicalType(BaseType));
7484 
7485     while (BaseType->isRecordType()) {
7486       if (OperatorArrows.size() >= getLangOpts().ArrowDepth) {
7487         Diag(OpLoc, diag::err_operator_arrow_depth_exceeded)
7488           << StartingType << getLangOpts().ArrowDepth << Base->getSourceRange();
7489         noteOperatorArrows(*this, OperatorArrows);
7490         Diag(OpLoc, diag::note_operator_arrow_depth)
7491           << getLangOpts().ArrowDepth;
7492         return ExprError();
7493       }
7494 
7495       Result = BuildOverloadedArrowExpr(
7496           S, Base, OpLoc,
7497           // When in a template specialization and on the first loop iteration,
7498           // potentially give the default diagnostic (with the fixit in a
7499           // separate note) instead of having the error reported back to here
7500           // and giving a diagnostic with a fixit attached to the error itself.
7501           (FirstIteration && CurFD && CurFD->isFunctionTemplateSpecialization())
7502               ? nullptr
7503               : &NoArrowOperatorFound);
7504       if (Result.isInvalid()) {
7505         if (NoArrowOperatorFound) {
7506           if (FirstIteration) {
7507             Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
7508               << BaseType << 1 << Base->getSourceRange()
7509               << FixItHint::CreateReplacement(OpLoc, ".");
7510             OpKind = tok::period;
7511             break;
7512           }
7513           Diag(OpLoc, diag::err_typecheck_member_reference_arrow)
7514             << BaseType << Base->getSourceRange();
7515           CallExpr *CE = dyn_cast<CallExpr>(Base);
7516           if (Decl *CD = (CE ? CE->getCalleeDecl() : nullptr)) {
7517             Diag(CD->getBeginLoc(),
7518                  diag::note_member_reference_arrow_from_operator_arrow);
7519           }
7520         }
7521         return ExprError();
7522       }
7523       Base = Result.get();
7524       if (CXXOperatorCallExpr *OpCall = dyn_cast<CXXOperatorCallExpr>(Base))
7525         OperatorArrows.push_back(OpCall->getDirectCallee());
7526       BaseType = Base->getType();
7527       CanQualType CBaseType = Context.getCanonicalType(BaseType);
7528       if (!CTypes.insert(CBaseType).second) {
7529         Diag(OpLoc, diag::err_operator_arrow_circular) << StartingType;
7530         noteOperatorArrows(*this, OperatorArrows);
7531         return ExprError();
7532       }
7533       FirstIteration = false;
7534     }
7535 
7536     if (OpKind == tok::arrow) {
7537       if (BaseType->isPointerType())
7538         BaseType = BaseType->getPointeeType();
7539       else if (auto *AT = Context.getAsArrayType(BaseType))
7540         BaseType = AT->getElementType();
7541     }
7542   }
7543 
7544   // Objective-C properties allow "." access on Objective-C pointer types,
7545   // so adjust the base type to the object type itself.
7546   if (BaseType->isObjCObjectPointerType())
7547     BaseType = BaseType->getPointeeType();
7548 
7549   // C++ [basic.lookup.classref]p2:
7550   //   [...] If the type of the object expression is of pointer to scalar
7551   //   type, the unqualified-id is looked up in the context of the complete
7552   //   postfix-expression.
7553   //
7554   // This also indicates that we could be parsing a pseudo-destructor-name.
7555   // Note that Objective-C class and object types can be pseudo-destructor
7556   // expressions or normal member (ivar or property) access expressions, and
7557   // it's legal for the type to be incomplete if this is a pseudo-destructor
7558   // call.  We'll do more incomplete-type checks later in the lookup process,
7559   // so just skip this check for ObjC types.
7560   if (!BaseType->isRecordType()) {
7561     ObjectType = ParsedType::make(BaseType);
7562     MayBePseudoDestructor = true;
7563     return Base;
7564   }
7565 
7566   // The object type must be complete (or dependent), or
7567   // C++11 [expr.prim.general]p3:
7568   //   Unlike the object expression in other contexts, *this is not required to
7569   //   be of complete type for purposes of class member access (5.2.5) outside
7570   //   the member function body.
7571   if (!BaseType->isDependentType() &&
7572       !isThisOutsideMemberFunctionBody(BaseType) &&
7573       RequireCompleteType(OpLoc, BaseType,
7574                           diag::err_incomplete_member_access)) {
7575     return CreateRecoveryExpr(Base->getBeginLoc(), Base->getEndLoc(), {Base});
7576   }
7577 
7578   // C++ [basic.lookup.classref]p2:
7579   //   If the id-expression in a class member access (5.2.5) is an
7580   //   unqualified-id, and the type of the object expression is of a class
7581   //   type C (or of pointer to a class type C), the unqualified-id is looked
7582   //   up in the scope of class C. [...]
7583   ObjectType = ParsedType::make(BaseType);
7584   return Base;
7585 }
7586 
7587 static bool CheckArrow(Sema &S, QualType &ObjectType, Expr *&Base,
7588                        tok::TokenKind &OpKind, SourceLocation OpLoc) {
7589   if (Base->hasPlaceholderType()) {
7590     ExprResult result = S.CheckPlaceholderExpr(Base);
7591     if (result.isInvalid()) return true;
7592     Base = result.get();
7593   }
7594   ObjectType = Base->getType();
7595 
7596   // C++ [expr.pseudo]p2:
7597   //   The left-hand side of the dot operator shall be of scalar type. The
7598   //   left-hand side of the arrow operator shall be of pointer to scalar type.
7599   //   This scalar type is the object type.
7600   // Note that this is rather different from the normal handling for the
7601   // arrow operator.
7602   if (OpKind == tok::arrow) {
7603     // The operator requires a prvalue, so perform lvalue conversions.
7604     // Only do this if we might plausibly end with a pointer, as otherwise
7605     // this was likely to be intended to be a '.'.
7606     if (ObjectType->isPointerType() || ObjectType->isArrayType() ||
7607         ObjectType->isFunctionType()) {
7608       ExprResult BaseResult = S.DefaultFunctionArrayLvalueConversion(Base);
7609       if (BaseResult.isInvalid())
7610         return true;
7611       Base = BaseResult.get();
7612       ObjectType = Base->getType();
7613     }
7614 
7615     if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) {
7616       ObjectType = Ptr->getPointeeType();
7617     } else if (!Base->isTypeDependent()) {
7618       // The user wrote "p->" when they probably meant "p."; fix it.
7619       S.Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
7620         << ObjectType << true
7621         << FixItHint::CreateReplacement(OpLoc, ".");
7622       if (S.isSFINAEContext())
7623         return true;
7624 
7625       OpKind = tok::period;
7626     }
7627   }
7628 
7629   return false;
7630 }
7631 
7632 /// Check if it's ok to try and recover dot pseudo destructor calls on
7633 /// pointer objects.
7634 static bool
7635 canRecoverDotPseudoDestructorCallsOnPointerObjects(Sema &SemaRef,
7636                                                    QualType DestructedType) {
7637   // If this is a record type, check if its destructor is callable.
7638   if (auto *RD = DestructedType->getAsCXXRecordDecl()) {
7639     if (RD->hasDefinition())
7640       if (CXXDestructorDecl *D = SemaRef.LookupDestructor(RD))
7641         return SemaRef.CanUseDecl(D, /*TreatUnavailableAsInvalid=*/false);
7642     return false;
7643   }
7644 
7645   // Otherwise, check if it's a type for which it's valid to use a pseudo-dtor.
7646   return DestructedType->isDependentType() || DestructedType->isScalarType() ||
7647          DestructedType->isVectorType();
7648 }
7649 
7650 ExprResult Sema::BuildPseudoDestructorExpr(Expr *Base,
7651                                            SourceLocation OpLoc,
7652                                            tok::TokenKind OpKind,
7653                                            const CXXScopeSpec &SS,
7654                                            TypeSourceInfo *ScopeTypeInfo,
7655                                            SourceLocation CCLoc,
7656                                            SourceLocation TildeLoc,
7657                                          PseudoDestructorTypeStorage Destructed) {
7658   TypeSourceInfo *DestructedTypeInfo = Destructed.getTypeSourceInfo();
7659 
7660   QualType ObjectType;
7661   if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc))
7662     return ExprError();
7663 
7664   if (!ObjectType->isDependentType() && !ObjectType->isScalarType() &&
7665       !ObjectType->isVectorType()) {
7666     if (getLangOpts().MSVCCompat && ObjectType->isVoidType())
7667       Diag(OpLoc, diag::ext_pseudo_dtor_on_void) << Base->getSourceRange();
7668     else {
7669       Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
7670         << ObjectType << Base->getSourceRange();
7671       return ExprError();
7672     }
7673   }
7674 
7675   // C++ [expr.pseudo]p2:
7676   //   [...] The cv-unqualified versions of the object type and of the type
7677   //   designated by the pseudo-destructor-name shall be the same type.
7678   if (DestructedTypeInfo) {
7679     QualType DestructedType = DestructedTypeInfo->getType();
7680     SourceLocation DestructedTypeStart
7681       = DestructedTypeInfo->getTypeLoc().getLocalSourceRange().getBegin();
7682     if (!DestructedType->isDependentType() && !ObjectType->isDependentType()) {
7683       if (!Context.hasSameUnqualifiedType(DestructedType, ObjectType)) {
7684         // Detect dot pseudo destructor calls on pointer objects, e.g.:
7685         //   Foo *foo;
7686         //   foo.~Foo();
7687         if (OpKind == tok::period && ObjectType->isPointerType() &&
7688             Context.hasSameUnqualifiedType(DestructedType,
7689                                            ObjectType->getPointeeType())) {
7690           auto Diagnostic =
7691               Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
7692               << ObjectType << /*IsArrow=*/0 << Base->getSourceRange();
7693 
7694           // Issue a fixit only when the destructor is valid.
7695           if (canRecoverDotPseudoDestructorCallsOnPointerObjects(
7696                   *this, DestructedType))
7697             Diagnostic << FixItHint::CreateReplacement(OpLoc, "->");
7698 
7699           // Recover by setting the object type to the destructed type and the
7700           // operator to '->'.
7701           ObjectType = DestructedType;
7702           OpKind = tok::arrow;
7703         } else {
7704           Diag(DestructedTypeStart, diag::err_pseudo_dtor_type_mismatch)
7705               << ObjectType << DestructedType << Base->getSourceRange()
7706               << DestructedTypeInfo->getTypeLoc().getLocalSourceRange();
7707 
7708           // Recover by setting the destructed type to the object type.
7709           DestructedType = ObjectType;
7710           DestructedTypeInfo =
7711               Context.getTrivialTypeSourceInfo(ObjectType, DestructedTypeStart);
7712           Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
7713         }
7714       } else if (DestructedType.getObjCLifetime() !=
7715                                                 ObjectType.getObjCLifetime()) {
7716 
7717         if (DestructedType.getObjCLifetime() == Qualifiers::OCL_None) {
7718           // Okay: just pretend that the user provided the correctly-qualified
7719           // type.
7720         } else {
7721           Diag(DestructedTypeStart, diag::err_arc_pseudo_dtor_inconstant_quals)
7722             << ObjectType << DestructedType << Base->getSourceRange()
7723             << DestructedTypeInfo->getTypeLoc().getLocalSourceRange();
7724         }
7725 
7726         // Recover by setting the destructed type to the object type.
7727         DestructedType = ObjectType;
7728         DestructedTypeInfo = Context.getTrivialTypeSourceInfo(ObjectType,
7729                                                            DestructedTypeStart);
7730         Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
7731       }
7732     }
7733   }
7734 
7735   // C++ [expr.pseudo]p2:
7736   //   [...] Furthermore, the two type-names in a pseudo-destructor-name of the
7737   //   form
7738   //
7739   //     ::[opt] nested-name-specifier[opt] type-name :: ~ type-name
7740   //
7741   //   shall designate the same scalar type.
7742   if (ScopeTypeInfo) {
7743     QualType ScopeType = ScopeTypeInfo->getType();
7744     if (!ScopeType->isDependentType() && !ObjectType->isDependentType() &&
7745         !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) {
7746 
7747       Diag(ScopeTypeInfo->getTypeLoc().getLocalSourceRange().getBegin(),
7748            diag::err_pseudo_dtor_type_mismatch)
7749         << ObjectType << ScopeType << Base->getSourceRange()
7750         << ScopeTypeInfo->getTypeLoc().getLocalSourceRange();
7751 
7752       ScopeType = QualType();
7753       ScopeTypeInfo = nullptr;
7754     }
7755   }
7756 
7757   Expr *Result
7758     = new (Context) CXXPseudoDestructorExpr(Context, Base,
7759                                             OpKind == tok::arrow, OpLoc,
7760                                             SS.getWithLocInContext(Context),
7761                                             ScopeTypeInfo,
7762                                             CCLoc,
7763                                             TildeLoc,
7764                                             Destructed);
7765 
7766   return Result;
7767 }
7768 
7769 ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
7770                                            SourceLocation OpLoc,
7771                                            tok::TokenKind OpKind,
7772                                            CXXScopeSpec &SS,
7773                                            UnqualifiedId &FirstTypeName,
7774                                            SourceLocation CCLoc,
7775                                            SourceLocation TildeLoc,
7776                                            UnqualifiedId &SecondTypeName) {
7777   assert((FirstTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId ||
7778           FirstTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) &&
7779          "Invalid first type name in pseudo-destructor");
7780   assert((SecondTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId ||
7781           SecondTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) &&
7782          "Invalid second type name in pseudo-destructor");
7783 
7784   QualType ObjectType;
7785   if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc))
7786     return ExprError();
7787 
7788   // Compute the object type that we should use for name lookup purposes. Only
7789   // record types and dependent types matter.
7790   ParsedType ObjectTypePtrForLookup;
7791   if (!SS.isSet()) {
7792     if (ObjectType->isRecordType())
7793       ObjectTypePtrForLookup = ParsedType::make(ObjectType);
7794     else if (ObjectType->isDependentType())
7795       ObjectTypePtrForLookup = ParsedType::make(Context.DependentTy);
7796   }
7797 
7798   // Convert the name of the type being destructed (following the ~) into a
7799   // type (with source-location information).
7800   QualType DestructedType;
7801   TypeSourceInfo *DestructedTypeInfo = nullptr;
7802   PseudoDestructorTypeStorage Destructed;
7803   if (SecondTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) {
7804     ParsedType T = getTypeName(*SecondTypeName.Identifier,
7805                                SecondTypeName.StartLocation,
7806                                S, &SS, true, false, ObjectTypePtrForLookup,
7807                                /*IsCtorOrDtorName*/true);
7808     if (!T &&
7809         ((SS.isSet() && !computeDeclContext(SS, false)) ||
7810          (!SS.isSet() && ObjectType->isDependentType()))) {
7811       // The name of the type being destroyed is a dependent name, and we
7812       // couldn't find anything useful in scope. Just store the identifier and
7813       // it's location, and we'll perform (qualified) name lookup again at
7814       // template instantiation time.
7815       Destructed = PseudoDestructorTypeStorage(SecondTypeName.Identifier,
7816                                                SecondTypeName.StartLocation);
7817     } else if (!T) {
7818       Diag(SecondTypeName.StartLocation,
7819            diag::err_pseudo_dtor_destructor_non_type)
7820         << SecondTypeName.Identifier << ObjectType;
7821       if (isSFINAEContext())
7822         return ExprError();
7823 
7824       // Recover by assuming we had the right type all along.
7825       DestructedType = ObjectType;
7826     } else
7827       DestructedType = GetTypeFromParser(T, &DestructedTypeInfo);
7828   } else {
7829     // Resolve the template-id to a type.
7830     TemplateIdAnnotation *TemplateId = SecondTypeName.TemplateId;
7831     ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
7832                                        TemplateId->NumArgs);
7833     TypeResult T = ActOnTemplateIdType(S,
7834                                        SS,
7835                                        TemplateId->TemplateKWLoc,
7836                                        TemplateId->Template,
7837                                        TemplateId->Name,
7838                                        TemplateId->TemplateNameLoc,
7839                                        TemplateId->LAngleLoc,
7840                                        TemplateArgsPtr,
7841                                        TemplateId->RAngleLoc,
7842                                        /*IsCtorOrDtorName*/true);
7843     if (T.isInvalid() || !T.get()) {
7844       // Recover by assuming we had the right type all along.
7845       DestructedType = ObjectType;
7846     } else
7847       DestructedType = GetTypeFromParser(T.get(), &DestructedTypeInfo);
7848   }
7849 
7850   // If we've performed some kind of recovery, (re-)build the type source
7851   // information.
7852   if (!DestructedType.isNull()) {
7853     if (!DestructedTypeInfo)
7854       DestructedTypeInfo = Context.getTrivialTypeSourceInfo(DestructedType,
7855                                                   SecondTypeName.StartLocation);
7856     Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
7857   }
7858 
7859   // Convert the name of the scope type (the type prior to '::') into a type.
7860   TypeSourceInfo *ScopeTypeInfo = nullptr;
7861   QualType ScopeType;
7862   if (FirstTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId ||
7863       FirstTypeName.Identifier) {
7864     if (FirstTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) {
7865       ParsedType T = getTypeName(*FirstTypeName.Identifier,
7866                                  FirstTypeName.StartLocation,
7867                                  S, &SS, true, false, ObjectTypePtrForLookup,
7868                                  /*IsCtorOrDtorName*/true);
7869       if (!T) {
7870         Diag(FirstTypeName.StartLocation,
7871              diag::err_pseudo_dtor_destructor_non_type)
7872           << FirstTypeName.Identifier << ObjectType;
7873 
7874         if (isSFINAEContext())
7875           return ExprError();
7876 
7877         // Just drop this type. It's unnecessary anyway.
7878         ScopeType = QualType();
7879       } else
7880         ScopeType = GetTypeFromParser(T, &ScopeTypeInfo);
7881     } else {
7882       // Resolve the template-id to a type.
7883       TemplateIdAnnotation *TemplateId = FirstTypeName.TemplateId;
7884       ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
7885                                          TemplateId->NumArgs);
7886       TypeResult T = ActOnTemplateIdType(S,
7887                                          SS,
7888                                          TemplateId->TemplateKWLoc,
7889                                          TemplateId->Template,
7890                                          TemplateId->Name,
7891                                          TemplateId->TemplateNameLoc,
7892                                          TemplateId->LAngleLoc,
7893                                          TemplateArgsPtr,
7894                                          TemplateId->RAngleLoc,
7895                                          /*IsCtorOrDtorName*/true);
7896       if (T.isInvalid() || !T.get()) {
7897         // Recover by dropping this type.
7898         ScopeType = QualType();
7899       } else
7900         ScopeType = GetTypeFromParser(T.get(), &ScopeTypeInfo);
7901     }
7902   }
7903 
7904   if (!ScopeType.isNull() && !ScopeTypeInfo)
7905     ScopeTypeInfo = Context.getTrivialTypeSourceInfo(ScopeType,
7906                                                   FirstTypeName.StartLocation);
7907 
7908 
7909   return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, SS,
7910                                    ScopeTypeInfo, CCLoc, TildeLoc,
7911                                    Destructed);
7912 }
7913 
7914 ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
7915                                            SourceLocation OpLoc,
7916                                            tok::TokenKind OpKind,
7917                                            SourceLocation TildeLoc,
7918                                            const DeclSpec& DS) {
7919   QualType ObjectType;
7920   if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc))
7921     return ExprError();
7922 
7923   if (DS.getTypeSpecType() == DeclSpec::TST_decltype_auto) {
7924     Diag(DS.getTypeSpecTypeLoc(), diag::err_decltype_auto_invalid);
7925     return true;
7926   }
7927 
7928   QualType T = BuildDecltypeType(DS.getRepAsExpr(), /*AsUnevaluated=*/false);
7929 
7930   TypeLocBuilder TLB;
7931   DecltypeTypeLoc DecltypeTL = TLB.push<DecltypeTypeLoc>(T);
7932   DecltypeTL.setDecltypeLoc(DS.getTypeSpecTypeLoc());
7933   DecltypeTL.setRParenLoc(DS.getTypeofParensRange().getEnd());
7934   TypeSourceInfo *DestructedTypeInfo = TLB.getTypeSourceInfo(Context, T);
7935   PseudoDestructorTypeStorage Destructed(DestructedTypeInfo);
7936 
7937   return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, CXXScopeSpec(),
7938                                    nullptr, SourceLocation(), TildeLoc,
7939                                    Destructed);
7940 }
7941 
7942 ExprResult Sema::BuildCXXMemberCallExpr(Expr *E, NamedDecl *FoundDecl,
7943                                         CXXConversionDecl *Method,
7944                                         bool HadMultipleCandidates) {
7945   // Convert the expression to match the conversion function's implicit object
7946   // parameter.
7947   ExprResult Exp = PerformObjectArgumentInitialization(E, /*Qualifier=*/nullptr,
7948                                           FoundDecl, Method);
7949   if (Exp.isInvalid())
7950     return true;
7951 
7952   if (Method->getParent()->isLambda() &&
7953       Method->getConversionType()->isBlockPointerType()) {
7954     // This is a lambda conversion to block pointer; check if the argument
7955     // was a LambdaExpr.
7956     Expr *SubE = E;
7957     CastExpr *CE = dyn_cast<CastExpr>(SubE);
7958     if (CE && CE->getCastKind() == CK_NoOp)
7959       SubE = CE->getSubExpr();
7960     SubE = SubE->IgnoreParens();
7961     if (CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(SubE))
7962       SubE = BE->getSubExpr();
7963     if (isa<LambdaExpr>(SubE)) {
7964       // For the conversion to block pointer on a lambda expression, we
7965       // construct a special BlockLiteral instead; this doesn't really make
7966       // a difference in ARC, but outside of ARC the resulting block literal
7967       // follows the normal lifetime rules for block literals instead of being
7968       // autoreleased.
7969       PushExpressionEvaluationContext(
7970           ExpressionEvaluationContext::PotentiallyEvaluated);
7971       ExprResult BlockExp = BuildBlockForLambdaConversion(
7972           Exp.get()->getExprLoc(), Exp.get()->getExprLoc(), Method, Exp.get());
7973       PopExpressionEvaluationContext();
7974 
7975       // FIXME: This note should be produced by a CodeSynthesisContext.
7976       if (BlockExp.isInvalid())
7977         Diag(Exp.get()->getExprLoc(), diag::note_lambda_to_block_conv);
7978       return BlockExp;
7979     }
7980   }
7981 
7982   MemberExpr *ME =
7983       BuildMemberExpr(Exp.get(), /*IsArrow=*/false, SourceLocation(),
7984                       NestedNameSpecifierLoc(), SourceLocation(), Method,
7985                       DeclAccessPair::make(FoundDecl, FoundDecl->getAccess()),
7986                       HadMultipleCandidates, DeclarationNameInfo(),
7987                       Context.BoundMemberTy, VK_PRValue, OK_Ordinary);
7988 
7989   QualType ResultType = Method->getReturnType();
7990   ExprValueKind VK = Expr::getValueKindForType(ResultType);
7991   ResultType = ResultType.getNonLValueExprType(Context);
7992 
7993   CXXMemberCallExpr *CE = CXXMemberCallExpr::Create(
7994       Context, ME, /*Args=*/{}, ResultType, VK, Exp.get()->getEndLoc(),
7995       CurFPFeatureOverrides());
7996 
7997   if (CheckFunctionCall(Method, CE,
7998                         Method->getType()->castAs<FunctionProtoType>()))
7999     return ExprError();
8000 
8001   return CheckForImmediateInvocation(CE, CE->getMethodDecl());
8002 }
8003 
8004 ExprResult Sema::BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand,
8005                                       SourceLocation RParen) {
8006   // If the operand is an unresolved lookup expression, the expression is ill-
8007   // formed per [over.over]p1, because overloaded function names cannot be used
8008   // without arguments except in explicit contexts.
8009   ExprResult R = CheckPlaceholderExpr(Operand);
8010   if (R.isInvalid())
8011     return R;
8012 
8013   R = CheckUnevaluatedOperand(R.get());
8014   if (R.isInvalid())
8015     return ExprError();
8016 
8017   Operand = R.get();
8018 
8019   if (!inTemplateInstantiation() && !Operand->isInstantiationDependent() &&
8020       Operand->HasSideEffects(Context, false)) {
8021     // The expression operand for noexcept is in an unevaluated expression
8022     // context, so side effects could result in unintended consequences.
8023     Diag(Operand->getExprLoc(), diag::warn_side_effects_unevaluated_context);
8024   }
8025 
8026   CanThrowResult CanThrow = canThrow(Operand);
8027   return new (Context)
8028       CXXNoexceptExpr(Context.BoolTy, Operand, CanThrow, KeyLoc, RParen);
8029 }
8030 
8031 ExprResult Sema::ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation,
8032                                    Expr *Operand, SourceLocation RParen) {
8033   return BuildCXXNoexceptExpr(KeyLoc, Operand, RParen);
8034 }
8035 
8036 static void MaybeDecrementCount(
8037     Expr *E, llvm::DenseMap<const VarDecl *, int> &RefsMinusAssignments) {
8038   DeclRefExpr *LHS = nullptr;
8039   bool IsCompoundAssign = false;
8040   bool isIncrementDecrementUnaryOp = false;
8041   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
8042     if (BO->getLHS()->getType()->isDependentType() ||
8043         BO->getRHS()->getType()->isDependentType()) {
8044       if (BO->getOpcode() != BO_Assign)
8045         return;
8046     } else if (!BO->isAssignmentOp())
8047       return;
8048     else
8049       IsCompoundAssign = BO->isCompoundAssignmentOp();
8050     LHS = dyn_cast<DeclRefExpr>(BO->getLHS());
8051   } else if (CXXOperatorCallExpr *COCE = dyn_cast<CXXOperatorCallExpr>(E)) {
8052     if (COCE->getOperator() != OO_Equal)
8053       return;
8054     LHS = dyn_cast<DeclRefExpr>(COCE->getArg(0));
8055   } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
8056     if (!UO->isIncrementDecrementOp())
8057       return;
8058     isIncrementDecrementUnaryOp = true;
8059     LHS = dyn_cast<DeclRefExpr>(UO->getSubExpr());
8060   }
8061   if (!LHS)
8062     return;
8063   VarDecl *VD = dyn_cast<VarDecl>(LHS->getDecl());
8064   if (!VD)
8065     return;
8066   // Don't decrement RefsMinusAssignments if volatile variable with compound
8067   // assignment (+=, ...) or increment/decrement unary operator to avoid
8068   // potential unused-but-set-variable warning.
8069   if ((IsCompoundAssign || isIncrementDecrementUnaryOp) &&
8070       VD->getType().isVolatileQualified())
8071     return;
8072   auto iter = RefsMinusAssignments.find(VD);
8073   if (iter == RefsMinusAssignments.end())
8074     return;
8075   iter->getSecond()--;
8076 }
8077 
8078 /// Perform the conversions required for an expression used in a
8079 /// context that ignores the result.
8080 ExprResult Sema::IgnoredValueConversions(Expr *E) {
8081   MaybeDecrementCount(E, RefsMinusAssignments);
8082 
8083   if (E->hasPlaceholderType()) {
8084     ExprResult result = CheckPlaceholderExpr(E);
8085     if (result.isInvalid()) return E;
8086     E = result.get();
8087   }
8088 
8089   // C99 6.3.2.1:
8090   //   [Except in specific positions,] an lvalue that does not have
8091   //   array type is converted to the value stored in the
8092   //   designated object (and is no longer an lvalue).
8093   if (E->isPRValue()) {
8094     // In C, function designators (i.e. expressions of function type)
8095     // are r-values, but we still want to do function-to-pointer decay
8096     // on them.  This is both technically correct and convenient for
8097     // some clients.
8098     if (!getLangOpts().CPlusPlus && E->getType()->isFunctionType())
8099       return DefaultFunctionArrayConversion(E);
8100 
8101     return E;
8102   }
8103 
8104   if (getLangOpts().CPlusPlus) {
8105     // The C++11 standard defines the notion of a discarded-value expression;
8106     // normally, we don't need to do anything to handle it, but if it is a
8107     // volatile lvalue with a special form, we perform an lvalue-to-rvalue
8108     // conversion.
8109     if (getLangOpts().CPlusPlus11 && E->isReadIfDiscardedInCPlusPlus11()) {
8110       ExprResult Res = DefaultLvalueConversion(E);
8111       if (Res.isInvalid())
8112         return E;
8113       E = Res.get();
8114     } else {
8115       // Per C++2a [expr.ass]p5, a volatile assignment is not deprecated if
8116       // it occurs as a discarded-value expression.
8117       CheckUnusedVolatileAssignment(E);
8118     }
8119 
8120     // C++1z:
8121     //   If the expression is a prvalue after this optional conversion, the
8122     //   temporary materialization conversion is applied.
8123     //
8124     // We skip this step: IR generation is able to synthesize the storage for
8125     // itself in the aggregate case, and adding the extra node to the AST is
8126     // just clutter.
8127     // FIXME: We don't emit lifetime markers for the temporaries due to this.
8128     // FIXME: Do any other AST consumers care about this?
8129     return E;
8130   }
8131 
8132   // GCC seems to also exclude expressions of incomplete enum type.
8133   if (const EnumType *T = E->getType()->getAs<EnumType>()) {
8134     if (!T->getDecl()->isComplete()) {
8135       // FIXME: stupid workaround for a codegen bug!
8136       E = ImpCastExprToType(E, Context.VoidTy, CK_ToVoid).get();
8137       return E;
8138     }
8139   }
8140 
8141   ExprResult Res = DefaultFunctionArrayLvalueConversion(E);
8142   if (Res.isInvalid())
8143     return E;
8144   E = Res.get();
8145 
8146   if (!E->getType()->isVoidType())
8147     RequireCompleteType(E->getExprLoc(), E->getType(),
8148                         diag::err_incomplete_type);
8149   return E;
8150 }
8151 
8152 ExprResult Sema::CheckUnevaluatedOperand(Expr *E) {
8153   // Per C++2a [expr.ass]p5, a volatile assignment is not deprecated if
8154   // it occurs as an unevaluated operand.
8155   CheckUnusedVolatileAssignment(E);
8156 
8157   return E;
8158 }
8159 
8160 // If we can unambiguously determine whether Var can never be used
8161 // in a constant expression, return true.
8162 //  - if the variable and its initializer are non-dependent, then
8163 //    we can unambiguously check if the variable is a constant expression.
8164 //  - if the initializer is not value dependent - we can determine whether
8165 //    it can be used to initialize a constant expression.  If Init can not
8166 //    be used to initialize a constant expression we conclude that Var can
8167 //    never be a constant expression.
8168 //  - FXIME: if the initializer is dependent, we can still do some analysis and
8169 //    identify certain cases unambiguously as non-const by using a Visitor:
8170 //      - such as those that involve odr-use of a ParmVarDecl, involve a new
8171 //        delete, lambda-expr, dynamic-cast, reinterpret-cast etc...
8172 static inline bool VariableCanNeverBeAConstantExpression(VarDecl *Var,
8173     ASTContext &Context) {
8174   if (isa<ParmVarDecl>(Var)) return true;
8175   const VarDecl *DefVD = nullptr;
8176 
8177   // If there is no initializer - this can not be a constant expression.
8178   if (!Var->getAnyInitializer(DefVD)) return true;
8179   assert(DefVD);
8180   if (DefVD->isWeak()) return false;
8181   EvaluatedStmt *Eval = DefVD->ensureEvaluatedStmt();
8182 
8183   Expr *Init = cast<Expr>(Eval->Value);
8184 
8185   if (Var->getType()->isDependentType() || Init->isValueDependent()) {
8186     // FIXME: Teach the constant evaluator to deal with the non-dependent parts
8187     // of value-dependent expressions, and use it here to determine whether the
8188     // initializer is a potential constant expression.
8189     return false;
8190   }
8191 
8192   return !Var->isUsableInConstantExpressions(Context);
8193 }
8194 
8195 /// Check if the current lambda has any potential captures
8196 /// that must be captured by any of its enclosing lambdas that are ready to
8197 /// capture. If there is a lambda that can capture a nested
8198 /// potential-capture, go ahead and do so.  Also, check to see if any
8199 /// variables are uncaptureable or do not involve an odr-use so do not
8200 /// need to be captured.
8201 
8202 static void CheckIfAnyEnclosingLambdasMustCaptureAnyPotentialCaptures(
8203     Expr *const FE, LambdaScopeInfo *const CurrentLSI, Sema &S) {
8204 
8205   assert(!S.isUnevaluatedContext());
8206   assert(S.CurContext->isDependentContext());
8207 #ifndef NDEBUG
8208   DeclContext *DC = S.CurContext;
8209   while (DC && isa<CapturedDecl>(DC))
8210     DC = DC->getParent();
8211   assert(
8212       CurrentLSI->CallOperator == DC &&
8213       "The current call operator must be synchronized with Sema's CurContext");
8214 #endif // NDEBUG
8215 
8216   const bool IsFullExprInstantiationDependent = FE->isInstantiationDependent();
8217 
8218   // All the potentially captureable variables in the current nested
8219   // lambda (within a generic outer lambda), must be captured by an
8220   // outer lambda that is enclosed within a non-dependent context.
8221   CurrentLSI->visitPotentialCaptures([&] (VarDecl *Var, Expr *VarExpr) {
8222     // If the variable is clearly identified as non-odr-used and the full
8223     // expression is not instantiation dependent, only then do we not
8224     // need to check enclosing lambda's for speculative captures.
8225     // For e.g.:
8226     // Even though 'x' is not odr-used, it should be captured.
8227     // int test() {
8228     //   const int x = 10;
8229     //   auto L = [=](auto a) {
8230     //     (void) +x + a;
8231     //   };
8232     // }
8233     if (CurrentLSI->isVariableExprMarkedAsNonODRUsed(VarExpr) &&
8234         !IsFullExprInstantiationDependent)
8235       return;
8236 
8237     // If we have a capture-capable lambda for the variable, go ahead and
8238     // capture the variable in that lambda (and all its enclosing lambdas).
8239     if (const Optional<unsigned> Index =
8240             getStackIndexOfNearestEnclosingCaptureCapableLambda(
8241                 S.FunctionScopes, Var, S))
8242       S.MarkCaptureUsedInEnclosingContext(Var, VarExpr->getExprLoc(), *Index);
8243     const bool IsVarNeverAConstantExpression =
8244         VariableCanNeverBeAConstantExpression(Var, S.Context);
8245     if (!IsFullExprInstantiationDependent || IsVarNeverAConstantExpression) {
8246       // This full expression is not instantiation dependent or the variable
8247       // can not be used in a constant expression - which means
8248       // this variable must be odr-used here, so diagnose a
8249       // capture violation early, if the variable is un-captureable.
8250       // This is purely for diagnosing errors early.  Otherwise, this
8251       // error would get diagnosed when the lambda becomes capture ready.
8252       QualType CaptureType, DeclRefType;
8253       SourceLocation ExprLoc = VarExpr->getExprLoc();
8254       if (S.tryCaptureVariable(Var, ExprLoc, S.TryCapture_Implicit,
8255                           /*EllipsisLoc*/ SourceLocation(),
8256                           /*BuildAndDiagnose*/false, CaptureType,
8257                           DeclRefType, nullptr)) {
8258         // We will never be able to capture this variable, and we need
8259         // to be able to in any and all instantiations, so diagnose it.
8260         S.tryCaptureVariable(Var, ExprLoc, S.TryCapture_Implicit,
8261                           /*EllipsisLoc*/ SourceLocation(),
8262                           /*BuildAndDiagnose*/true, CaptureType,
8263                           DeclRefType, nullptr);
8264       }
8265     }
8266   });
8267 
8268   // Check if 'this' needs to be captured.
8269   if (CurrentLSI->hasPotentialThisCapture()) {
8270     // If we have a capture-capable lambda for 'this', go ahead and capture
8271     // 'this' in that lambda (and all its enclosing lambdas).
8272     if (const Optional<unsigned> Index =
8273             getStackIndexOfNearestEnclosingCaptureCapableLambda(
8274                 S.FunctionScopes, /*0 is 'this'*/ nullptr, S)) {
8275       const unsigned FunctionScopeIndexOfCapturableLambda = *Index;
8276       S.CheckCXXThisCapture(CurrentLSI->PotentialThisCaptureLocation,
8277                             /*Explicit*/ false, /*BuildAndDiagnose*/ true,
8278                             &FunctionScopeIndexOfCapturableLambda);
8279     }
8280   }
8281 
8282   // Reset all the potential captures at the end of each full-expression.
8283   CurrentLSI->clearPotentialCaptures();
8284 }
8285 
8286 static ExprResult attemptRecovery(Sema &SemaRef,
8287                                   const TypoCorrectionConsumer &Consumer,
8288                                   const TypoCorrection &TC) {
8289   LookupResult R(SemaRef, Consumer.getLookupResult().getLookupNameInfo(),
8290                  Consumer.getLookupResult().getLookupKind());
8291   const CXXScopeSpec *SS = Consumer.getSS();
8292   CXXScopeSpec NewSS;
8293 
8294   // Use an approprate CXXScopeSpec for building the expr.
8295   if (auto *NNS = TC.getCorrectionSpecifier())
8296     NewSS.MakeTrivial(SemaRef.Context, NNS, TC.getCorrectionRange());
8297   else if (SS && !TC.WillReplaceSpecifier())
8298     NewSS = *SS;
8299 
8300   if (auto *ND = TC.getFoundDecl()) {
8301     R.setLookupName(ND->getDeclName());
8302     R.addDecl(ND);
8303     if (ND->isCXXClassMember()) {
8304       // Figure out the correct naming class to add to the LookupResult.
8305       CXXRecordDecl *Record = nullptr;
8306       if (auto *NNS = TC.getCorrectionSpecifier())
8307         Record = NNS->getAsType()->getAsCXXRecordDecl();
8308       if (!Record)
8309         Record =
8310             dyn_cast<CXXRecordDecl>(ND->getDeclContext()->getRedeclContext());
8311       if (Record)
8312         R.setNamingClass(Record);
8313 
8314       // Detect and handle the case where the decl might be an implicit
8315       // member.
8316       bool MightBeImplicitMember;
8317       if (!Consumer.isAddressOfOperand())
8318         MightBeImplicitMember = true;
8319       else if (!NewSS.isEmpty())
8320         MightBeImplicitMember = false;
8321       else if (R.isOverloadedResult())
8322         MightBeImplicitMember = false;
8323       else if (R.isUnresolvableResult())
8324         MightBeImplicitMember = true;
8325       else
8326         MightBeImplicitMember = isa<FieldDecl>(ND) ||
8327                                 isa<IndirectFieldDecl>(ND) ||
8328                                 isa<MSPropertyDecl>(ND);
8329 
8330       if (MightBeImplicitMember)
8331         return SemaRef.BuildPossibleImplicitMemberExpr(
8332             NewSS, /*TemplateKWLoc*/ SourceLocation(), R,
8333             /*TemplateArgs*/ nullptr, /*S*/ nullptr);
8334     } else if (auto *Ivar = dyn_cast<ObjCIvarDecl>(ND)) {
8335       return SemaRef.LookupInObjCMethod(R, Consumer.getScope(),
8336                                         Ivar->getIdentifier());
8337     }
8338   }
8339 
8340   return SemaRef.BuildDeclarationNameExpr(NewSS, R, /*NeedsADL*/ false,
8341                                           /*AcceptInvalidDecl*/ true);
8342 }
8343 
8344 namespace {
8345 class FindTypoExprs : public RecursiveASTVisitor<FindTypoExprs> {
8346   llvm::SmallSetVector<TypoExpr *, 2> &TypoExprs;
8347 
8348 public:
8349   explicit FindTypoExprs(llvm::SmallSetVector<TypoExpr *, 2> &TypoExprs)
8350       : TypoExprs(TypoExprs) {}
8351   bool VisitTypoExpr(TypoExpr *TE) {
8352     TypoExprs.insert(TE);
8353     return true;
8354   }
8355 };
8356 
8357 class TransformTypos : public TreeTransform<TransformTypos> {
8358   typedef TreeTransform<TransformTypos> BaseTransform;
8359 
8360   VarDecl *InitDecl; // A decl to avoid as a correction because it is in the
8361                      // process of being initialized.
8362   llvm::function_ref<ExprResult(Expr *)> ExprFilter;
8363   llvm::SmallSetVector<TypoExpr *, 2> TypoExprs, AmbiguousTypoExprs;
8364   llvm::SmallDenseMap<TypoExpr *, ExprResult, 2> TransformCache;
8365   llvm::SmallDenseMap<OverloadExpr *, Expr *, 4> OverloadResolution;
8366 
8367   /// Emit diagnostics for all of the TypoExprs encountered.
8368   ///
8369   /// If the TypoExprs were successfully corrected, then the diagnostics should
8370   /// suggest the corrections. Otherwise the diagnostics will not suggest
8371   /// anything (having been passed an empty TypoCorrection).
8372   ///
8373   /// If we've failed to correct due to ambiguous corrections, we need to
8374   /// be sure to pass empty corrections and replacements. Otherwise it's
8375   /// possible that the Consumer has a TypoCorrection that failed to ambiguity
8376   /// and we don't want to report those diagnostics.
8377   void EmitAllDiagnostics(bool IsAmbiguous) {
8378     for (TypoExpr *TE : TypoExprs) {
8379       auto &State = SemaRef.getTypoExprState(TE);
8380       if (State.DiagHandler) {
8381         TypoCorrection TC = IsAmbiguous
8382             ? TypoCorrection() : State.Consumer->getCurrentCorrection();
8383         ExprResult Replacement = IsAmbiguous ? ExprError() : TransformCache[TE];
8384 
8385         // Extract the NamedDecl from the transformed TypoExpr and add it to the
8386         // TypoCorrection, replacing the existing decls. This ensures the right
8387         // NamedDecl is used in diagnostics e.g. in the case where overload
8388         // resolution was used to select one from several possible decls that
8389         // had been stored in the TypoCorrection.
8390         if (auto *ND = getDeclFromExpr(
8391                 Replacement.isInvalid() ? nullptr : Replacement.get()))
8392           TC.setCorrectionDecl(ND);
8393 
8394         State.DiagHandler(TC);
8395       }
8396       SemaRef.clearDelayedTypo(TE);
8397     }
8398   }
8399 
8400   /// Try to advance the typo correction state of the first unfinished TypoExpr.
8401   /// We allow advancement of the correction stream by removing it from the
8402   /// TransformCache which allows `TransformTypoExpr` to advance during the
8403   /// next transformation attempt.
8404   ///
8405   /// Any substitution attempts for the previous TypoExprs (which must have been
8406   /// finished) will need to be retried since it's possible that they will now
8407   /// be invalid given the latest advancement.
8408   ///
8409   /// We need to be sure that we're making progress - it's possible that the
8410   /// tree is so malformed that the transform never makes it to the
8411   /// `TransformTypoExpr`.
8412   ///
8413   /// Returns true if there are any untried correction combinations.
8414   bool CheckAndAdvanceTypoExprCorrectionStreams() {
8415     for (auto TE : TypoExprs) {
8416       auto &State = SemaRef.getTypoExprState(TE);
8417       TransformCache.erase(TE);
8418       if (!State.Consumer->hasMadeAnyCorrectionProgress())
8419         return false;
8420       if (!State.Consumer->finished())
8421         return true;
8422       State.Consumer->resetCorrectionStream();
8423     }
8424     return false;
8425   }
8426 
8427   NamedDecl *getDeclFromExpr(Expr *E) {
8428     if (auto *OE = dyn_cast_or_null<OverloadExpr>(E))
8429       E = OverloadResolution[OE];
8430 
8431     if (!E)
8432       return nullptr;
8433     if (auto *DRE = dyn_cast<DeclRefExpr>(E))
8434       return DRE->getFoundDecl();
8435     if (auto *ME = dyn_cast<MemberExpr>(E))
8436       return ME->getFoundDecl();
8437     // FIXME: Add any other expr types that could be be seen by the delayed typo
8438     // correction TreeTransform for which the corresponding TypoCorrection could
8439     // contain multiple decls.
8440     return nullptr;
8441   }
8442 
8443   ExprResult TryTransform(Expr *E) {
8444     Sema::SFINAETrap Trap(SemaRef);
8445     ExprResult Res = TransformExpr(E);
8446     if (Trap.hasErrorOccurred() || Res.isInvalid())
8447       return ExprError();
8448 
8449     return ExprFilter(Res.get());
8450   }
8451 
8452   // Since correcting typos may intoduce new TypoExprs, this function
8453   // checks for new TypoExprs and recurses if it finds any. Note that it will
8454   // only succeed if it is able to correct all typos in the given expression.
8455   ExprResult CheckForRecursiveTypos(ExprResult Res, bool &IsAmbiguous) {
8456     if (Res.isInvalid()) {
8457       return Res;
8458     }
8459     // Check to see if any new TypoExprs were created. If so, we need to recurse
8460     // to check their validity.
8461     Expr *FixedExpr = Res.get();
8462 
8463     auto SavedTypoExprs = std::move(TypoExprs);
8464     auto SavedAmbiguousTypoExprs = std::move(AmbiguousTypoExprs);
8465     TypoExprs.clear();
8466     AmbiguousTypoExprs.clear();
8467 
8468     FindTypoExprs(TypoExprs).TraverseStmt(FixedExpr);
8469     if (!TypoExprs.empty()) {
8470       // Recurse to handle newly created TypoExprs. If we're not able to
8471       // handle them, discard these TypoExprs.
8472       ExprResult RecurResult =
8473           RecursiveTransformLoop(FixedExpr, IsAmbiguous);
8474       if (RecurResult.isInvalid()) {
8475         Res = ExprError();
8476         // Recursive corrections didn't work, wipe them away and don't add
8477         // them to the TypoExprs set. Remove them from Sema's TypoExpr list
8478         // since we don't want to clear them twice. Note: it's possible the
8479         // TypoExprs were created recursively and thus won't be in our
8480         // Sema's TypoExprs - they were created in our `RecursiveTransformLoop`.
8481         auto &SemaTypoExprs = SemaRef.TypoExprs;
8482         for (auto TE : TypoExprs) {
8483           TransformCache.erase(TE);
8484           SemaRef.clearDelayedTypo(TE);
8485 
8486           auto SI = find(SemaTypoExprs, TE);
8487           if (SI != SemaTypoExprs.end()) {
8488             SemaTypoExprs.erase(SI);
8489           }
8490         }
8491       } else {
8492         // TypoExpr is valid: add newly created TypoExprs since we were
8493         // able to correct them.
8494         Res = RecurResult;
8495         SavedTypoExprs.set_union(TypoExprs);
8496       }
8497     }
8498 
8499     TypoExprs = std::move(SavedTypoExprs);
8500     AmbiguousTypoExprs = std::move(SavedAmbiguousTypoExprs);
8501 
8502     return Res;
8503   }
8504 
8505   // Try to transform the given expression, looping through the correction
8506   // candidates with `CheckAndAdvanceTypoExprCorrectionStreams`.
8507   //
8508   // If valid ambiguous typo corrections are seen, `IsAmbiguous` is set to
8509   // true and this method immediately will return an `ExprError`.
8510   ExprResult RecursiveTransformLoop(Expr *E, bool &IsAmbiguous) {
8511     ExprResult Res;
8512     auto SavedTypoExprs = std::move(SemaRef.TypoExprs);
8513     SemaRef.TypoExprs.clear();
8514 
8515     while (true) {
8516       Res = CheckForRecursiveTypos(TryTransform(E), IsAmbiguous);
8517 
8518       // Recursion encountered an ambiguous correction. This means that our
8519       // correction itself is ambiguous, so stop now.
8520       if (IsAmbiguous)
8521         break;
8522 
8523       // If the transform is still valid after checking for any new typos,
8524       // it's good to go.
8525       if (!Res.isInvalid())
8526         break;
8527 
8528       // The transform was invalid, see if we have any TypoExprs with untried
8529       // correction candidates.
8530       if (!CheckAndAdvanceTypoExprCorrectionStreams())
8531         break;
8532     }
8533 
8534     // If we found a valid result, double check to make sure it's not ambiguous.
8535     if (!IsAmbiguous && !Res.isInvalid() && !AmbiguousTypoExprs.empty()) {
8536       auto SavedTransformCache =
8537           llvm::SmallDenseMap<TypoExpr *, ExprResult, 2>(TransformCache);
8538 
8539       // Ensure none of the TypoExprs have multiple typo correction candidates
8540       // with the same edit length that pass all the checks and filters.
8541       while (!AmbiguousTypoExprs.empty()) {
8542         auto TE  = AmbiguousTypoExprs.back();
8543 
8544         // TryTransform itself can create new Typos, adding them to the TypoExpr map
8545         // and invalidating our TypoExprState, so always fetch it instead of storing.
8546         SemaRef.getTypoExprState(TE).Consumer->saveCurrentPosition();
8547 
8548         TypoCorrection TC = SemaRef.getTypoExprState(TE).Consumer->peekNextCorrection();
8549         TypoCorrection Next;
8550         do {
8551           // Fetch the next correction by erasing the typo from the cache and calling
8552           // `TryTransform` which will iterate through corrections in
8553           // `TransformTypoExpr`.
8554           TransformCache.erase(TE);
8555           ExprResult AmbigRes = CheckForRecursiveTypos(TryTransform(E), IsAmbiguous);
8556 
8557           if (!AmbigRes.isInvalid() || IsAmbiguous) {
8558             SemaRef.getTypoExprState(TE).Consumer->resetCorrectionStream();
8559             SavedTransformCache.erase(TE);
8560             Res = ExprError();
8561             IsAmbiguous = true;
8562             break;
8563           }
8564         } while ((Next = SemaRef.getTypoExprState(TE).Consumer->peekNextCorrection()) &&
8565                  Next.getEditDistance(false) == TC.getEditDistance(false));
8566 
8567         if (IsAmbiguous)
8568           break;
8569 
8570         AmbiguousTypoExprs.remove(TE);
8571         SemaRef.getTypoExprState(TE).Consumer->restoreSavedPosition();
8572         TransformCache[TE] = SavedTransformCache[TE];
8573       }
8574       TransformCache = std::move(SavedTransformCache);
8575     }
8576 
8577     // Wipe away any newly created TypoExprs that we don't know about. Since we
8578     // clear any invalid TypoExprs in `CheckForRecursiveTypos`, this is only
8579     // possible if a `TypoExpr` is created during a transformation but then
8580     // fails before we can discover it.
8581     auto &SemaTypoExprs = SemaRef.TypoExprs;
8582     for (auto Iterator = SemaTypoExprs.begin(); Iterator != SemaTypoExprs.end();) {
8583       auto TE = *Iterator;
8584       auto FI = find(TypoExprs, TE);
8585       if (FI != TypoExprs.end()) {
8586         Iterator++;
8587         continue;
8588       }
8589       SemaRef.clearDelayedTypo(TE);
8590       Iterator = SemaTypoExprs.erase(Iterator);
8591     }
8592     SemaRef.TypoExprs = std::move(SavedTypoExprs);
8593 
8594     return Res;
8595   }
8596 
8597 public:
8598   TransformTypos(Sema &SemaRef, VarDecl *InitDecl, llvm::function_ref<ExprResult(Expr *)> Filter)
8599       : BaseTransform(SemaRef), InitDecl(InitDecl), ExprFilter(Filter) {}
8600 
8601   ExprResult RebuildCallExpr(Expr *Callee, SourceLocation LParenLoc,
8602                                    MultiExprArg Args,
8603                                    SourceLocation RParenLoc,
8604                                    Expr *ExecConfig = nullptr) {
8605     auto Result = BaseTransform::RebuildCallExpr(Callee, LParenLoc, Args,
8606                                                  RParenLoc, ExecConfig);
8607     if (auto *OE = dyn_cast<OverloadExpr>(Callee)) {
8608       if (Result.isUsable()) {
8609         Expr *ResultCall = Result.get();
8610         if (auto *BE = dyn_cast<CXXBindTemporaryExpr>(ResultCall))
8611           ResultCall = BE->getSubExpr();
8612         if (auto *CE = dyn_cast<CallExpr>(ResultCall))
8613           OverloadResolution[OE] = CE->getCallee();
8614       }
8615     }
8616     return Result;
8617   }
8618 
8619   ExprResult TransformLambdaExpr(LambdaExpr *E) { return Owned(E); }
8620 
8621   ExprResult TransformBlockExpr(BlockExpr *E) { return Owned(E); }
8622 
8623   ExprResult Transform(Expr *E) {
8624     bool IsAmbiguous = false;
8625     ExprResult Res = RecursiveTransformLoop(E, IsAmbiguous);
8626 
8627     if (!Res.isUsable())
8628       FindTypoExprs(TypoExprs).TraverseStmt(E);
8629 
8630     EmitAllDiagnostics(IsAmbiguous);
8631 
8632     return Res;
8633   }
8634 
8635   ExprResult TransformTypoExpr(TypoExpr *E) {
8636     // If the TypoExpr hasn't been seen before, record it. Otherwise, return the
8637     // cached transformation result if there is one and the TypoExpr isn't the
8638     // first one that was encountered.
8639     auto &CacheEntry = TransformCache[E];
8640     if (!TypoExprs.insert(E) && !CacheEntry.isUnset()) {
8641       return CacheEntry;
8642     }
8643 
8644     auto &State = SemaRef.getTypoExprState(E);
8645     assert(State.Consumer && "Cannot transform a cleared TypoExpr");
8646 
8647     // For the first TypoExpr and an uncached TypoExpr, find the next likely
8648     // typo correction and return it.
8649     while (TypoCorrection TC = State.Consumer->getNextCorrection()) {
8650       if (InitDecl && TC.getFoundDecl() == InitDecl)
8651         continue;
8652       // FIXME: If we would typo-correct to an invalid declaration, it's
8653       // probably best to just suppress all errors from this typo correction.
8654       ExprResult NE = State.RecoveryHandler ?
8655           State.RecoveryHandler(SemaRef, E, TC) :
8656           attemptRecovery(SemaRef, *State.Consumer, TC);
8657       if (!NE.isInvalid()) {
8658         // Check whether there may be a second viable correction with the same
8659         // edit distance; if so, remember this TypoExpr may have an ambiguous
8660         // correction so it can be more thoroughly vetted later.
8661         TypoCorrection Next;
8662         if ((Next = State.Consumer->peekNextCorrection()) &&
8663             Next.getEditDistance(false) == TC.getEditDistance(false)) {
8664           AmbiguousTypoExprs.insert(E);
8665         } else {
8666           AmbiguousTypoExprs.remove(E);
8667         }
8668         assert(!NE.isUnset() &&
8669                "Typo was transformed into a valid-but-null ExprResult");
8670         return CacheEntry = NE;
8671       }
8672     }
8673     return CacheEntry = ExprError();
8674   }
8675 };
8676 }
8677 
8678 ExprResult
8679 Sema::CorrectDelayedTyposInExpr(Expr *E, VarDecl *InitDecl,
8680                                 bool RecoverUncorrectedTypos,
8681                                 llvm::function_ref<ExprResult(Expr *)> Filter) {
8682   // If the current evaluation context indicates there are uncorrected typos
8683   // and the current expression isn't guaranteed to not have typos, try to
8684   // resolve any TypoExpr nodes that might be in the expression.
8685   if (E && !ExprEvalContexts.empty() && ExprEvalContexts.back().NumTypos &&
8686       (E->isTypeDependent() || E->isValueDependent() ||
8687        E->isInstantiationDependent())) {
8688     auto TyposResolved = DelayedTypos.size();
8689     auto Result = TransformTypos(*this, InitDecl, Filter).Transform(E);
8690     TyposResolved -= DelayedTypos.size();
8691     if (Result.isInvalid() || Result.get() != E) {
8692       ExprEvalContexts.back().NumTypos -= TyposResolved;
8693       if (Result.isInvalid() && RecoverUncorrectedTypos) {
8694         struct TyposReplace : TreeTransform<TyposReplace> {
8695           TyposReplace(Sema &SemaRef) : TreeTransform(SemaRef) {}
8696           ExprResult TransformTypoExpr(clang::TypoExpr *E) {
8697             return this->SemaRef.CreateRecoveryExpr(E->getBeginLoc(),
8698                                                     E->getEndLoc(), {});
8699           }
8700         } TT(*this);
8701         return TT.TransformExpr(E);
8702       }
8703       return Result;
8704     }
8705     assert(TyposResolved == 0 && "Corrected typo but got same Expr back?");
8706   }
8707   return E;
8708 }
8709 
8710 ExprResult Sema::ActOnFinishFullExpr(Expr *FE, SourceLocation CC,
8711                                      bool DiscardedValue,
8712                                      bool IsConstexpr) {
8713   ExprResult FullExpr = FE;
8714 
8715   if (!FullExpr.get())
8716     return ExprError();
8717 
8718   if (DiagnoseUnexpandedParameterPack(FullExpr.get()))
8719     return ExprError();
8720 
8721   if (DiscardedValue) {
8722     // Top-level expressions default to 'id' when we're in a debugger.
8723     if (getLangOpts().DebuggerCastResultToId &&
8724         FullExpr.get()->getType() == Context.UnknownAnyTy) {
8725       FullExpr = forceUnknownAnyToType(FullExpr.get(), Context.getObjCIdType());
8726       if (FullExpr.isInvalid())
8727         return ExprError();
8728     }
8729 
8730     FullExpr = CheckPlaceholderExpr(FullExpr.get());
8731     if (FullExpr.isInvalid())
8732       return ExprError();
8733 
8734     FullExpr = IgnoredValueConversions(FullExpr.get());
8735     if (FullExpr.isInvalid())
8736       return ExprError();
8737 
8738     DiagnoseUnusedExprResult(FullExpr.get(), diag::warn_unused_expr);
8739   }
8740 
8741   FullExpr = CorrectDelayedTyposInExpr(FullExpr.get(), /*InitDecl=*/nullptr,
8742                                        /*RecoverUncorrectedTypos=*/true);
8743   if (FullExpr.isInvalid())
8744     return ExprError();
8745 
8746   CheckCompletedExpr(FullExpr.get(), CC, IsConstexpr);
8747 
8748   // At the end of this full expression (which could be a deeply nested
8749   // lambda), if there is a potential capture within the nested lambda,
8750   // have the outer capture-able lambda try and capture it.
8751   // Consider the following code:
8752   // void f(int, int);
8753   // void f(const int&, double);
8754   // void foo() {
8755   //  const int x = 10, y = 20;
8756   //  auto L = [=](auto a) {
8757   //      auto M = [=](auto b) {
8758   //         f(x, b); <-- requires x to be captured by L and M
8759   //         f(y, a); <-- requires y to be captured by L, but not all Ms
8760   //      };
8761   //   };
8762   // }
8763 
8764   // FIXME: Also consider what happens for something like this that involves
8765   // the gnu-extension statement-expressions or even lambda-init-captures:
8766   //   void f() {
8767   //     const int n = 0;
8768   //     auto L =  [&](auto a) {
8769   //       +n + ({ 0; a; });
8770   //     };
8771   //   }
8772   //
8773   // Here, we see +n, and then the full-expression 0; ends, so we don't
8774   // capture n (and instead remove it from our list of potential captures),
8775   // and then the full-expression +n + ({ 0; }); ends, but it's too late
8776   // for us to see that we need to capture n after all.
8777 
8778   LambdaScopeInfo *const CurrentLSI =
8779       getCurLambda(/*IgnoreCapturedRegions=*/true);
8780   // FIXME: PR 17877 showed that getCurLambda() can return a valid pointer
8781   // even if CurContext is not a lambda call operator. Refer to that Bug Report
8782   // for an example of the code that might cause this asynchrony.
8783   // By ensuring we are in the context of a lambda's call operator
8784   // we can fix the bug (we only need to check whether we need to capture
8785   // if we are within a lambda's body); but per the comments in that
8786   // PR, a proper fix would entail :
8787   //   "Alternative suggestion:
8788   //   - Add to Sema an integer holding the smallest (outermost) scope
8789   //     index that we are *lexically* within, and save/restore/set to
8790   //     FunctionScopes.size() in InstantiatingTemplate's
8791   //     constructor/destructor.
8792   //  - Teach the handful of places that iterate over FunctionScopes to
8793   //    stop at the outermost enclosing lexical scope."
8794   DeclContext *DC = CurContext;
8795   while (DC && isa<CapturedDecl>(DC))
8796     DC = DC->getParent();
8797   const bool IsInLambdaDeclContext = isLambdaCallOperator(DC);
8798   if (IsInLambdaDeclContext && CurrentLSI &&
8799       CurrentLSI->hasPotentialCaptures() && !FullExpr.isInvalid())
8800     CheckIfAnyEnclosingLambdasMustCaptureAnyPotentialCaptures(FE, CurrentLSI,
8801                                                               *this);
8802   return MaybeCreateExprWithCleanups(FullExpr);
8803 }
8804 
8805 StmtResult Sema::ActOnFinishFullStmt(Stmt *FullStmt) {
8806   if (!FullStmt) return StmtError();
8807 
8808   return MaybeCreateStmtWithCleanups(FullStmt);
8809 }
8810 
8811 Sema::IfExistsResult
8812 Sema::CheckMicrosoftIfExistsSymbol(Scope *S,
8813                                    CXXScopeSpec &SS,
8814                                    const DeclarationNameInfo &TargetNameInfo) {
8815   DeclarationName TargetName = TargetNameInfo.getName();
8816   if (!TargetName)
8817     return IER_DoesNotExist;
8818 
8819   // If the name itself is dependent, then the result is dependent.
8820   if (TargetName.isDependentName())
8821     return IER_Dependent;
8822 
8823   // Do the redeclaration lookup in the current scope.
8824   LookupResult R(*this, TargetNameInfo, Sema::LookupAnyName,
8825                  Sema::NotForRedeclaration);
8826   LookupParsedName(R, S, &SS);
8827   R.suppressDiagnostics();
8828 
8829   switch (R.getResultKind()) {
8830   case LookupResult::Found:
8831   case LookupResult::FoundOverloaded:
8832   case LookupResult::FoundUnresolvedValue:
8833   case LookupResult::Ambiguous:
8834     return IER_Exists;
8835 
8836   case LookupResult::NotFound:
8837     return IER_DoesNotExist;
8838 
8839   case LookupResult::NotFoundInCurrentInstantiation:
8840     return IER_Dependent;
8841   }
8842 
8843   llvm_unreachable("Invalid LookupResult Kind!");
8844 }
8845 
8846 Sema::IfExistsResult
8847 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc,
8848                                    bool IsIfExists, CXXScopeSpec &SS,
8849                                    UnqualifiedId &Name) {
8850   DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
8851 
8852   // Check for an unexpanded parameter pack.
8853   auto UPPC = IsIfExists ? UPPC_IfExists : UPPC_IfNotExists;
8854   if (DiagnoseUnexpandedParameterPack(SS, UPPC) ||
8855       DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC))
8856     return IER_Error;
8857 
8858   return CheckMicrosoftIfExistsSymbol(S, SS, TargetNameInfo);
8859 }
8860 
8861 concepts::Requirement *Sema::ActOnSimpleRequirement(Expr *E) {
8862   return BuildExprRequirement(E, /*IsSimple=*/true,
8863                               /*NoexceptLoc=*/SourceLocation(),
8864                               /*ReturnTypeRequirement=*/{});
8865 }
8866 
8867 concepts::Requirement *
8868 Sema::ActOnTypeRequirement(SourceLocation TypenameKWLoc, CXXScopeSpec &SS,
8869                            SourceLocation NameLoc, IdentifierInfo *TypeName,
8870                            TemplateIdAnnotation *TemplateId) {
8871   assert(((!TypeName && TemplateId) || (TypeName && !TemplateId)) &&
8872          "Exactly one of TypeName and TemplateId must be specified.");
8873   TypeSourceInfo *TSI = nullptr;
8874   if (TypeName) {
8875     QualType T = CheckTypenameType(ETK_Typename, TypenameKWLoc,
8876                                    SS.getWithLocInContext(Context), *TypeName,
8877                                    NameLoc, &TSI, /*DeducedTSTContext=*/false);
8878     if (T.isNull())
8879       return nullptr;
8880   } else {
8881     ASTTemplateArgsPtr ArgsPtr(TemplateId->getTemplateArgs(),
8882                                TemplateId->NumArgs);
8883     TypeResult T = ActOnTypenameType(CurScope, TypenameKWLoc, SS,
8884                                      TemplateId->TemplateKWLoc,
8885                                      TemplateId->Template, TemplateId->Name,
8886                                      TemplateId->TemplateNameLoc,
8887                                      TemplateId->LAngleLoc, ArgsPtr,
8888                                      TemplateId->RAngleLoc);
8889     if (T.isInvalid())
8890       return nullptr;
8891     if (GetTypeFromParser(T.get(), &TSI).isNull())
8892       return nullptr;
8893   }
8894   return BuildTypeRequirement(TSI);
8895 }
8896 
8897 concepts::Requirement *
8898 Sema::ActOnCompoundRequirement(Expr *E, SourceLocation NoexceptLoc) {
8899   return BuildExprRequirement(E, /*IsSimple=*/false, NoexceptLoc,
8900                               /*ReturnTypeRequirement=*/{});
8901 }
8902 
8903 concepts::Requirement *
8904 Sema::ActOnCompoundRequirement(
8905     Expr *E, SourceLocation NoexceptLoc, CXXScopeSpec &SS,
8906     TemplateIdAnnotation *TypeConstraint, unsigned Depth) {
8907   // C++2a [expr.prim.req.compound] p1.3.3
8908   //   [..] the expression is deduced against an invented function template
8909   //   F [...] F is a void function template with a single type template
8910   //   parameter T declared with the constrained-parameter. Form a new
8911   //   cv-qualifier-seq cv by taking the union of const and volatile specifiers
8912   //   around the constrained-parameter. F has a single parameter whose
8913   //   type-specifier is cv T followed by the abstract-declarator. [...]
8914   //
8915   // The cv part is done in the calling function - we get the concept with
8916   // arguments and the abstract declarator with the correct CV qualification and
8917   // have to synthesize T and the single parameter of F.
8918   auto &II = Context.Idents.get("expr-type");
8919   auto *TParam = TemplateTypeParmDecl::Create(Context, CurContext,
8920                                               SourceLocation(),
8921                                               SourceLocation(), Depth,
8922                                               /*Index=*/0, &II,
8923                                               /*Typename=*/true,
8924                                               /*ParameterPack=*/false,
8925                                               /*HasTypeConstraint=*/true);
8926 
8927   if (BuildTypeConstraint(SS, TypeConstraint, TParam,
8928                           /*EllipsisLoc=*/SourceLocation(),
8929                           /*AllowUnexpandedPack=*/true))
8930     // Just produce a requirement with no type requirements.
8931     return BuildExprRequirement(E, /*IsSimple=*/false, NoexceptLoc, {});
8932 
8933   auto *TPL = TemplateParameterList::Create(Context, SourceLocation(),
8934                                             SourceLocation(),
8935                                             ArrayRef<NamedDecl *>(TParam),
8936                                             SourceLocation(),
8937                                             /*RequiresClause=*/nullptr);
8938   return BuildExprRequirement(
8939       E, /*IsSimple=*/false, NoexceptLoc,
8940       concepts::ExprRequirement::ReturnTypeRequirement(TPL));
8941 }
8942 
8943 concepts::ExprRequirement *
8944 Sema::BuildExprRequirement(
8945     Expr *E, bool IsSimple, SourceLocation NoexceptLoc,
8946     concepts::ExprRequirement::ReturnTypeRequirement ReturnTypeRequirement) {
8947   auto Status = concepts::ExprRequirement::SS_Satisfied;
8948   ConceptSpecializationExpr *SubstitutedConstraintExpr = nullptr;
8949   if (E->isInstantiationDependent() || ReturnTypeRequirement.isDependent())
8950     Status = concepts::ExprRequirement::SS_Dependent;
8951   else if (NoexceptLoc.isValid() && canThrow(E) == CanThrowResult::CT_Can)
8952     Status = concepts::ExprRequirement::SS_NoexceptNotMet;
8953   else if (ReturnTypeRequirement.isSubstitutionFailure())
8954     Status = concepts::ExprRequirement::SS_TypeRequirementSubstitutionFailure;
8955   else if (ReturnTypeRequirement.isTypeConstraint()) {
8956     // C++2a [expr.prim.req]p1.3.3
8957     //     The immediately-declared constraint ([temp]) of decltype((E)) shall
8958     //     be satisfied.
8959     TemplateParameterList *TPL =
8960         ReturnTypeRequirement.getTypeConstraintTemplateParameterList();
8961     QualType MatchedType =
8962         Context.getReferenceQualifiedType(E).getCanonicalType();
8963     llvm::SmallVector<TemplateArgument, 1> Args;
8964     Args.push_back(TemplateArgument(MatchedType));
8965     TemplateArgumentList TAL(TemplateArgumentList::OnStack, Args);
8966     MultiLevelTemplateArgumentList MLTAL(TAL);
8967     for (unsigned I = 0; I < TPL->getDepth(); ++I)
8968       MLTAL.addOuterRetainedLevel();
8969     Expr *IDC =
8970         cast<TemplateTypeParmDecl>(TPL->getParam(0))->getTypeConstraint()
8971             ->getImmediatelyDeclaredConstraint();
8972     ExprResult Constraint = SubstExpr(IDC, MLTAL);
8973     assert(!Constraint.isInvalid() &&
8974            "Substitution cannot fail as it is simply putting a type template "
8975            "argument into a concept specialization expression's parameter.");
8976 
8977     SubstitutedConstraintExpr =
8978         cast<ConceptSpecializationExpr>(Constraint.get());
8979     if (!SubstitutedConstraintExpr->isSatisfied())
8980       Status = concepts::ExprRequirement::SS_ConstraintsNotSatisfied;
8981   }
8982   return new (Context) concepts::ExprRequirement(E, IsSimple, NoexceptLoc,
8983                                                  ReturnTypeRequirement, Status,
8984                                                  SubstitutedConstraintExpr);
8985 }
8986 
8987 concepts::ExprRequirement *
8988 Sema::BuildExprRequirement(
8989     concepts::Requirement::SubstitutionDiagnostic *ExprSubstitutionDiagnostic,
8990     bool IsSimple, SourceLocation NoexceptLoc,
8991     concepts::ExprRequirement::ReturnTypeRequirement ReturnTypeRequirement) {
8992   return new (Context) concepts::ExprRequirement(ExprSubstitutionDiagnostic,
8993                                                  IsSimple, NoexceptLoc,
8994                                                  ReturnTypeRequirement);
8995 }
8996 
8997 concepts::TypeRequirement *
8998 Sema::BuildTypeRequirement(TypeSourceInfo *Type) {
8999   return new (Context) concepts::TypeRequirement(Type);
9000 }
9001 
9002 concepts::TypeRequirement *
9003 Sema::BuildTypeRequirement(
9004     concepts::Requirement::SubstitutionDiagnostic *SubstDiag) {
9005   return new (Context) concepts::TypeRequirement(SubstDiag);
9006 }
9007 
9008 concepts::Requirement *Sema::ActOnNestedRequirement(Expr *Constraint) {
9009   return BuildNestedRequirement(Constraint);
9010 }
9011 
9012 concepts::NestedRequirement *
9013 Sema::BuildNestedRequirement(Expr *Constraint) {
9014   ConstraintSatisfaction Satisfaction;
9015   if (!Constraint->isInstantiationDependent() &&
9016       CheckConstraintSatisfaction(nullptr, {Constraint}, /*TemplateArgs=*/{},
9017                                   Constraint->getSourceRange(), Satisfaction))
9018     return nullptr;
9019   return new (Context) concepts::NestedRequirement(Context, Constraint,
9020                                                    Satisfaction);
9021 }
9022 
9023 concepts::NestedRequirement *
9024 Sema::BuildNestedRequirement(
9025     concepts::Requirement::SubstitutionDiagnostic *SubstDiag) {
9026   return new (Context) concepts::NestedRequirement(SubstDiag);
9027 }
9028 
9029 RequiresExprBodyDecl *
9030 Sema::ActOnStartRequiresExpr(SourceLocation RequiresKWLoc,
9031                              ArrayRef<ParmVarDecl *> LocalParameters,
9032                              Scope *BodyScope) {
9033   assert(BodyScope);
9034 
9035   RequiresExprBodyDecl *Body = RequiresExprBodyDecl::Create(Context, CurContext,
9036                                                             RequiresKWLoc);
9037 
9038   PushDeclContext(BodyScope, Body);
9039 
9040   for (ParmVarDecl *Param : LocalParameters) {
9041     if (Param->hasDefaultArg())
9042       // C++2a [expr.prim.req] p4
9043       //     [...] A local parameter of a requires-expression shall not have a
9044       //     default argument. [...]
9045       Diag(Param->getDefaultArgRange().getBegin(),
9046            diag::err_requires_expr_local_parameter_default_argument);
9047     // Ignore default argument and move on
9048 
9049     Param->setDeclContext(Body);
9050     // If this has an identifier, add it to the scope stack.
9051     if (Param->getIdentifier()) {
9052       CheckShadow(BodyScope, Param);
9053       PushOnScopeChains(Param, BodyScope);
9054     }
9055   }
9056   return Body;
9057 }
9058 
9059 void Sema::ActOnFinishRequiresExpr() {
9060   assert(CurContext && "DeclContext imbalance!");
9061   CurContext = CurContext->getLexicalParent();
9062   assert(CurContext && "Popped translation unit!");
9063 }
9064 
9065 ExprResult
9066 Sema::ActOnRequiresExpr(SourceLocation RequiresKWLoc,
9067                         RequiresExprBodyDecl *Body,
9068                         ArrayRef<ParmVarDecl *> LocalParameters,
9069                         ArrayRef<concepts::Requirement *> Requirements,
9070                         SourceLocation ClosingBraceLoc) {
9071   auto *RE = RequiresExpr::Create(Context, RequiresKWLoc, Body, LocalParameters,
9072                                   Requirements, ClosingBraceLoc);
9073   if (DiagnoseUnexpandedParameterPackInRequiresExpr(RE))
9074     return ExprError();
9075   return RE;
9076 }
9077