1 //===- SemaTemplateDeduction.cpp - Template Argument Deduction ------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements C++ template argument deduction.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "clang/Sema/TemplateDeduction.h"
14 #include "TreeTransform.h"
15 #include "TypeLocBuilder.h"
16 #include "clang/AST/ASTContext.h"
17 #include "clang/AST/ASTLambda.h"
18 #include "clang/AST/Decl.h"
19 #include "clang/AST/DeclAccessPair.h"
20 #include "clang/AST/DeclBase.h"
21 #include "clang/AST/DeclCXX.h"
22 #include "clang/AST/DeclTemplate.h"
23 #include "clang/AST/DeclarationName.h"
24 #include "clang/AST/Expr.h"
25 #include "clang/AST/ExprCXX.h"
26 #include "clang/AST/NestedNameSpecifier.h"
27 #include "clang/AST/RecursiveASTVisitor.h"
28 #include "clang/AST/TemplateBase.h"
29 #include "clang/AST/TemplateName.h"
30 #include "clang/AST/Type.h"
31 #include "clang/AST/TypeLoc.h"
32 #include "clang/AST/UnresolvedSet.h"
33 #include "clang/Basic/AddressSpaces.h"
34 #include "clang/Basic/ExceptionSpecificationType.h"
35 #include "clang/Basic/LLVM.h"
36 #include "clang/Basic/LangOptions.h"
37 #include "clang/Basic/PartialDiagnostic.h"
38 #include "clang/Basic/SourceLocation.h"
39 #include "clang/Basic/Specifiers.h"
40 #include "clang/Sema/Ownership.h"
41 #include "clang/Sema/Sema.h"
42 #include "clang/Sema/Template.h"
43 #include "llvm/ADT/APInt.h"
44 #include "llvm/ADT/APSInt.h"
45 #include "llvm/ADT/ArrayRef.h"
46 #include "llvm/ADT/DenseMap.h"
47 #include "llvm/ADT/FoldingSet.h"
48 #include "llvm/ADT/Optional.h"
49 #include "llvm/ADT/SmallBitVector.h"
50 #include "llvm/ADT/SmallPtrSet.h"
51 #include "llvm/ADT/SmallVector.h"
52 #include "llvm/Support/Casting.h"
53 #include "llvm/Support/Compiler.h"
54 #include "llvm/Support/ErrorHandling.h"
55 #include <algorithm>
56 #include <cassert>
57 #include <tuple>
58 #include <utility>
59 
60 namespace clang {
61 
62   /// Various flags that control template argument deduction.
63   ///
64   /// These flags can be bitwise-OR'd together.
65   enum TemplateDeductionFlags {
66     /// No template argument deduction flags, which indicates the
67     /// strictest results for template argument deduction (as used for, e.g.,
68     /// matching class template partial specializations).
69     TDF_None = 0,
70 
71     /// Within template argument deduction from a function call, we are
72     /// matching with a parameter type for which the original parameter was
73     /// a reference.
74     TDF_ParamWithReferenceType = 0x1,
75 
76     /// Within template argument deduction from a function call, we
77     /// are matching in a case where we ignore cv-qualifiers.
78     TDF_IgnoreQualifiers = 0x02,
79 
80     /// Within template argument deduction from a function call,
81     /// we are matching in a case where we can perform template argument
82     /// deduction from a template-id of a derived class of the argument type.
83     TDF_DerivedClass = 0x04,
84 
85     /// Allow non-dependent types to differ, e.g., when performing
86     /// template argument deduction from a function call where conversions
87     /// may apply.
88     TDF_SkipNonDependent = 0x08,
89 
90     /// Whether we are performing template argument deduction for
91     /// parameters and arguments in a top-level template argument
92     TDF_TopLevelParameterTypeList = 0x10,
93 
94     /// Within template argument deduction from overload resolution per
95     /// C++ [over.over] allow matching function types that are compatible in
96     /// terms of noreturn and default calling convention adjustments, or
97     /// similarly matching a declared template specialization against a
98     /// possible template, per C++ [temp.deduct.decl]. In either case, permit
99     /// deduction where the parameter is a function type that can be converted
100     /// to the argument type.
101     TDF_AllowCompatibleFunctionType = 0x20,
102 
103     /// Within template argument deduction for a conversion function, we are
104     /// matching with an argument type for which the original argument was
105     /// a reference.
106     TDF_ArgWithReferenceType = 0x40,
107   };
108 }
109 
110 using namespace clang;
111 using namespace sema;
112 
113 /// Compare two APSInts, extending and switching the sign as
114 /// necessary to compare their values regardless of underlying type.
115 static bool hasSameExtendedValue(llvm::APSInt X, llvm::APSInt Y) {
116   if (Y.getBitWidth() > X.getBitWidth())
117     X = X.extend(Y.getBitWidth());
118   else if (Y.getBitWidth() < X.getBitWidth())
119     Y = Y.extend(X.getBitWidth());
120 
121   // If there is a signedness mismatch, correct it.
122   if (X.isSigned() != Y.isSigned()) {
123     // If the signed value is negative, then the values cannot be the same.
124     if ((Y.isSigned() && Y.isNegative()) || (X.isSigned() && X.isNegative()))
125       return false;
126 
127     Y.setIsSigned(true);
128     X.setIsSigned(true);
129   }
130 
131   return X == Y;
132 }
133 
134 static Sema::TemplateDeductionResult
135 DeduceTemplateArguments(Sema &S,
136                         TemplateParameterList *TemplateParams,
137                         const TemplateArgument &Param,
138                         TemplateArgument Arg,
139                         TemplateDeductionInfo &Info,
140                         SmallVectorImpl<DeducedTemplateArgument> &Deduced);
141 
142 static Sema::TemplateDeductionResult
143 DeduceTemplateArgumentsByTypeMatch(Sema &S,
144                                    TemplateParameterList *TemplateParams,
145                                    QualType Param,
146                                    QualType Arg,
147                                    TemplateDeductionInfo &Info,
148                                    SmallVectorImpl<DeducedTemplateArgument> &
149                                                       Deduced,
150                                    unsigned TDF,
151                                    bool PartialOrdering = false,
152                                    bool DeducedFromArrayBound = false);
153 
154 static Sema::TemplateDeductionResult
155 DeduceTemplateArguments(Sema &S, TemplateParameterList *TemplateParams,
156                         ArrayRef<TemplateArgument> Params,
157                         ArrayRef<TemplateArgument> Args,
158                         TemplateDeductionInfo &Info,
159                         SmallVectorImpl<DeducedTemplateArgument> &Deduced,
160                         bool NumberOfArgumentsMustMatch);
161 
162 static void MarkUsedTemplateParameters(ASTContext &Ctx,
163                                        const TemplateArgument &TemplateArg,
164                                        bool OnlyDeduced, unsigned Depth,
165                                        llvm::SmallBitVector &Used);
166 
167 static void MarkUsedTemplateParameters(ASTContext &Ctx, QualType T,
168                                        bool OnlyDeduced, unsigned Level,
169                                        llvm::SmallBitVector &Deduced);
170 
171 /// If the given expression is of a form that permits the deduction
172 /// of a non-type template parameter, return the declaration of that
173 /// non-type template parameter.
174 static NonTypeTemplateParmDecl *
175 getDeducedParameterFromExpr(TemplateDeductionInfo &Info, Expr *E) {
176   // If we are within an alias template, the expression may have undergone
177   // any number of parameter substitutions already.
178   while (true) {
179     if (ImplicitCastExpr *IC = dyn_cast<ImplicitCastExpr>(E))
180       E = IC->getSubExpr();
181     else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(E))
182       E = CE->getSubExpr();
183     else if (SubstNonTypeTemplateParmExpr *Subst =
184                dyn_cast<SubstNonTypeTemplateParmExpr>(E))
185       E = Subst->getReplacement();
186     else
187       break;
188   }
189 
190   if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
191     if (auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl()))
192       if (NTTP->getDepth() == Info.getDeducedDepth())
193         return NTTP;
194 
195   return nullptr;
196 }
197 
198 /// Determine whether two declaration pointers refer to the same
199 /// declaration.
200 static bool isSameDeclaration(Decl *X, Decl *Y) {
201   if (NamedDecl *NX = dyn_cast<NamedDecl>(X))
202     X = NX->getUnderlyingDecl();
203   if (NamedDecl *NY = dyn_cast<NamedDecl>(Y))
204     Y = NY->getUnderlyingDecl();
205 
206   return X->getCanonicalDecl() == Y->getCanonicalDecl();
207 }
208 
209 /// Verify that the given, deduced template arguments are compatible.
210 ///
211 /// \returns The deduced template argument, or a NULL template argument if
212 /// the deduced template arguments were incompatible.
213 static DeducedTemplateArgument
214 checkDeducedTemplateArguments(ASTContext &Context,
215                               const DeducedTemplateArgument &X,
216                               const DeducedTemplateArgument &Y) {
217   // We have no deduction for one or both of the arguments; they're compatible.
218   if (X.isNull())
219     return Y;
220   if (Y.isNull())
221     return X;
222 
223   // If we have two non-type template argument values deduced for the same
224   // parameter, they must both match the type of the parameter, and thus must
225   // match each other's type. As we're only keeping one of them, we must check
226   // for that now. The exception is that if either was deduced from an array
227   // bound, the type is permitted to differ.
228   if (!X.wasDeducedFromArrayBound() && !Y.wasDeducedFromArrayBound()) {
229     QualType XType = X.getNonTypeTemplateArgumentType();
230     if (!XType.isNull()) {
231       QualType YType = Y.getNonTypeTemplateArgumentType();
232       if (YType.isNull() || !Context.hasSameType(XType, YType))
233         return DeducedTemplateArgument();
234     }
235   }
236 
237   switch (X.getKind()) {
238   case TemplateArgument::Null:
239     llvm_unreachable("Non-deduced template arguments handled above");
240 
241   case TemplateArgument::Type:
242     // If two template type arguments have the same type, they're compatible.
243     if (Y.getKind() == TemplateArgument::Type &&
244         Context.hasSameType(X.getAsType(), Y.getAsType()))
245       return X;
246 
247     // If one of the two arguments was deduced from an array bound, the other
248     // supersedes it.
249     if (X.wasDeducedFromArrayBound() != Y.wasDeducedFromArrayBound())
250       return X.wasDeducedFromArrayBound() ? Y : X;
251 
252     // The arguments are not compatible.
253     return DeducedTemplateArgument();
254 
255   case TemplateArgument::Integral:
256     // If we deduced a constant in one case and either a dependent expression or
257     // declaration in another case, keep the integral constant.
258     // If both are integral constants with the same value, keep that value.
259     if (Y.getKind() == TemplateArgument::Expression ||
260         Y.getKind() == TemplateArgument::Declaration ||
261         (Y.getKind() == TemplateArgument::Integral &&
262          hasSameExtendedValue(X.getAsIntegral(), Y.getAsIntegral())))
263       return X.wasDeducedFromArrayBound() ? Y : X;
264 
265     // All other combinations are incompatible.
266     return DeducedTemplateArgument();
267 
268   case TemplateArgument::Template:
269     if (Y.getKind() == TemplateArgument::Template &&
270         Context.hasSameTemplateName(X.getAsTemplate(), Y.getAsTemplate()))
271       return X;
272 
273     // All other combinations are incompatible.
274     return DeducedTemplateArgument();
275 
276   case TemplateArgument::TemplateExpansion:
277     if (Y.getKind() == TemplateArgument::TemplateExpansion &&
278         Context.hasSameTemplateName(X.getAsTemplateOrTemplatePattern(),
279                                     Y.getAsTemplateOrTemplatePattern()))
280       return X;
281 
282     // All other combinations are incompatible.
283     return DeducedTemplateArgument();
284 
285   case TemplateArgument::Expression: {
286     if (Y.getKind() != TemplateArgument::Expression)
287       return checkDeducedTemplateArguments(Context, Y, X);
288 
289     // Compare the expressions for equality
290     llvm::FoldingSetNodeID ID1, ID2;
291     X.getAsExpr()->Profile(ID1, Context, true);
292     Y.getAsExpr()->Profile(ID2, Context, true);
293     if (ID1 == ID2)
294       return X.wasDeducedFromArrayBound() ? Y : X;
295 
296     // Differing dependent expressions are incompatible.
297     return DeducedTemplateArgument();
298   }
299 
300   case TemplateArgument::Declaration:
301     assert(!X.wasDeducedFromArrayBound());
302 
303     // If we deduced a declaration and a dependent expression, keep the
304     // declaration.
305     if (Y.getKind() == TemplateArgument::Expression)
306       return X;
307 
308     // If we deduced a declaration and an integral constant, keep the
309     // integral constant and whichever type did not come from an array
310     // bound.
311     if (Y.getKind() == TemplateArgument::Integral) {
312       if (Y.wasDeducedFromArrayBound())
313         return TemplateArgument(Context, Y.getAsIntegral(),
314                                 X.getParamTypeForDecl());
315       return Y;
316     }
317 
318     // If we deduced two declarations, make sure that they refer to the
319     // same declaration.
320     if (Y.getKind() == TemplateArgument::Declaration &&
321         isSameDeclaration(X.getAsDecl(), Y.getAsDecl()))
322       return X;
323 
324     // All other combinations are incompatible.
325     return DeducedTemplateArgument();
326 
327   case TemplateArgument::NullPtr:
328     // If we deduced a null pointer and a dependent expression, keep the
329     // null pointer.
330     if (Y.getKind() == TemplateArgument::Expression)
331       return X;
332 
333     // If we deduced a null pointer and an integral constant, keep the
334     // integral constant.
335     if (Y.getKind() == TemplateArgument::Integral)
336       return Y;
337 
338     // If we deduced two null pointers, they are the same.
339     if (Y.getKind() == TemplateArgument::NullPtr)
340       return X;
341 
342     // All other combinations are incompatible.
343     return DeducedTemplateArgument();
344 
345   case TemplateArgument::Pack: {
346     if (Y.getKind() != TemplateArgument::Pack ||
347         X.pack_size() != Y.pack_size())
348       return DeducedTemplateArgument();
349 
350     llvm::SmallVector<TemplateArgument, 8> NewPack;
351     for (TemplateArgument::pack_iterator XA = X.pack_begin(),
352                                       XAEnd = X.pack_end(),
353                                          YA = Y.pack_begin();
354          XA != XAEnd; ++XA, ++YA) {
355       TemplateArgument Merged = checkDeducedTemplateArguments(
356           Context, DeducedTemplateArgument(*XA, X.wasDeducedFromArrayBound()),
357           DeducedTemplateArgument(*YA, Y.wasDeducedFromArrayBound()));
358       if (Merged.isNull())
359         return DeducedTemplateArgument();
360       NewPack.push_back(Merged);
361     }
362 
363     return DeducedTemplateArgument(
364         TemplateArgument::CreatePackCopy(Context, NewPack),
365         X.wasDeducedFromArrayBound() && Y.wasDeducedFromArrayBound());
366   }
367   }
368 
369   llvm_unreachable("Invalid TemplateArgument Kind!");
370 }
371 
372 /// Deduce the value of the given non-type template parameter
373 /// as the given deduced template argument. All non-type template parameter
374 /// deduction is funneled through here.
375 static Sema::TemplateDeductionResult DeduceNonTypeTemplateArgument(
376     Sema &S, TemplateParameterList *TemplateParams,
377     NonTypeTemplateParmDecl *NTTP, const DeducedTemplateArgument &NewDeduced,
378     QualType ValueType, TemplateDeductionInfo &Info,
379     SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
380   assert(NTTP->getDepth() == Info.getDeducedDepth() &&
381          "deducing non-type template argument with wrong depth");
382 
383   DeducedTemplateArgument Result = checkDeducedTemplateArguments(
384       S.Context, Deduced[NTTP->getIndex()], NewDeduced);
385   if (Result.isNull()) {
386     Info.Param = NTTP;
387     Info.FirstArg = Deduced[NTTP->getIndex()];
388     Info.SecondArg = NewDeduced;
389     return Sema::TDK_Inconsistent;
390   }
391 
392   Deduced[NTTP->getIndex()] = Result;
393   if (!S.getLangOpts().CPlusPlus17)
394     return Sema::TDK_Success;
395 
396   if (NTTP->isExpandedParameterPack())
397     // FIXME: We may still need to deduce parts of the type here! But we
398     // don't have any way to find which slice of the type to use, and the
399     // type stored on the NTTP itself is nonsense. Perhaps the type of an
400     // expanded NTTP should be a pack expansion type?
401     return Sema::TDK_Success;
402 
403   // Get the type of the parameter for deduction. If it's a (dependent) array
404   // or function type, we will not have decayed it yet, so do that now.
405   QualType ParamType = S.Context.getAdjustedParameterType(NTTP->getType());
406   if (auto *Expansion = dyn_cast<PackExpansionType>(ParamType))
407     ParamType = Expansion->getPattern();
408 
409   // FIXME: It's not clear how deduction of a parameter of reference
410   // type from an argument (of non-reference type) should be performed.
411   // For now, we just remove reference types from both sides and let
412   // the final check for matching types sort out the mess.
413   return DeduceTemplateArgumentsByTypeMatch(
414       S, TemplateParams, ParamType.getNonReferenceType(),
415       ValueType.getNonReferenceType(), Info, Deduced, TDF_SkipNonDependent,
416       /*PartialOrdering=*/false,
417       /*ArrayBound=*/NewDeduced.wasDeducedFromArrayBound());
418 }
419 
420 /// Deduce the value of the given non-type template parameter
421 /// from the given integral constant.
422 static Sema::TemplateDeductionResult DeduceNonTypeTemplateArgument(
423     Sema &S, TemplateParameterList *TemplateParams,
424     NonTypeTemplateParmDecl *NTTP, const llvm::APSInt &Value,
425     QualType ValueType, bool DeducedFromArrayBound, TemplateDeductionInfo &Info,
426     SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
427   return DeduceNonTypeTemplateArgument(
428       S, TemplateParams, NTTP,
429       DeducedTemplateArgument(S.Context, Value, ValueType,
430                               DeducedFromArrayBound),
431       ValueType, Info, Deduced);
432 }
433 
434 /// Deduce the value of the given non-type template parameter
435 /// from the given null pointer template argument type.
436 static Sema::TemplateDeductionResult DeduceNullPtrTemplateArgument(
437     Sema &S, TemplateParameterList *TemplateParams,
438     NonTypeTemplateParmDecl *NTTP, QualType NullPtrType,
439     TemplateDeductionInfo &Info,
440     SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
441   Expr *Value =
442       S.ImpCastExprToType(new (S.Context) CXXNullPtrLiteralExpr(
443                               S.Context.NullPtrTy, NTTP->getLocation()),
444                           NullPtrType, CK_NullToPointer)
445           .get();
446   return DeduceNonTypeTemplateArgument(S, TemplateParams, NTTP,
447                                        DeducedTemplateArgument(Value),
448                                        Value->getType(), Info, Deduced);
449 }
450 
451 /// Deduce the value of the given non-type template parameter
452 /// from the given type- or value-dependent expression.
453 ///
454 /// \returns true if deduction succeeded, false otherwise.
455 static Sema::TemplateDeductionResult DeduceNonTypeTemplateArgument(
456     Sema &S, TemplateParameterList *TemplateParams,
457     NonTypeTemplateParmDecl *NTTP, Expr *Value, TemplateDeductionInfo &Info,
458     SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
459   return DeduceNonTypeTemplateArgument(S, TemplateParams, NTTP,
460                                        DeducedTemplateArgument(Value),
461                                        Value->getType(), Info, Deduced);
462 }
463 
464 /// Deduce the value of the given non-type template parameter
465 /// from the given declaration.
466 ///
467 /// \returns true if deduction succeeded, false otherwise.
468 static Sema::TemplateDeductionResult DeduceNonTypeTemplateArgument(
469     Sema &S, TemplateParameterList *TemplateParams,
470     NonTypeTemplateParmDecl *NTTP, ValueDecl *D, QualType T,
471     TemplateDeductionInfo &Info,
472     SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
473   D = D ? cast<ValueDecl>(D->getCanonicalDecl()) : nullptr;
474   TemplateArgument New(D, T);
475   return DeduceNonTypeTemplateArgument(
476       S, TemplateParams, NTTP, DeducedTemplateArgument(New), T, Info, Deduced);
477 }
478 
479 static Sema::TemplateDeductionResult
480 DeduceTemplateArguments(Sema &S,
481                         TemplateParameterList *TemplateParams,
482                         TemplateName Param,
483                         TemplateName Arg,
484                         TemplateDeductionInfo &Info,
485                         SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
486   TemplateDecl *ParamDecl = Param.getAsTemplateDecl();
487   if (!ParamDecl) {
488     // The parameter type is dependent and is not a template template parameter,
489     // so there is nothing that we can deduce.
490     return Sema::TDK_Success;
491   }
492 
493   if (TemplateTemplateParmDecl *TempParam
494         = dyn_cast<TemplateTemplateParmDecl>(ParamDecl)) {
495     // If we're not deducing at this depth, there's nothing to deduce.
496     if (TempParam->getDepth() != Info.getDeducedDepth())
497       return Sema::TDK_Success;
498 
499     DeducedTemplateArgument NewDeduced(S.Context.getCanonicalTemplateName(Arg));
500     DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context,
501                                                  Deduced[TempParam->getIndex()],
502                                                                    NewDeduced);
503     if (Result.isNull()) {
504       Info.Param = TempParam;
505       Info.FirstArg = Deduced[TempParam->getIndex()];
506       Info.SecondArg = NewDeduced;
507       return Sema::TDK_Inconsistent;
508     }
509 
510     Deduced[TempParam->getIndex()] = Result;
511     return Sema::TDK_Success;
512   }
513 
514   // Verify that the two template names are equivalent.
515   if (S.Context.hasSameTemplateName(Param, Arg))
516     return Sema::TDK_Success;
517 
518   // Mismatch of non-dependent template parameter to argument.
519   Info.FirstArg = TemplateArgument(Param);
520   Info.SecondArg = TemplateArgument(Arg);
521   return Sema::TDK_NonDeducedMismatch;
522 }
523 
524 /// Deduce the template arguments by comparing the template parameter
525 /// type (which is a template-id) with the template argument type.
526 ///
527 /// \param S the Sema
528 ///
529 /// \param TemplateParams the template parameters that we are deducing
530 ///
531 /// \param Param the parameter type
532 ///
533 /// \param Arg the argument type
534 ///
535 /// \param Info information about the template argument deduction itself
536 ///
537 /// \param Deduced the deduced template arguments
538 ///
539 /// \returns the result of template argument deduction so far. Note that a
540 /// "success" result means that template argument deduction has not yet failed,
541 /// but it may still fail, later, for other reasons.
542 static Sema::TemplateDeductionResult
543 DeduceTemplateArguments(Sema &S,
544                         TemplateParameterList *TemplateParams,
545                         const TemplateSpecializationType *Param,
546                         QualType Arg,
547                         TemplateDeductionInfo &Info,
548                         SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
549   assert(Arg.isCanonical() && "Argument type must be canonical");
550 
551   // Treat an injected-class-name as its underlying template-id.
552   if (auto *Injected = dyn_cast<InjectedClassNameType>(Arg))
553     Arg = Injected->getInjectedSpecializationType();
554 
555   // Check whether the template argument is a dependent template-id.
556   if (const TemplateSpecializationType *SpecArg
557         = dyn_cast<TemplateSpecializationType>(Arg)) {
558     // Perform template argument deduction for the template name.
559     if (Sema::TemplateDeductionResult Result
560           = DeduceTemplateArguments(S, TemplateParams,
561                                     Param->getTemplateName(),
562                                     SpecArg->getTemplateName(),
563                                     Info, Deduced))
564       return Result;
565 
566 
567     // Perform template argument deduction on each template
568     // argument. Ignore any missing/extra arguments, since they could be
569     // filled in by default arguments.
570     return DeduceTemplateArguments(S, TemplateParams,
571                                    Param->template_arguments(),
572                                    SpecArg->template_arguments(), Info, Deduced,
573                                    /*NumberOfArgumentsMustMatch=*/false);
574   }
575 
576   // If the argument type is a class template specialization, we
577   // perform template argument deduction using its template
578   // arguments.
579   const RecordType *RecordArg = dyn_cast<RecordType>(Arg);
580   if (!RecordArg) {
581     Info.FirstArg = TemplateArgument(QualType(Param, 0));
582     Info.SecondArg = TemplateArgument(Arg);
583     return Sema::TDK_NonDeducedMismatch;
584   }
585 
586   ClassTemplateSpecializationDecl *SpecArg
587     = dyn_cast<ClassTemplateSpecializationDecl>(RecordArg->getDecl());
588   if (!SpecArg) {
589     Info.FirstArg = TemplateArgument(QualType(Param, 0));
590     Info.SecondArg = TemplateArgument(Arg);
591     return Sema::TDK_NonDeducedMismatch;
592   }
593 
594   // Perform template argument deduction for the template name.
595   if (Sema::TemplateDeductionResult Result
596         = DeduceTemplateArguments(S,
597                                   TemplateParams,
598                                   Param->getTemplateName(),
599                                TemplateName(SpecArg->getSpecializedTemplate()),
600                                   Info, Deduced))
601     return Result;
602 
603   // Perform template argument deduction for the template arguments.
604   return DeduceTemplateArguments(S, TemplateParams, Param->template_arguments(),
605                                  SpecArg->getTemplateArgs().asArray(), Info,
606                                  Deduced, /*NumberOfArgumentsMustMatch=*/true);
607 }
608 
609 /// Determines whether the given type is an opaque type that
610 /// might be more qualified when instantiated.
611 static bool IsPossiblyOpaquelyQualifiedType(QualType T) {
612   switch (T->getTypeClass()) {
613   case Type::TypeOfExpr:
614   case Type::TypeOf:
615   case Type::DependentName:
616   case Type::Decltype:
617   case Type::UnresolvedUsing:
618   case Type::TemplateTypeParm:
619     return true;
620 
621   case Type::ConstantArray:
622   case Type::IncompleteArray:
623   case Type::VariableArray:
624   case Type::DependentSizedArray:
625     return IsPossiblyOpaquelyQualifiedType(
626                                       cast<ArrayType>(T)->getElementType());
627 
628   default:
629     return false;
630   }
631 }
632 
633 /// Helper function to build a TemplateParameter when we don't
634 /// know its type statically.
635 static TemplateParameter makeTemplateParameter(Decl *D) {
636   if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(D))
637     return TemplateParameter(TTP);
638   if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D))
639     return TemplateParameter(NTTP);
640 
641   return TemplateParameter(cast<TemplateTemplateParmDecl>(D));
642 }
643 
644 /// If \p Param is an expanded parameter pack, get the number of expansions.
645 static Optional<unsigned> getExpandedPackSize(NamedDecl *Param) {
646   if (auto *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
647     if (TTP->isExpandedParameterPack())
648       return TTP->getNumExpansionParameters();
649 
650   if (auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Param))
651     if (NTTP->isExpandedParameterPack())
652       return NTTP->getNumExpansionTypes();
653 
654   if (auto *TTP = dyn_cast<TemplateTemplateParmDecl>(Param))
655     if (TTP->isExpandedParameterPack())
656       return TTP->getNumExpansionTemplateParameters();
657 
658   return None;
659 }
660 
661 /// A pack that we're currently deducing.
662 struct clang::DeducedPack {
663   // The index of the pack.
664   unsigned Index;
665 
666   // The old value of the pack before we started deducing it.
667   DeducedTemplateArgument Saved;
668 
669   // A deferred value of this pack from an inner deduction, that couldn't be
670   // deduced because this deduction hadn't happened yet.
671   DeducedTemplateArgument DeferredDeduction;
672 
673   // The new value of the pack.
674   SmallVector<DeducedTemplateArgument, 4> New;
675 
676   // The outer deduction for this pack, if any.
677   DeducedPack *Outer = nullptr;
678 
679   DeducedPack(unsigned Index) : Index(Index) {}
680 };
681 
682 namespace {
683 
684 /// A scope in which we're performing pack deduction.
685 class PackDeductionScope {
686 public:
687   /// Prepare to deduce the packs named within Pattern.
688   PackDeductionScope(Sema &S, TemplateParameterList *TemplateParams,
689                      SmallVectorImpl<DeducedTemplateArgument> &Deduced,
690                      TemplateDeductionInfo &Info, TemplateArgument Pattern)
691       : S(S), TemplateParams(TemplateParams), Deduced(Deduced), Info(Info) {
692     unsigned NumNamedPacks = addPacks(Pattern);
693     finishConstruction(NumNamedPacks);
694   }
695 
696   /// Prepare to directly deduce arguments of the parameter with index \p Index.
697   PackDeductionScope(Sema &S, TemplateParameterList *TemplateParams,
698                      SmallVectorImpl<DeducedTemplateArgument> &Deduced,
699                      TemplateDeductionInfo &Info, unsigned Index)
700       : S(S), TemplateParams(TemplateParams), Deduced(Deduced), Info(Info) {
701     addPack(Index);
702     finishConstruction(1);
703   }
704 
705 private:
706   void addPack(unsigned Index) {
707     // Save the deduced template argument for the parameter pack expanded
708     // by this pack expansion, then clear out the deduction.
709     DeducedPack Pack(Index);
710     Pack.Saved = Deduced[Index];
711     Deduced[Index] = TemplateArgument();
712 
713     // FIXME: What if we encounter multiple packs with different numbers of
714     // pre-expanded expansions? (This should already have been diagnosed
715     // during substitution.)
716     if (Optional<unsigned> ExpandedPackExpansions =
717             getExpandedPackSize(TemplateParams->getParam(Index)))
718       FixedNumExpansions = ExpandedPackExpansions;
719 
720     Packs.push_back(Pack);
721   }
722 
723   unsigned addPacks(TemplateArgument Pattern) {
724     // Compute the set of template parameter indices that correspond to
725     // parameter packs expanded by the pack expansion.
726     llvm::SmallBitVector SawIndices(TemplateParams->size());
727     llvm::SmallVector<TemplateArgument, 4> ExtraDeductions;
728 
729     auto AddPack = [&](unsigned Index) {
730       if (SawIndices[Index])
731         return;
732       SawIndices[Index] = true;
733       addPack(Index);
734 
735       // Deducing a parameter pack that is a pack expansion also constrains the
736       // packs appearing in that parameter to have the same deduced arity. Also,
737       // in C++17 onwards, deducing a non-type template parameter deduces its
738       // type, so we need to collect the pending deduced values for those packs.
739       if (auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(
740               TemplateParams->getParam(Index))) {
741         if (auto *Expansion = dyn_cast<PackExpansionType>(NTTP->getType()))
742           ExtraDeductions.push_back(Expansion->getPattern());
743       }
744       // FIXME: Also collect the unexpanded packs in any type and template
745       // parameter packs that are pack expansions.
746     };
747 
748     auto Collect = [&](TemplateArgument Pattern) {
749       SmallVector<UnexpandedParameterPack, 2> Unexpanded;
750       S.collectUnexpandedParameterPacks(Pattern, Unexpanded);
751       for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) {
752         unsigned Depth, Index;
753         std::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]);
754         if (Depth == Info.getDeducedDepth())
755           AddPack(Index);
756       }
757     };
758 
759     // Look for unexpanded packs in the pattern.
760     Collect(Pattern);
761     assert(!Packs.empty() && "Pack expansion without unexpanded packs?");
762 
763     unsigned NumNamedPacks = Packs.size();
764 
765     // Also look for unexpanded packs that are indirectly deduced by deducing
766     // the sizes of the packs in this pattern.
767     while (!ExtraDeductions.empty())
768       Collect(ExtraDeductions.pop_back_val());
769 
770     return NumNamedPacks;
771   }
772 
773   void finishConstruction(unsigned NumNamedPacks) {
774     // Dig out the partially-substituted pack, if there is one.
775     const TemplateArgument *PartialPackArgs = nullptr;
776     unsigned NumPartialPackArgs = 0;
777     std::pair<unsigned, unsigned> PartialPackDepthIndex(-1u, -1u);
778     if (auto *Scope = S.CurrentInstantiationScope)
779       if (auto *Partial = Scope->getPartiallySubstitutedPack(
780               &PartialPackArgs, &NumPartialPackArgs))
781         PartialPackDepthIndex = getDepthAndIndex(Partial);
782 
783     // This pack expansion will have been partially or fully expanded if
784     // it only names explicitly-specified parameter packs (including the
785     // partially-substituted one, if any).
786     bool IsExpanded = true;
787     for (unsigned I = 0; I != NumNamedPacks; ++I) {
788       if (Packs[I].Index >= Info.getNumExplicitArgs()) {
789         IsExpanded = false;
790         IsPartiallyExpanded = false;
791         break;
792       }
793       if (PartialPackDepthIndex ==
794             std::make_pair(Info.getDeducedDepth(), Packs[I].Index)) {
795         IsPartiallyExpanded = true;
796       }
797     }
798 
799     // Skip over the pack elements that were expanded into separate arguments.
800     // If we partially expanded, this is the number of partial arguments.
801     if (IsPartiallyExpanded)
802       PackElements += NumPartialPackArgs;
803     else if (IsExpanded)
804       PackElements += *FixedNumExpansions;
805 
806     for (auto &Pack : Packs) {
807       if (Info.PendingDeducedPacks.size() > Pack.Index)
808         Pack.Outer = Info.PendingDeducedPacks[Pack.Index];
809       else
810         Info.PendingDeducedPacks.resize(Pack.Index + 1);
811       Info.PendingDeducedPacks[Pack.Index] = &Pack;
812 
813       if (PartialPackDepthIndex ==
814             std::make_pair(Info.getDeducedDepth(), Pack.Index)) {
815         Pack.New.append(PartialPackArgs, PartialPackArgs + NumPartialPackArgs);
816         // We pre-populate the deduced value of the partially-substituted
817         // pack with the specified value. This is not entirely correct: the
818         // value is supposed to have been substituted, not deduced, but the
819         // cases where this is observable require an exact type match anyway.
820         //
821         // FIXME: If we could represent a "depth i, index j, pack elem k"
822         // parameter, we could substitute the partially-substituted pack
823         // everywhere and avoid this.
824         if (!IsPartiallyExpanded)
825           Deduced[Pack.Index] = Pack.New[PackElements];
826       }
827     }
828   }
829 
830 public:
831   ~PackDeductionScope() {
832     for (auto &Pack : Packs)
833       Info.PendingDeducedPacks[Pack.Index] = Pack.Outer;
834   }
835 
836   /// Determine whether this pack has already been partially expanded into a
837   /// sequence of (prior) function parameters / template arguments.
838   bool isPartiallyExpanded() { return IsPartiallyExpanded; }
839 
840   /// Determine whether this pack expansion scope has a known, fixed arity.
841   /// This happens if it involves a pack from an outer template that has
842   /// (notionally) already been expanded.
843   bool hasFixedArity() { return FixedNumExpansions.hasValue(); }
844 
845   /// Determine whether the next element of the argument is still part of this
846   /// pack. This is the case unless the pack is already expanded to a fixed
847   /// length.
848   bool hasNextElement() {
849     return !FixedNumExpansions || *FixedNumExpansions > PackElements;
850   }
851 
852   /// Move to deducing the next element in each pack that is being deduced.
853   void nextPackElement() {
854     // Capture the deduced template arguments for each parameter pack expanded
855     // by this pack expansion, add them to the list of arguments we've deduced
856     // for that pack, then clear out the deduced argument.
857     for (auto &Pack : Packs) {
858       DeducedTemplateArgument &DeducedArg = Deduced[Pack.Index];
859       if (!Pack.New.empty() || !DeducedArg.isNull()) {
860         while (Pack.New.size() < PackElements)
861           Pack.New.push_back(DeducedTemplateArgument());
862         if (Pack.New.size() == PackElements)
863           Pack.New.push_back(DeducedArg);
864         else
865           Pack.New[PackElements] = DeducedArg;
866         DeducedArg = Pack.New.size() > PackElements + 1
867                          ? Pack.New[PackElements + 1]
868                          : DeducedTemplateArgument();
869       }
870     }
871     ++PackElements;
872   }
873 
874   /// Finish template argument deduction for a set of argument packs,
875   /// producing the argument packs and checking for consistency with prior
876   /// deductions.
877   Sema::TemplateDeductionResult finish() {
878     // Build argument packs for each of the parameter packs expanded by this
879     // pack expansion.
880     for (auto &Pack : Packs) {
881       // Put back the old value for this pack.
882       Deduced[Pack.Index] = Pack.Saved;
883 
884       // Always make sure the size of this pack is correct, even if we didn't
885       // deduce any values for it.
886       //
887       // FIXME: This isn't required by the normative wording, but substitution
888       // and post-substitution checking will always fail if the arity of any
889       // pack is not equal to the number of elements we processed. (Either that
890       // or something else has gone *very* wrong.) We're permitted to skip any
891       // hard errors from those follow-on steps by the intent (but not the
892       // wording) of C++ [temp.inst]p8:
893       //
894       //   If the function selected by overload resolution can be determined
895       //   without instantiating a class template definition, it is unspecified
896       //   whether that instantiation actually takes place
897       Pack.New.resize(PackElements);
898 
899       // Build or find a new value for this pack.
900       DeducedTemplateArgument NewPack;
901       if (Pack.New.empty()) {
902         // If we deduced an empty argument pack, create it now.
903         NewPack = DeducedTemplateArgument(TemplateArgument::getEmptyPack());
904       } else {
905         TemplateArgument *ArgumentPack =
906             new (S.Context) TemplateArgument[Pack.New.size()];
907         std::copy(Pack.New.begin(), Pack.New.end(), ArgumentPack);
908         NewPack = DeducedTemplateArgument(
909             TemplateArgument(llvm::makeArrayRef(ArgumentPack, Pack.New.size())),
910             // FIXME: This is wrong, it's possible that some pack elements are
911             // deduced from an array bound and others are not:
912             //   template<typename ...T, T ...V> void g(const T (&...p)[V]);
913             //   g({1, 2, 3}, {{}, {}});
914             // ... should deduce T = {int, size_t (from array bound)}.
915             Pack.New[0].wasDeducedFromArrayBound());
916       }
917 
918       // Pick where we're going to put the merged pack.
919       DeducedTemplateArgument *Loc;
920       if (Pack.Outer) {
921         if (Pack.Outer->DeferredDeduction.isNull()) {
922           // Defer checking this pack until we have a complete pack to compare
923           // it against.
924           Pack.Outer->DeferredDeduction = NewPack;
925           continue;
926         }
927         Loc = &Pack.Outer->DeferredDeduction;
928       } else {
929         Loc = &Deduced[Pack.Index];
930       }
931 
932       // Check the new pack matches any previous value.
933       DeducedTemplateArgument OldPack = *Loc;
934       DeducedTemplateArgument Result =
935           checkDeducedTemplateArguments(S.Context, OldPack, NewPack);
936 
937       // If we deferred a deduction of this pack, check that one now too.
938       if (!Result.isNull() && !Pack.DeferredDeduction.isNull()) {
939         OldPack = Result;
940         NewPack = Pack.DeferredDeduction;
941         Result = checkDeducedTemplateArguments(S.Context, OldPack, NewPack);
942       }
943 
944       NamedDecl *Param = TemplateParams->getParam(Pack.Index);
945       if (Result.isNull()) {
946         Info.Param = makeTemplateParameter(Param);
947         Info.FirstArg = OldPack;
948         Info.SecondArg = NewPack;
949         return Sema::TDK_Inconsistent;
950       }
951 
952       // If we have a pre-expanded pack and we didn't deduce enough elements
953       // for it, fail deduction.
954       if (Optional<unsigned> Expansions = getExpandedPackSize(Param)) {
955         if (*Expansions != PackElements) {
956           Info.Param = makeTemplateParameter(Param);
957           Info.FirstArg = Result;
958           return Sema::TDK_IncompletePack;
959         }
960       }
961 
962       *Loc = Result;
963     }
964 
965     return Sema::TDK_Success;
966   }
967 
968 private:
969   Sema &S;
970   TemplateParameterList *TemplateParams;
971   SmallVectorImpl<DeducedTemplateArgument> &Deduced;
972   TemplateDeductionInfo &Info;
973   unsigned PackElements = 0;
974   bool IsPartiallyExpanded = false;
975   /// The number of expansions, if we have a fully-expanded pack in this scope.
976   Optional<unsigned> FixedNumExpansions;
977 
978   SmallVector<DeducedPack, 2> Packs;
979 };
980 
981 } // namespace
982 
983 /// Deduce the template arguments by comparing the list of parameter
984 /// types to the list of argument types, as in the parameter-type-lists of
985 /// function types (C++ [temp.deduct.type]p10).
986 ///
987 /// \param S The semantic analysis object within which we are deducing
988 ///
989 /// \param TemplateParams The template parameters that we are deducing
990 ///
991 /// \param Params The list of parameter types
992 ///
993 /// \param NumParams The number of types in \c Params
994 ///
995 /// \param Args The list of argument types
996 ///
997 /// \param NumArgs The number of types in \c Args
998 ///
999 /// \param Info information about the template argument deduction itself
1000 ///
1001 /// \param Deduced the deduced template arguments
1002 ///
1003 /// \param TDF bitwise OR of the TemplateDeductionFlags bits that describe
1004 /// how template argument deduction is performed.
1005 ///
1006 /// \param PartialOrdering If true, we are performing template argument
1007 /// deduction for during partial ordering for a call
1008 /// (C++0x [temp.deduct.partial]).
1009 ///
1010 /// \returns the result of template argument deduction so far. Note that a
1011 /// "success" result means that template argument deduction has not yet failed,
1012 /// but it may still fail, later, for other reasons.
1013 static Sema::TemplateDeductionResult
1014 DeduceTemplateArguments(Sema &S,
1015                         TemplateParameterList *TemplateParams,
1016                         const QualType *Params, unsigned NumParams,
1017                         const QualType *Args, unsigned NumArgs,
1018                         TemplateDeductionInfo &Info,
1019                         SmallVectorImpl<DeducedTemplateArgument> &Deduced,
1020                         unsigned TDF,
1021                         bool PartialOrdering = false) {
1022   // C++0x [temp.deduct.type]p10:
1023   //   Similarly, if P has a form that contains (T), then each parameter type
1024   //   Pi of the respective parameter-type- list of P is compared with the
1025   //   corresponding parameter type Ai of the corresponding parameter-type-list
1026   //   of A. [...]
1027   unsigned ArgIdx = 0, ParamIdx = 0;
1028   for (; ParamIdx != NumParams; ++ParamIdx) {
1029     // Check argument types.
1030     const PackExpansionType *Expansion
1031                                 = dyn_cast<PackExpansionType>(Params[ParamIdx]);
1032     if (!Expansion) {
1033       // Simple case: compare the parameter and argument types at this point.
1034 
1035       // Make sure we have an argument.
1036       if (ArgIdx >= NumArgs)
1037         return Sema::TDK_MiscellaneousDeductionFailure;
1038 
1039       if (isa<PackExpansionType>(Args[ArgIdx])) {
1040         // C++0x [temp.deduct.type]p22:
1041         //   If the original function parameter associated with A is a function
1042         //   parameter pack and the function parameter associated with P is not
1043         //   a function parameter pack, then template argument deduction fails.
1044         return Sema::TDK_MiscellaneousDeductionFailure;
1045       }
1046 
1047       if (Sema::TemplateDeductionResult Result
1048             = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1049                                                  Params[ParamIdx], Args[ArgIdx],
1050                                                  Info, Deduced, TDF,
1051                                                  PartialOrdering))
1052         return Result;
1053 
1054       ++ArgIdx;
1055       continue;
1056     }
1057 
1058     // C++0x [temp.deduct.type]p10:
1059     //   If the parameter-declaration corresponding to Pi is a function
1060     //   parameter pack, then the type of its declarator- id is compared with
1061     //   each remaining parameter type in the parameter-type-list of A. Each
1062     //   comparison deduces template arguments for subsequent positions in the
1063     //   template parameter packs expanded by the function parameter pack.
1064 
1065     QualType Pattern = Expansion->getPattern();
1066     PackDeductionScope PackScope(S, TemplateParams, Deduced, Info, Pattern);
1067 
1068     // A pack scope with fixed arity is not really a pack any more, so is not
1069     // a non-deduced context.
1070     if (ParamIdx + 1 == NumParams || PackScope.hasFixedArity()) {
1071       for (; ArgIdx < NumArgs && PackScope.hasNextElement(); ++ArgIdx) {
1072         // Deduce template arguments from the pattern.
1073         if (Sema::TemplateDeductionResult Result
1074               = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, Pattern,
1075                                                    Args[ArgIdx], Info, Deduced,
1076                                                    TDF, PartialOrdering))
1077           return Result;
1078 
1079         PackScope.nextPackElement();
1080       }
1081     } else {
1082       // C++0x [temp.deduct.type]p5:
1083       //   The non-deduced contexts are:
1084       //     - A function parameter pack that does not occur at the end of the
1085       //       parameter-declaration-clause.
1086       //
1087       // FIXME: There is no wording to say what we should do in this case. We
1088       // choose to resolve this by applying the same rule that is applied for a
1089       // function call: that is, deduce all contained packs to their
1090       // explicitly-specified values (or to <> if there is no such value).
1091       //
1092       // This is seemingly-arbitrarily different from the case of a template-id
1093       // with a non-trailing pack-expansion in its arguments, which renders the
1094       // entire template-argument-list a non-deduced context.
1095 
1096       // If the parameter type contains an explicitly-specified pack that we
1097       // could not expand, skip the number of parameters notionally created
1098       // by the expansion.
1099       Optional<unsigned> NumExpansions = Expansion->getNumExpansions();
1100       if (NumExpansions && !PackScope.isPartiallyExpanded()) {
1101         for (unsigned I = 0; I != *NumExpansions && ArgIdx < NumArgs;
1102              ++I, ++ArgIdx)
1103           PackScope.nextPackElement();
1104       }
1105     }
1106 
1107     // Build argument packs for each of the parameter packs expanded by this
1108     // pack expansion.
1109     if (auto Result = PackScope.finish())
1110       return Result;
1111   }
1112 
1113   // Make sure we don't have any extra arguments.
1114   if (ArgIdx < NumArgs)
1115     return Sema::TDK_MiscellaneousDeductionFailure;
1116 
1117   return Sema::TDK_Success;
1118 }
1119 
1120 /// Determine whether the parameter has qualifiers that the argument
1121 /// lacks. Put another way, determine whether there is no way to add
1122 /// a deduced set of qualifiers to the ParamType that would result in
1123 /// its qualifiers matching those of the ArgType.
1124 static bool hasInconsistentOrSupersetQualifiersOf(QualType ParamType,
1125                                                   QualType ArgType) {
1126   Qualifiers ParamQs = ParamType.getQualifiers();
1127   Qualifiers ArgQs = ArgType.getQualifiers();
1128 
1129   if (ParamQs == ArgQs)
1130     return false;
1131 
1132   // Mismatched (but not missing) Objective-C GC attributes.
1133   if (ParamQs.getObjCGCAttr() != ArgQs.getObjCGCAttr() &&
1134       ParamQs.hasObjCGCAttr())
1135     return true;
1136 
1137   // Mismatched (but not missing) address spaces.
1138   if (ParamQs.getAddressSpace() != ArgQs.getAddressSpace() &&
1139       ParamQs.hasAddressSpace())
1140     return true;
1141 
1142   // Mismatched (but not missing) Objective-C lifetime qualifiers.
1143   if (ParamQs.getObjCLifetime() != ArgQs.getObjCLifetime() &&
1144       ParamQs.hasObjCLifetime())
1145     return true;
1146 
1147   // CVR qualifiers inconsistent or a superset.
1148   return (ParamQs.getCVRQualifiers() & ~ArgQs.getCVRQualifiers()) != 0;
1149 }
1150 
1151 /// Compare types for equality with respect to possibly compatible
1152 /// function types (noreturn adjustment, implicit calling conventions). If any
1153 /// of parameter and argument is not a function, just perform type comparison.
1154 ///
1155 /// \param Param the template parameter type.
1156 ///
1157 /// \param Arg the argument type.
1158 bool Sema::isSameOrCompatibleFunctionType(CanQualType Param,
1159                                           CanQualType Arg) {
1160   const FunctionType *ParamFunction = Param->getAs<FunctionType>(),
1161                      *ArgFunction   = Arg->getAs<FunctionType>();
1162 
1163   // Just compare if not functions.
1164   if (!ParamFunction || !ArgFunction)
1165     return Param == Arg;
1166 
1167   // Noreturn and noexcept adjustment.
1168   QualType AdjustedParam;
1169   if (IsFunctionConversion(Param, Arg, AdjustedParam))
1170     return Arg == Context.getCanonicalType(AdjustedParam);
1171 
1172   // FIXME: Compatible calling conventions.
1173 
1174   return Param == Arg;
1175 }
1176 
1177 /// Get the index of the first template parameter that was originally from the
1178 /// innermost template-parameter-list. This is 0 except when we concatenate
1179 /// the template parameter lists of a class template and a constructor template
1180 /// when forming an implicit deduction guide.
1181 static unsigned getFirstInnerIndex(FunctionTemplateDecl *FTD) {
1182   auto *Guide = dyn_cast<CXXDeductionGuideDecl>(FTD->getTemplatedDecl());
1183   if (!Guide || !Guide->isImplicit())
1184     return 0;
1185   return Guide->getDeducedTemplate()->getTemplateParameters()->size();
1186 }
1187 
1188 /// Determine whether a type denotes a forwarding reference.
1189 static bool isForwardingReference(QualType Param, unsigned FirstInnerIndex) {
1190   // C++1z [temp.deduct.call]p3:
1191   //   A forwarding reference is an rvalue reference to a cv-unqualified
1192   //   template parameter that does not represent a template parameter of a
1193   //   class template.
1194   if (auto *ParamRef = Param->getAs<RValueReferenceType>()) {
1195     if (ParamRef->getPointeeType().getQualifiers())
1196       return false;
1197     auto *TypeParm = ParamRef->getPointeeType()->getAs<TemplateTypeParmType>();
1198     return TypeParm && TypeParm->getIndex() >= FirstInnerIndex;
1199   }
1200   return false;
1201 }
1202 
1203 /// Deduce the template arguments by comparing the parameter type and
1204 /// the argument type (C++ [temp.deduct.type]).
1205 ///
1206 /// \param S the semantic analysis object within which we are deducing
1207 ///
1208 /// \param TemplateParams the template parameters that we are deducing
1209 ///
1210 /// \param ParamIn the parameter type
1211 ///
1212 /// \param ArgIn the argument type
1213 ///
1214 /// \param Info information about the template argument deduction itself
1215 ///
1216 /// \param Deduced the deduced template arguments
1217 ///
1218 /// \param TDF bitwise OR of the TemplateDeductionFlags bits that describe
1219 /// how template argument deduction is performed.
1220 ///
1221 /// \param PartialOrdering Whether we're performing template argument deduction
1222 /// in the context of partial ordering (C++0x [temp.deduct.partial]).
1223 ///
1224 /// \returns the result of template argument deduction so far. Note that a
1225 /// "success" result means that template argument deduction has not yet failed,
1226 /// but it may still fail, later, for other reasons.
1227 static Sema::TemplateDeductionResult
1228 DeduceTemplateArgumentsByTypeMatch(Sema &S,
1229                                    TemplateParameterList *TemplateParams,
1230                                    QualType ParamIn, QualType ArgIn,
1231                                    TemplateDeductionInfo &Info,
1232                             SmallVectorImpl<DeducedTemplateArgument> &Deduced,
1233                                    unsigned TDF,
1234                                    bool PartialOrdering,
1235                                    bool DeducedFromArrayBound) {
1236   // We only want to look at the canonical types, since typedefs and
1237   // sugar are not part of template argument deduction.
1238   QualType Param = S.Context.getCanonicalType(ParamIn);
1239   QualType Arg = S.Context.getCanonicalType(ArgIn);
1240 
1241   // If the argument type is a pack expansion, look at its pattern.
1242   // This isn't explicitly called out
1243   if (const PackExpansionType *ArgExpansion
1244                                             = dyn_cast<PackExpansionType>(Arg))
1245     Arg = ArgExpansion->getPattern();
1246 
1247   if (PartialOrdering) {
1248     // C++11 [temp.deduct.partial]p5:
1249     //   Before the partial ordering is done, certain transformations are
1250     //   performed on the types used for partial ordering:
1251     //     - If P is a reference type, P is replaced by the type referred to.
1252     const ReferenceType *ParamRef = Param->getAs<ReferenceType>();
1253     if (ParamRef)
1254       Param = ParamRef->getPointeeType();
1255 
1256     //     - If A is a reference type, A is replaced by the type referred to.
1257     const ReferenceType *ArgRef = Arg->getAs<ReferenceType>();
1258     if (ArgRef)
1259       Arg = ArgRef->getPointeeType();
1260 
1261     if (ParamRef && ArgRef && S.Context.hasSameUnqualifiedType(Param, Arg)) {
1262       // C++11 [temp.deduct.partial]p9:
1263       //   If, for a given type, deduction succeeds in both directions (i.e.,
1264       //   the types are identical after the transformations above) and both
1265       //   P and A were reference types [...]:
1266       //     - if [one type] was an lvalue reference and [the other type] was
1267       //       not, [the other type] is not considered to be at least as
1268       //       specialized as [the first type]
1269       //     - if [one type] is more cv-qualified than [the other type],
1270       //       [the other type] is not considered to be at least as specialized
1271       //       as [the first type]
1272       // Objective-C ARC adds:
1273       //     - [one type] has non-trivial lifetime, [the other type] has
1274       //       __unsafe_unretained lifetime, and the types are otherwise
1275       //       identical
1276       //
1277       // A is "considered to be at least as specialized" as P iff deduction
1278       // succeeds, so we model this as a deduction failure. Note that
1279       // [the first type] is P and [the other type] is A here; the standard
1280       // gets this backwards.
1281       Qualifiers ParamQuals = Param.getQualifiers();
1282       Qualifiers ArgQuals = Arg.getQualifiers();
1283       if ((ParamRef->isLValueReferenceType() &&
1284            !ArgRef->isLValueReferenceType()) ||
1285           ParamQuals.isStrictSupersetOf(ArgQuals) ||
1286           (ParamQuals.hasNonTrivialObjCLifetime() &&
1287            ArgQuals.getObjCLifetime() == Qualifiers::OCL_ExplicitNone &&
1288            ParamQuals.withoutObjCLifetime() ==
1289                ArgQuals.withoutObjCLifetime())) {
1290         Info.FirstArg = TemplateArgument(ParamIn);
1291         Info.SecondArg = TemplateArgument(ArgIn);
1292         return Sema::TDK_NonDeducedMismatch;
1293       }
1294     }
1295 
1296     // C++11 [temp.deduct.partial]p7:
1297     //   Remove any top-level cv-qualifiers:
1298     //     - If P is a cv-qualified type, P is replaced by the cv-unqualified
1299     //       version of P.
1300     Param = Param.getUnqualifiedType();
1301     //     - If A is a cv-qualified type, A is replaced by the cv-unqualified
1302     //       version of A.
1303     Arg = Arg.getUnqualifiedType();
1304   } else {
1305     // C++0x [temp.deduct.call]p4 bullet 1:
1306     //   - If the original P is a reference type, the deduced A (i.e., the type
1307     //     referred to by the reference) can be more cv-qualified than the
1308     //     transformed A.
1309     if (TDF & TDF_ParamWithReferenceType) {
1310       Qualifiers Quals;
1311       QualType UnqualParam = S.Context.getUnqualifiedArrayType(Param, Quals);
1312       Quals.setCVRQualifiers(Quals.getCVRQualifiers() &
1313                              Arg.getCVRQualifiers());
1314       Param = S.Context.getQualifiedType(UnqualParam, Quals);
1315     }
1316 
1317     if ((TDF & TDF_TopLevelParameterTypeList) && !Param->isFunctionType()) {
1318       // C++0x [temp.deduct.type]p10:
1319       //   If P and A are function types that originated from deduction when
1320       //   taking the address of a function template (14.8.2.2) or when deducing
1321       //   template arguments from a function declaration (14.8.2.6) and Pi and
1322       //   Ai are parameters of the top-level parameter-type-list of P and A,
1323       //   respectively, Pi is adjusted if it is a forwarding reference and Ai
1324       //   is an lvalue reference, in
1325       //   which case the type of Pi is changed to be the template parameter
1326       //   type (i.e., T&& is changed to simply T). [ Note: As a result, when
1327       //   Pi is T&& and Ai is X&, the adjusted Pi will be T, causing T to be
1328       //   deduced as X&. - end note ]
1329       TDF &= ~TDF_TopLevelParameterTypeList;
1330       if (isForwardingReference(Param, 0) && Arg->isLValueReferenceType())
1331         Param = Param->getPointeeType();
1332     }
1333   }
1334 
1335   // C++ [temp.deduct.type]p9:
1336   //   A template type argument T, a template template argument TT or a
1337   //   template non-type argument i can be deduced if P and A have one of
1338   //   the following forms:
1339   //
1340   //     T
1341   //     cv-list T
1342   if (const TemplateTypeParmType *TemplateTypeParm
1343         = Param->getAs<TemplateTypeParmType>()) {
1344     // Just skip any attempts to deduce from a placeholder type or a parameter
1345     // at a different depth.
1346     if (Arg->isPlaceholderType() ||
1347         Info.getDeducedDepth() != TemplateTypeParm->getDepth())
1348       return Sema::TDK_Success;
1349 
1350     unsigned Index = TemplateTypeParm->getIndex();
1351     bool RecanonicalizeArg = false;
1352 
1353     // If the argument type is an array type, move the qualifiers up to the
1354     // top level, so they can be matched with the qualifiers on the parameter.
1355     if (isa<ArrayType>(Arg)) {
1356       Qualifiers Quals;
1357       Arg = S.Context.getUnqualifiedArrayType(Arg, Quals);
1358       if (Quals) {
1359         Arg = S.Context.getQualifiedType(Arg, Quals);
1360         RecanonicalizeArg = true;
1361       }
1362     }
1363 
1364     // The argument type can not be less qualified than the parameter
1365     // type.
1366     if (!(TDF & TDF_IgnoreQualifiers) &&
1367         hasInconsistentOrSupersetQualifiersOf(Param, Arg)) {
1368       Info.Param = cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index));
1369       Info.FirstArg = TemplateArgument(Param);
1370       Info.SecondArg = TemplateArgument(Arg);
1371       return Sema::TDK_Underqualified;
1372     }
1373 
1374     // Do not match a function type with a cv-qualified type.
1375     // http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#1584
1376     if (Arg->isFunctionType() && Param.hasQualifiers()) {
1377       return Sema::TDK_NonDeducedMismatch;
1378     }
1379 
1380     assert(TemplateTypeParm->getDepth() == Info.getDeducedDepth() &&
1381            "saw template type parameter with wrong depth");
1382     assert(Arg != S.Context.OverloadTy && "Unresolved overloaded function");
1383     QualType DeducedType = Arg;
1384 
1385     // Remove any qualifiers on the parameter from the deduced type.
1386     // We checked the qualifiers for consistency above.
1387     Qualifiers DeducedQs = DeducedType.getQualifiers();
1388     Qualifiers ParamQs = Param.getQualifiers();
1389     DeducedQs.removeCVRQualifiers(ParamQs.getCVRQualifiers());
1390     if (ParamQs.hasObjCGCAttr())
1391       DeducedQs.removeObjCGCAttr();
1392     if (ParamQs.hasAddressSpace())
1393       DeducedQs.removeAddressSpace();
1394     if (ParamQs.hasObjCLifetime())
1395       DeducedQs.removeObjCLifetime();
1396 
1397     // Objective-C ARC:
1398     //   If template deduction would produce a lifetime qualifier on a type
1399     //   that is not a lifetime type, template argument deduction fails.
1400     if (ParamQs.hasObjCLifetime() && !DeducedType->isObjCLifetimeType() &&
1401         !DeducedType->isDependentType()) {
1402       Info.Param = cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index));
1403       Info.FirstArg = TemplateArgument(Param);
1404       Info.SecondArg = TemplateArgument(Arg);
1405       return Sema::TDK_Underqualified;
1406     }
1407 
1408     // Objective-C ARC:
1409     //   If template deduction would produce an argument type with lifetime type
1410     //   but no lifetime qualifier, the __strong lifetime qualifier is inferred.
1411     if (S.getLangOpts().ObjCAutoRefCount &&
1412         DeducedType->isObjCLifetimeType() &&
1413         !DeducedQs.hasObjCLifetime())
1414       DeducedQs.setObjCLifetime(Qualifiers::OCL_Strong);
1415 
1416     DeducedType = S.Context.getQualifiedType(DeducedType.getUnqualifiedType(),
1417                                              DeducedQs);
1418 
1419     if (RecanonicalizeArg)
1420       DeducedType = S.Context.getCanonicalType(DeducedType);
1421 
1422     DeducedTemplateArgument NewDeduced(DeducedType, DeducedFromArrayBound);
1423     DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context,
1424                                                                  Deduced[Index],
1425                                                                    NewDeduced);
1426     if (Result.isNull()) {
1427       Info.Param = cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index));
1428       Info.FirstArg = Deduced[Index];
1429       Info.SecondArg = NewDeduced;
1430       return Sema::TDK_Inconsistent;
1431     }
1432 
1433     Deduced[Index] = Result;
1434     return Sema::TDK_Success;
1435   }
1436 
1437   // Set up the template argument deduction information for a failure.
1438   Info.FirstArg = TemplateArgument(ParamIn);
1439   Info.SecondArg = TemplateArgument(ArgIn);
1440 
1441   // If the parameter is an already-substituted template parameter
1442   // pack, do nothing: we don't know which of its arguments to look
1443   // at, so we have to wait until all of the parameter packs in this
1444   // expansion have arguments.
1445   if (isa<SubstTemplateTypeParmPackType>(Param))
1446     return Sema::TDK_Success;
1447 
1448   // Check the cv-qualifiers on the parameter and argument types.
1449   CanQualType CanParam = S.Context.getCanonicalType(Param);
1450   CanQualType CanArg = S.Context.getCanonicalType(Arg);
1451   if (!(TDF & TDF_IgnoreQualifiers)) {
1452     if (TDF & TDF_ParamWithReferenceType) {
1453       if (hasInconsistentOrSupersetQualifiersOf(Param, Arg))
1454         return Sema::TDK_NonDeducedMismatch;
1455     } else if (TDF & TDF_ArgWithReferenceType) {
1456       // C++ [temp.deduct.conv]p4:
1457       //   If the original A is a reference type, A can be more cv-qualified
1458       //   than the deduced A
1459       if (!Arg.getQualifiers().compatiblyIncludes(Param.getQualifiers()))
1460         return Sema::TDK_NonDeducedMismatch;
1461 
1462       // Strip out all extra qualifiers from the argument to figure out the
1463       // type we're converting to, prior to the qualification conversion.
1464       Qualifiers Quals;
1465       Arg = S.Context.getUnqualifiedArrayType(Arg, Quals);
1466       Arg = S.Context.getQualifiedType(Arg, Param.getQualifiers());
1467     } else if (!IsPossiblyOpaquelyQualifiedType(Param)) {
1468       if (Param.getCVRQualifiers() != Arg.getCVRQualifiers())
1469         return Sema::TDK_NonDeducedMismatch;
1470     }
1471 
1472     // If the parameter type is not dependent, there is nothing to deduce.
1473     if (!Param->isDependentType()) {
1474       if (!(TDF & TDF_SkipNonDependent)) {
1475         bool NonDeduced =
1476             (TDF & TDF_AllowCompatibleFunctionType)
1477                 ? !S.isSameOrCompatibleFunctionType(CanParam, CanArg)
1478                 : Param != Arg;
1479         if (NonDeduced) {
1480           return Sema::TDK_NonDeducedMismatch;
1481         }
1482       }
1483       return Sema::TDK_Success;
1484     }
1485   } else if (!Param->isDependentType()) {
1486     CanQualType ParamUnqualType = CanParam.getUnqualifiedType(),
1487                 ArgUnqualType = CanArg.getUnqualifiedType();
1488     bool Success =
1489         (TDF & TDF_AllowCompatibleFunctionType)
1490             ? S.isSameOrCompatibleFunctionType(ParamUnqualType, ArgUnqualType)
1491             : ParamUnqualType == ArgUnqualType;
1492     if (Success)
1493       return Sema::TDK_Success;
1494   }
1495 
1496   switch (Param->getTypeClass()) {
1497     // Non-canonical types cannot appear here.
1498 #define NON_CANONICAL_TYPE(Class, Base) \
1499   case Type::Class: llvm_unreachable("deducing non-canonical type: " #Class);
1500 #define TYPE(Class, Base)
1501 #include "clang/AST/TypeNodes.inc"
1502 
1503     case Type::TemplateTypeParm:
1504     case Type::SubstTemplateTypeParmPack:
1505       llvm_unreachable("Type nodes handled above");
1506 
1507     // These types cannot be dependent, so simply check whether the types are
1508     // the same.
1509     case Type::Builtin:
1510     case Type::VariableArray:
1511     case Type::Vector:
1512     case Type::FunctionNoProto:
1513     case Type::Record:
1514     case Type::Enum:
1515     case Type::ObjCObject:
1516     case Type::ObjCInterface:
1517     case Type::ObjCObjectPointer:
1518     case Type::ExtInt:
1519       if (TDF & TDF_SkipNonDependent)
1520         return Sema::TDK_Success;
1521 
1522       if (TDF & TDF_IgnoreQualifiers) {
1523         Param = Param.getUnqualifiedType();
1524         Arg = Arg.getUnqualifiedType();
1525       }
1526 
1527       return Param == Arg? Sema::TDK_Success : Sema::TDK_NonDeducedMismatch;
1528 
1529     //     _Complex T   [placeholder extension]
1530     case Type::Complex:
1531       if (const ComplexType *ComplexArg = Arg->getAs<ComplexType>())
1532         return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1533                                     cast<ComplexType>(Param)->getElementType(),
1534                                     ComplexArg->getElementType(),
1535                                     Info, Deduced, TDF);
1536 
1537       return Sema::TDK_NonDeducedMismatch;
1538 
1539     //     _Atomic T   [extension]
1540     case Type::Atomic:
1541       if (const AtomicType *AtomicArg = Arg->getAs<AtomicType>())
1542         return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1543                                        cast<AtomicType>(Param)->getValueType(),
1544                                        AtomicArg->getValueType(),
1545                                        Info, Deduced, TDF);
1546 
1547       return Sema::TDK_NonDeducedMismatch;
1548 
1549     //     T *
1550     case Type::Pointer: {
1551       QualType PointeeType;
1552       if (const PointerType *PointerArg = Arg->getAs<PointerType>()) {
1553         PointeeType = PointerArg->getPointeeType();
1554       } else if (const ObjCObjectPointerType *PointerArg
1555                    = Arg->getAs<ObjCObjectPointerType>()) {
1556         PointeeType = PointerArg->getPointeeType();
1557       } else {
1558         return Sema::TDK_NonDeducedMismatch;
1559       }
1560 
1561       unsigned SubTDF = TDF & (TDF_IgnoreQualifiers | TDF_DerivedClass);
1562       return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1563                                      cast<PointerType>(Param)->getPointeeType(),
1564                                      PointeeType,
1565                                      Info, Deduced, SubTDF);
1566     }
1567 
1568     //     T &
1569     case Type::LValueReference: {
1570       const LValueReferenceType *ReferenceArg =
1571           Arg->getAs<LValueReferenceType>();
1572       if (!ReferenceArg)
1573         return Sema::TDK_NonDeducedMismatch;
1574 
1575       return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1576                            cast<LValueReferenceType>(Param)->getPointeeType(),
1577                            ReferenceArg->getPointeeType(), Info, Deduced, 0);
1578     }
1579 
1580     //     T && [C++0x]
1581     case Type::RValueReference: {
1582       const RValueReferenceType *ReferenceArg =
1583           Arg->getAs<RValueReferenceType>();
1584       if (!ReferenceArg)
1585         return Sema::TDK_NonDeducedMismatch;
1586 
1587       return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1588                              cast<RValueReferenceType>(Param)->getPointeeType(),
1589                              ReferenceArg->getPointeeType(),
1590                              Info, Deduced, 0);
1591     }
1592 
1593     //     T [] (implied, but not stated explicitly)
1594     case Type::IncompleteArray: {
1595       const IncompleteArrayType *IncompleteArrayArg =
1596         S.Context.getAsIncompleteArrayType(Arg);
1597       if (!IncompleteArrayArg)
1598         return Sema::TDK_NonDeducedMismatch;
1599 
1600       unsigned SubTDF = TDF & TDF_IgnoreQualifiers;
1601       return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1602                     S.Context.getAsIncompleteArrayType(Param)->getElementType(),
1603                     IncompleteArrayArg->getElementType(),
1604                     Info, Deduced, SubTDF);
1605     }
1606 
1607     //     T [integer-constant]
1608     case Type::ConstantArray: {
1609       const ConstantArrayType *ConstantArrayArg =
1610         S.Context.getAsConstantArrayType(Arg);
1611       if (!ConstantArrayArg)
1612         return Sema::TDK_NonDeducedMismatch;
1613 
1614       const ConstantArrayType *ConstantArrayParm =
1615         S.Context.getAsConstantArrayType(Param);
1616       if (ConstantArrayArg->getSize() != ConstantArrayParm->getSize())
1617         return Sema::TDK_NonDeducedMismatch;
1618 
1619       unsigned SubTDF = TDF & TDF_IgnoreQualifiers;
1620       return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1621                                            ConstantArrayParm->getElementType(),
1622                                            ConstantArrayArg->getElementType(),
1623                                            Info, Deduced, SubTDF);
1624     }
1625 
1626     //     type [i]
1627     case Type::DependentSizedArray: {
1628       const ArrayType *ArrayArg = S.Context.getAsArrayType(Arg);
1629       if (!ArrayArg)
1630         return Sema::TDK_NonDeducedMismatch;
1631 
1632       unsigned SubTDF = TDF & TDF_IgnoreQualifiers;
1633 
1634       // Check the element type of the arrays
1635       const DependentSizedArrayType *DependentArrayParm
1636         = S.Context.getAsDependentSizedArrayType(Param);
1637       if (Sema::TemplateDeductionResult Result
1638             = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1639                                           DependentArrayParm->getElementType(),
1640                                           ArrayArg->getElementType(),
1641                                           Info, Deduced, SubTDF))
1642         return Result;
1643 
1644       // Determine the array bound is something we can deduce.
1645       NonTypeTemplateParmDecl *NTTP
1646         = getDeducedParameterFromExpr(Info, DependentArrayParm->getSizeExpr());
1647       if (!NTTP)
1648         return Sema::TDK_Success;
1649 
1650       // We can perform template argument deduction for the given non-type
1651       // template parameter.
1652       assert(NTTP->getDepth() == Info.getDeducedDepth() &&
1653              "saw non-type template parameter with wrong depth");
1654       if (const ConstantArrayType *ConstantArrayArg
1655             = dyn_cast<ConstantArrayType>(ArrayArg)) {
1656         llvm::APSInt Size(ConstantArrayArg->getSize());
1657         return DeduceNonTypeTemplateArgument(S, TemplateParams, NTTP, Size,
1658                                              S.Context.getSizeType(),
1659                                              /*ArrayBound=*/true,
1660                                              Info, Deduced);
1661       }
1662       if (const DependentSizedArrayType *DependentArrayArg
1663             = dyn_cast<DependentSizedArrayType>(ArrayArg))
1664         if (DependentArrayArg->getSizeExpr())
1665           return DeduceNonTypeTemplateArgument(S, TemplateParams, NTTP,
1666                                                DependentArrayArg->getSizeExpr(),
1667                                                Info, Deduced);
1668 
1669       // Incomplete type does not match a dependently-sized array type
1670       return Sema::TDK_NonDeducedMismatch;
1671     }
1672 
1673     //     type(*)(T)
1674     //     T(*)()
1675     //     T(*)(T)
1676     case Type::FunctionProto: {
1677       unsigned SubTDF = TDF & TDF_TopLevelParameterTypeList;
1678       const FunctionProtoType *FunctionProtoArg =
1679         dyn_cast<FunctionProtoType>(Arg);
1680       if (!FunctionProtoArg)
1681         return Sema::TDK_NonDeducedMismatch;
1682 
1683       const FunctionProtoType *FunctionProtoParam =
1684         cast<FunctionProtoType>(Param);
1685 
1686       if (FunctionProtoParam->getMethodQuals()
1687             != FunctionProtoArg->getMethodQuals() ||
1688           FunctionProtoParam->getRefQualifier()
1689             != FunctionProtoArg->getRefQualifier() ||
1690           FunctionProtoParam->isVariadic() != FunctionProtoArg->isVariadic())
1691         return Sema::TDK_NonDeducedMismatch;
1692 
1693       // Check return types.
1694       if (auto Result = DeduceTemplateArgumentsByTypeMatch(
1695               S, TemplateParams, FunctionProtoParam->getReturnType(),
1696               FunctionProtoArg->getReturnType(), Info, Deduced, 0))
1697         return Result;
1698 
1699       // Check parameter types.
1700       if (auto Result = DeduceTemplateArguments(
1701               S, TemplateParams, FunctionProtoParam->param_type_begin(),
1702               FunctionProtoParam->getNumParams(),
1703               FunctionProtoArg->param_type_begin(),
1704               FunctionProtoArg->getNumParams(), Info, Deduced, SubTDF))
1705         return Result;
1706 
1707       if (TDF & TDF_AllowCompatibleFunctionType)
1708         return Sema::TDK_Success;
1709 
1710       // FIXME: Per core-2016/10/1019 (no corresponding core issue yet), permit
1711       // deducing through the noexcept-specifier if it's part of the canonical
1712       // type. libstdc++ relies on this.
1713       Expr *NoexceptExpr = FunctionProtoParam->getNoexceptExpr();
1714       if (NonTypeTemplateParmDecl *NTTP =
1715           NoexceptExpr ? getDeducedParameterFromExpr(Info, NoexceptExpr)
1716                        : nullptr) {
1717         assert(NTTP->getDepth() == Info.getDeducedDepth() &&
1718                "saw non-type template parameter with wrong depth");
1719 
1720         llvm::APSInt Noexcept(1);
1721         switch (FunctionProtoArg->canThrow()) {
1722         case CT_Cannot:
1723           Noexcept = 1;
1724           LLVM_FALLTHROUGH;
1725 
1726         case CT_Can:
1727           // We give E in noexcept(E) the "deduced from array bound" treatment.
1728           // FIXME: Should we?
1729           return DeduceNonTypeTemplateArgument(
1730               S, TemplateParams, NTTP, Noexcept, S.Context.BoolTy,
1731               /*ArrayBound*/true, Info, Deduced);
1732 
1733         case CT_Dependent:
1734           if (Expr *ArgNoexceptExpr = FunctionProtoArg->getNoexceptExpr())
1735             return DeduceNonTypeTemplateArgument(
1736                 S, TemplateParams, NTTP, ArgNoexceptExpr, Info, Deduced);
1737           // Can't deduce anything from throw(T...).
1738           break;
1739         }
1740       }
1741       // FIXME: Detect non-deduced exception specification mismatches?
1742       //
1743       // Careful about [temp.deduct.call] and [temp.deduct.conv], which allow
1744       // top-level differences in noexcept-specifications.
1745 
1746       return Sema::TDK_Success;
1747     }
1748 
1749     case Type::InjectedClassName:
1750       // Treat a template's injected-class-name as if the template
1751       // specialization type had been used.
1752       Param = cast<InjectedClassNameType>(Param)
1753         ->getInjectedSpecializationType();
1754       assert(isa<TemplateSpecializationType>(Param) &&
1755              "injected class name is not a template specialization type");
1756       LLVM_FALLTHROUGH;
1757 
1758     //     template-name<T> (where template-name refers to a class template)
1759     //     template-name<i>
1760     //     TT<T>
1761     //     TT<i>
1762     //     TT<>
1763     case Type::TemplateSpecialization: {
1764       const TemplateSpecializationType *SpecParam =
1765           cast<TemplateSpecializationType>(Param);
1766 
1767       // When Arg cannot be a derived class, we can just try to deduce template
1768       // arguments from the template-id.
1769       const RecordType *RecordT = Arg->getAs<RecordType>();
1770       if (!(TDF & TDF_DerivedClass) || !RecordT)
1771         return DeduceTemplateArguments(S, TemplateParams, SpecParam, Arg, Info,
1772                                        Deduced);
1773 
1774       SmallVector<DeducedTemplateArgument, 8> DeducedOrig(Deduced.begin(),
1775                                                           Deduced.end());
1776 
1777       Sema::TemplateDeductionResult Result = DeduceTemplateArguments(
1778           S, TemplateParams, SpecParam, Arg, Info, Deduced);
1779 
1780       if (Result == Sema::TDK_Success)
1781         return Result;
1782 
1783       // We cannot inspect base classes as part of deduction when the type
1784       // is incomplete, so either instantiate any templates necessary to
1785       // complete the type, or skip over it if it cannot be completed.
1786       if (!S.isCompleteType(Info.getLocation(), Arg))
1787         return Result;
1788 
1789       // C++14 [temp.deduct.call] p4b3:
1790       //   If P is a class and P has the form simple-template-id, then the
1791       //   transformed A can be a derived class of the deduced A. Likewise if
1792       //   P is a pointer to a class of the form simple-template-id, the
1793       //   transformed A can be a pointer to a derived class pointed to by the
1794       //   deduced A.
1795       //
1796       //   These alternatives are considered only if type deduction would
1797       //   otherwise fail. If they yield more than one possible deduced A, the
1798       //   type deduction fails.
1799 
1800       // Reset the incorrectly deduced argument from above.
1801       Deduced = DeducedOrig;
1802 
1803       // Use data recursion to crawl through the list of base classes.
1804       // Visited contains the set of nodes we have already visited, while
1805       // ToVisit is our stack of records that we still need to visit.
1806       llvm::SmallPtrSet<const RecordType *, 8> Visited;
1807       SmallVector<const RecordType *, 8> ToVisit;
1808       ToVisit.push_back(RecordT);
1809       bool Successful = false;
1810       SmallVector<DeducedTemplateArgument, 8> SuccessfulDeduced;
1811       while (!ToVisit.empty()) {
1812         // Retrieve the next class in the inheritance hierarchy.
1813         const RecordType *NextT = ToVisit.pop_back_val();
1814 
1815         // If we have already seen this type, skip it.
1816         if (!Visited.insert(NextT).second)
1817           continue;
1818 
1819         // If this is a base class, try to perform template argument
1820         // deduction from it.
1821         if (NextT != RecordT) {
1822           TemplateDeductionInfo BaseInfo(TemplateDeductionInfo::ForBase, Info);
1823           Sema::TemplateDeductionResult BaseResult =
1824               DeduceTemplateArguments(S, TemplateParams, SpecParam,
1825                                       QualType(NextT, 0), BaseInfo, Deduced);
1826 
1827           // If template argument deduction for this base was successful,
1828           // note that we had some success. Otherwise, ignore any deductions
1829           // from this base class.
1830           if (BaseResult == Sema::TDK_Success) {
1831             // If we've already seen some success, then deduction fails due to
1832             // an ambiguity (temp.deduct.call p5).
1833             if (Successful)
1834               return Sema::TDK_MiscellaneousDeductionFailure;
1835 
1836             Successful = true;
1837             std::swap(SuccessfulDeduced, Deduced);
1838 
1839             Info.Param = BaseInfo.Param;
1840             Info.FirstArg = BaseInfo.FirstArg;
1841             Info.SecondArg = BaseInfo.SecondArg;
1842           }
1843 
1844           Deduced = DeducedOrig;
1845         }
1846 
1847         // Visit base classes
1848         CXXRecordDecl *Next = cast<CXXRecordDecl>(NextT->getDecl());
1849         for (const auto &Base : Next->bases()) {
1850           assert(Base.getType()->isRecordType() &&
1851                  "Base class that isn't a record?");
1852           ToVisit.push_back(Base.getType()->getAs<RecordType>());
1853         }
1854       }
1855 
1856       if (Successful) {
1857         std::swap(SuccessfulDeduced, Deduced);
1858         return Sema::TDK_Success;
1859       }
1860 
1861       return Result;
1862     }
1863 
1864     //     T type::*
1865     //     T T::*
1866     //     T (type::*)()
1867     //     type (T::*)()
1868     //     type (type::*)(T)
1869     //     type (T::*)(T)
1870     //     T (type::*)(T)
1871     //     T (T::*)()
1872     //     T (T::*)(T)
1873     case Type::MemberPointer: {
1874       const MemberPointerType *MemPtrParam = cast<MemberPointerType>(Param);
1875       const MemberPointerType *MemPtrArg = dyn_cast<MemberPointerType>(Arg);
1876       if (!MemPtrArg)
1877         return Sema::TDK_NonDeducedMismatch;
1878 
1879       QualType ParamPointeeType = MemPtrParam->getPointeeType();
1880       if (ParamPointeeType->isFunctionType())
1881         S.adjustMemberFunctionCC(ParamPointeeType, /*IsStatic=*/true,
1882                                  /*IsCtorOrDtor=*/false, Info.getLocation());
1883       QualType ArgPointeeType = MemPtrArg->getPointeeType();
1884       if (ArgPointeeType->isFunctionType())
1885         S.adjustMemberFunctionCC(ArgPointeeType, /*IsStatic=*/true,
1886                                  /*IsCtorOrDtor=*/false, Info.getLocation());
1887 
1888       if (Sema::TemplateDeductionResult Result
1889             = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1890                                                  ParamPointeeType,
1891                                                  ArgPointeeType,
1892                                                  Info, Deduced,
1893                                                  TDF & TDF_IgnoreQualifiers))
1894         return Result;
1895 
1896       return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1897                                            QualType(MemPtrParam->getClass(), 0),
1898                                            QualType(MemPtrArg->getClass(), 0),
1899                                            Info, Deduced,
1900                                            TDF & TDF_IgnoreQualifiers);
1901     }
1902 
1903     //     (clang extension)
1904     //
1905     //     type(^)(T)
1906     //     T(^)()
1907     //     T(^)(T)
1908     case Type::BlockPointer: {
1909       const BlockPointerType *BlockPtrParam = cast<BlockPointerType>(Param);
1910       const BlockPointerType *BlockPtrArg = dyn_cast<BlockPointerType>(Arg);
1911 
1912       if (!BlockPtrArg)
1913         return Sema::TDK_NonDeducedMismatch;
1914 
1915       return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1916                                                 BlockPtrParam->getPointeeType(),
1917                                                 BlockPtrArg->getPointeeType(),
1918                                                 Info, Deduced, 0);
1919     }
1920 
1921     //     (clang extension)
1922     //
1923     //     T __attribute__(((ext_vector_type(<integral constant>))))
1924     case Type::ExtVector: {
1925       const ExtVectorType *VectorParam = cast<ExtVectorType>(Param);
1926       if (const ExtVectorType *VectorArg = dyn_cast<ExtVectorType>(Arg)) {
1927         // Make sure that the vectors have the same number of elements.
1928         if (VectorParam->getNumElements() != VectorArg->getNumElements())
1929           return Sema::TDK_NonDeducedMismatch;
1930 
1931         // Perform deduction on the element types.
1932         return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1933                                                   VectorParam->getElementType(),
1934                                                   VectorArg->getElementType(),
1935                                                   Info, Deduced, TDF);
1936       }
1937 
1938       if (const DependentSizedExtVectorType *VectorArg
1939                                 = dyn_cast<DependentSizedExtVectorType>(Arg)) {
1940         // We can't check the number of elements, since the argument has a
1941         // dependent number of elements. This can only occur during partial
1942         // ordering.
1943 
1944         // Perform deduction on the element types.
1945         return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1946                                                   VectorParam->getElementType(),
1947                                                   VectorArg->getElementType(),
1948                                                   Info, Deduced, TDF);
1949       }
1950 
1951       return Sema::TDK_NonDeducedMismatch;
1952     }
1953 
1954     case Type::DependentVector: {
1955       const auto *VectorParam = cast<DependentVectorType>(Param);
1956 
1957       if (const auto *VectorArg = dyn_cast<VectorType>(Arg)) {
1958         // Perform deduction on the element types.
1959         if (Sema::TemplateDeductionResult Result =
1960                 DeduceTemplateArgumentsByTypeMatch(
1961                     S, TemplateParams, VectorParam->getElementType(),
1962                     VectorArg->getElementType(), Info, Deduced, TDF))
1963           return Result;
1964 
1965         // Perform deduction on the vector size, if we can.
1966         NonTypeTemplateParmDecl *NTTP =
1967             getDeducedParameterFromExpr(Info, VectorParam->getSizeExpr());
1968         if (!NTTP)
1969           return Sema::TDK_Success;
1970 
1971         llvm::APSInt ArgSize(S.Context.getTypeSize(S.Context.IntTy), false);
1972         ArgSize = VectorArg->getNumElements();
1973         // Note that we use the "array bound" rules here; just like in that
1974         // case, we don't have any particular type for the vector size, but
1975         // we can provide one if necessary.
1976         return DeduceNonTypeTemplateArgument(S, TemplateParams, NTTP, ArgSize,
1977                                              S.Context.UnsignedIntTy, true,
1978                                              Info, Deduced);
1979       }
1980 
1981       if (const auto *VectorArg = dyn_cast<DependentVectorType>(Arg)) {
1982         // Perform deduction on the element types.
1983         if (Sema::TemplateDeductionResult Result =
1984                 DeduceTemplateArgumentsByTypeMatch(
1985                     S, TemplateParams, VectorParam->getElementType(),
1986                     VectorArg->getElementType(), Info, Deduced, TDF))
1987           return Result;
1988 
1989         // Perform deduction on the vector size, if we can.
1990         NonTypeTemplateParmDecl *NTTP = getDeducedParameterFromExpr(
1991             Info, VectorParam->getSizeExpr());
1992         if (!NTTP)
1993           return Sema::TDK_Success;
1994 
1995         return DeduceNonTypeTemplateArgument(
1996             S, TemplateParams, NTTP, VectorArg->getSizeExpr(), Info, Deduced);
1997       }
1998 
1999       return Sema::TDK_NonDeducedMismatch;
2000     }
2001 
2002     //     (clang extension)
2003     //
2004     //     T __attribute__(((ext_vector_type(N))))
2005     case Type::DependentSizedExtVector: {
2006       const DependentSizedExtVectorType *VectorParam
2007         = cast<DependentSizedExtVectorType>(Param);
2008 
2009       if (const ExtVectorType *VectorArg = dyn_cast<ExtVectorType>(Arg)) {
2010         // Perform deduction on the element types.
2011         if (Sema::TemplateDeductionResult Result
2012               = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
2013                                                   VectorParam->getElementType(),
2014                                                    VectorArg->getElementType(),
2015                                                    Info, Deduced, TDF))
2016           return Result;
2017 
2018         // Perform deduction on the vector size, if we can.
2019         NonTypeTemplateParmDecl *NTTP
2020           = getDeducedParameterFromExpr(Info, VectorParam->getSizeExpr());
2021         if (!NTTP)
2022           return Sema::TDK_Success;
2023 
2024         llvm::APSInt ArgSize(S.Context.getTypeSize(S.Context.IntTy), false);
2025         ArgSize = VectorArg->getNumElements();
2026         // Note that we use the "array bound" rules here; just like in that
2027         // case, we don't have any particular type for the vector size, but
2028         // we can provide one if necessary.
2029         return DeduceNonTypeTemplateArgument(S, TemplateParams, NTTP, ArgSize,
2030                                              S.Context.IntTy, true, Info,
2031                                              Deduced);
2032       }
2033 
2034       if (const DependentSizedExtVectorType *VectorArg
2035                                 = dyn_cast<DependentSizedExtVectorType>(Arg)) {
2036         // Perform deduction on the element types.
2037         if (Sema::TemplateDeductionResult Result
2038             = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
2039                                                  VectorParam->getElementType(),
2040                                                  VectorArg->getElementType(),
2041                                                  Info, Deduced, TDF))
2042           return Result;
2043 
2044         // Perform deduction on the vector size, if we can.
2045         NonTypeTemplateParmDecl *NTTP
2046           = getDeducedParameterFromExpr(Info, VectorParam->getSizeExpr());
2047         if (!NTTP)
2048           return Sema::TDK_Success;
2049 
2050         return DeduceNonTypeTemplateArgument(S, TemplateParams, NTTP,
2051                                              VectorArg->getSizeExpr(),
2052                                              Info, Deduced);
2053       }
2054 
2055       return Sema::TDK_NonDeducedMismatch;
2056     }
2057 
2058     //     (clang extension)
2059     //
2060     //     T __attribute__((matrix_type(<integral constant>,
2061     //                                  <integral constant>)))
2062     case Type::ConstantMatrix: {
2063       const ConstantMatrixType *MatrixArg = dyn_cast<ConstantMatrixType>(Arg);
2064       if (!MatrixArg)
2065         return Sema::TDK_NonDeducedMismatch;
2066 
2067       const ConstantMatrixType *MatrixParam = cast<ConstantMatrixType>(Param);
2068       // Check that the dimensions are the same
2069       if (MatrixParam->getNumRows() != MatrixArg->getNumRows() ||
2070           MatrixParam->getNumColumns() != MatrixArg->getNumColumns()) {
2071         return Sema::TDK_NonDeducedMismatch;
2072       }
2073       // Perform deduction on element types.
2074       return DeduceTemplateArgumentsByTypeMatch(
2075           S, TemplateParams, MatrixParam->getElementType(),
2076           MatrixArg->getElementType(), Info, Deduced, TDF);
2077     }
2078 
2079     case Type::DependentSizedMatrix: {
2080       const MatrixType *MatrixArg = dyn_cast<MatrixType>(Arg);
2081       if (!MatrixArg)
2082         return Sema::TDK_NonDeducedMismatch;
2083 
2084       // Check the element type of the matrixes.
2085       const DependentSizedMatrixType *MatrixParam =
2086           cast<DependentSizedMatrixType>(Param);
2087       if (Sema::TemplateDeductionResult Result =
2088               DeduceTemplateArgumentsByTypeMatch(
2089                   S, TemplateParams, MatrixParam->getElementType(),
2090                   MatrixArg->getElementType(), Info, Deduced, TDF))
2091         return Result;
2092 
2093       // Try to deduce a matrix dimension.
2094       auto DeduceMatrixArg =
2095           [&S, &Info, &Deduced, &TemplateParams](
2096               Expr *ParamExpr, const MatrixType *Arg,
2097               unsigned (ConstantMatrixType::*GetArgDimension)() const,
2098               Expr *(DependentSizedMatrixType::*GetArgDimensionExpr)() const) {
2099             const auto *ArgConstMatrix = dyn_cast<ConstantMatrixType>(Arg);
2100             const auto *ArgDepMatrix = dyn_cast<DependentSizedMatrixType>(Arg);
2101             if (!ParamExpr->isValueDependent()) {
2102               llvm::APSInt ParamConst(
2103                   S.Context.getTypeSize(S.Context.getSizeType()));
2104               if (!ParamExpr->isIntegerConstantExpr(ParamConst, S.Context))
2105                 return Sema::TDK_NonDeducedMismatch;
2106 
2107               if (ArgConstMatrix) {
2108                 if ((ArgConstMatrix->*GetArgDimension)() == ParamConst)
2109                   return Sema::TDK_Success;
2110                 return Sema::TDK_NonDeducedMismatch;
2111               }
2112 
2113               Expr *ArgExpr = (ArgDepMatrix->*GetArgDimensionExpr)();
2114               llvm::APSInt ArgConst(
2115                   S.Context.getTypeSize(S.Context.getSizeType()));
2116               if (!ArgExpr->isValueDependent() &&
2117                   ArgExpr->isIntegerConstantExpr(ArgConst, S.Context) &&
2118                   ArgConst == ParamConst)
2119                 return Sema::TDK_Success;
2120               return Sema::TDK_NonDeducedMismatch;
2121             }
2122 
2123             NonTypeTemplateParmDecl *NTTP =
2124                 getDeducedParameterFromExpr(Info, ParamExpr);
2125             if (!NTTP)
2126               return Sema::TDK_Success;
2127 
2128             if (ArgConstMatrix) {
2129               llvm::APSInt ArgConst(
2130                   S.Context.getTypeSize(S.Context.getSizeType()));
2131               ArgConst = (ArgConstMatrix->*GetArgDimension)();
2132               return DeduceNonTypeTemplateArgument(
2133                   S, TemplateParams, NTTP, ArgConst, S.Context.getSizeType(),
2134                   /*ArrayBound=*/true, Info, Deduced);
2135             }
2136 
2137             return DeduceNonTypeTemplateArgument(
2138                 S, TemplateParams, NTTP, (ArgDepMatrix->*GetArgDimensionExpr)(),
2139                 Info, Deduced);
2140           };
2141 
2142       auto Result = DeduceMatrixArg(MatrixParam->getRowExpr(), MatrixArg,
2143                                     &ConstantMatrixType::getNumRows,
2144                                     &DependentSizedMatrixType::getRowExpr);
2145       if (Result)
2146         return Result;
2147 
2148       return DeduceMatrixArg(MatrixParam->getColumnExpr(), MatrixArg,
2149                              &ConstantMatrixType::getNumColumns,
2150                              &DependentSizedMatrixType::getColumnExpr);
2151     }
2152 
2153     //     (clang extension)
2154     //
2155     //     T __attribute__(((address_space(N))))
2156     case Type::DependentAddressSpace: {
2157       const DependentAddressSpaceType *AddressSpaceParam =
2158           cast<DependentAddressSpaceType>(Param);
2159 
2160       if (const DependentAddressSpaceType *AddressSpaceArg =
2161               dyn_cast<DependentAddressSpaceType>(Arg)) {
2162         // Perform deduction on the pointer type.
2163         if (Sema::TemplateDeductionResult Result =
2164                 DeduceTemplateArgumentsByTypeMatch(
2165                     S, TemplateParams, AddressSpaceParam->getPointeeType(),
2166                     AddressSpaceArg->getPointeeType(), Info, Deduced, TDF))
2167           return Result;
2168 
2169         // Perform deduction on the address space, if we can.
2170         NonTypeTemplateParmDecl *NTTP = getDeducedParameterFromExpr(
2171             Info, AddressSpaceParam->getAddrSpaceExpr());
2172         if (!NTTP)
2173           return Sema::TDK_Success;
2174 
2175         return DeduceNonTypeTemplateArgument(
2176             S, TemplateParams, NTTP, AddressSpaceArg->getAddrSpaceExpr(), Info,
2177             Deduced);
2178       }
2179 
2180       if (isTargetAddressSpace(Arg.getAddressSpace())) {
2181         llvm::APSInt ArgAddressSpace(S.Context.getTypeSize(S.Context.IntTy),
2182                                      false);
2183         ArgAddressSpace = toTargetAddressSpace(Arg.getAddressSpace());
2184 
2185         // Perform deduction on the pointer types.
2186         if (Sema::TemplateDeductionResult Result =
2187                 DeduceTemplateArgumentsByTypeMatch(
2188                     S, TemplateParams, AddressSpaceParam->getPointeeType(),
2189                     S.Context.removeAddrSpaceQualType(Arg), Info, Deduced, TDF))
2190           return Result;
2191 
2192         // Perform deduction on the address space, if we can.
2193         NonTypeTemplateParmDecl *NTTP = getDeducedParameterFromExpr(
2194             Info, AddressSpaceParam->getAddrSpaceExpr());
2195         if (!NTTP)
2196           return Sema::TDK_Success;
2197 
2198         return DeduceNonTypeTemplateArgument(S, TemplateParams, NTTP,
2199                                              ArgAddressSpace, S.Context.IntTy,
2200                                              true, Info, Deduced);
2201       }
2202 
2203       return Sema::TDK_NonDeducedMismatch;
2204     }
2205     case Type::DependentExtInt: {
2206       const auto *IntParam = cast<DependentExtIntType>(Param);
2207 
2208       if (const auto *IntArg = dyn_cast<ExtIntType>(Arg)){
2209         if (IntParam->isUnsigned() != IntArg->isUnsigned())
2210           return Sema::TDK_NonDeducedMismatch;
2211 
2212         NonTypeTemplateParmDecl *NTTP =
2213             getDeducedParameterFromExpr(Info, IntParam->getNumBitsExpr());
2214         if (!NTTP)
2215           return Sema::TDK_Success;
2216 
2217         llvm::APSInt ArgSize(S.Context.getTypeSize(S.Context.IntTy), false);
2218         ArgSize = IntArg->getNumBits();
2219 
2220         return DeduceNonTypeTemplateArgument(S, TemplateParams, NTTP, ArgSize,
2221                                              S.Context.IntTy, true, Info,
2222                                              Deduced);
2223       }
2224 
2225       if (const auto *IntArg = dyn_cast<DependentExtIntType>(Arg)) {
2226         if (IntParam->isUnsigned() != IntArg->isUnsigned())
2227           return Sema::TDK_NonDeducedMismatch;
2228         return Sema::TDK_Success;
2229       }
2230       return Sema::TDK_NonDeducedMismatch;
2231     }
2232 
2233     case Type::TypeOfExpr:
2234     case Type::TypeOf:
2235     case Type::DependentName:
2236     case Type::UnresolvedUsing:
2237     case Type::Decltype:
2238     case Type::UnaryTransform:
2239     case Type::Auto:
2240     case Type::DeducedTemplateSpecialization:
2241     case Type::DependentTemplateSpecialization:
2242     case Type::PackExpansion:
2243     case Type::Pipe:
2244       // No template argument deduction for these types
2245       return Sema::TDK_Success;
2246   }
2247 
2248   llvm_unreachable("Invalid Type Class!");
2249 }
2250 
2251 static Sema::TemplateDeductionResult
2252 DeduceTemplateArguments(Sema &S,
2253                         TemplateParameterList *TemplateParams,
2254                         const TemplateArgument &Param,
2255                         TemplateArgument Arg,
2256                         TemplateDeductionInfo &Info,
2257                         SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
2258   // If the template argument is a pack expansion, perform template argument
2259   // deduction against the pattern of that expansion. This only occurs during
2260   // partial ordering.
2261   if (Arg.isPackExpansion())
2262     Arg = Arg.getPackExpansionPattern();
2263 
2264   switch (Param.getKind()) {
2265   case TemplateArgument::Null:
2266     llvm_unreachable("Null template argument in parameter list");
2267 
2268   case TemplateArgument::Type:
2269     if (Arg.getKind() == TemplateArgument::Type)
2270       return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
2271                                                 Param.getAsType(),
2272                                                 Arg.getAsType(),
2273                                                 Info, Deduced, 0);
2274     Info.FirstArg = Param;
2275     Info.SecondArg = Arg;
2276     return Sema::TDK_NonDeducedMismatch;
2277 
2278   case TemplateArgument::Template:
2279     if (Arg.getKind() == TemplateArgument::Template)
2280       return DeduceTemplateArguments(S, TemplateParams,
2281                                      Param.getAsTemplate(),
2282                                      Arg.getAsTemplate(), Info, Deduced);
2283     Info.FirstArg = Param;
2284     Info.SecondArg = Arg;
2285     return Sema::TDK_NonDeducedMismatch;
2286 
2287   case TemplateArgument::TemplateExpansion:
2288     llvm_unreachable("caller should handle pack expansions");
2289 
2290   case TemplateArgument::Declaration:
2291     if (Arg.getKind() == TemplateArgument::Declaration &&
2292         isSameDeclaration(Param.getAsDecl(), Arg.getAsDecl()))
2293       return Sema::TDK_Success;
2294 
2295     Info.FirstArg = Param;
2296     Info.SecondArg = Arg;
2297     return Sema::TDK_NonDeducedMismatch;
2298 
2299   case TemplateArgument::NullPtr:
2300     if (Arg.getKind() == TemplateArgument::NullPtr &&
2301         S.Context.hasSameType(Param.getNullPtrType(), Arg.getNullPtrType()))
2302       return Sema::TDK_Success;
2303 
2304     Info.FirstArg = Param;
2305     Info.SecondArg = Arg;
2306     return Sema::TDK_NonDeducedMismatch;
2307 
2308   case TemplateArgument::Integral:
2309     if (Arg.getKind() == TemplateArgument::Integral) {
2310       if (hasSameExtendedValue(Param.getAsIntegral(), Arg.getAsIntegral()))
2311         return Sema::TDK_Success;
2312 
2313       Info.FirstArg = Param;
2314       Info.SecondArg = Arg;
2315       return Sema::TDK_NonDeducedMismatch;
2316     }
2317 
2318     if (Arg.getKind() == TemplateArgument::Expression) {
2319       Info.FirstArg = Param;
2320       Info.SecondArg = Arg;
2321       return Sema::TDK_NonDeducedMismatch;
2322     }
2323 
2324     Info.FirstArg = Param;
2325     Info.SecondArg = Arg;
2326     return Sema::TDK_NonDeducedMismatch;
2327 
2328   case TemplateArgument::Expression:
2329     if (NonTypeTemplateParmDecl *NTTP
2330           = getDeducedParameterFromExpr(Info, Param.getAsExpr())) {
2331       if (Arg.getKind() == TemplateArgument::Integral)
2332         return DeduceNonTypeTemplateArgument(S, TemplateParams, NTTP,
2333                                              Arg.getAsIntegral(),
2334                                              Arg.getIntegralType(),
2335                                              /*ArrayBound=*/false,
2336                                              Info, Deduced);
2337       if (Arg.getKind() == TemplateArgument::NullPtr)
2338         return DeduceNullPtrTemplateArgument(S, TemplateParams, NTTP,
2339                                              Arg.getNullPtrType(),
2340                                              Info, Deduced);
2341       if (Arg.getKind() == TemplateArgument::Expression)
2342         return DeduceNonTypeTemplateArgument(S, TemplateParams, NTTP,
2343                                              Arg.getAsExpr(), Info, Deduced);
2344       if (Arg.getKind() == TemplateArgument::Declaration)
2345         return DeduceNonTypeTemplateArgument(S, TemplateParams, NTTP,
2346                                              Arg.getAsDecl(),
2347                                              Arg.getParamTypeForDecl(),
2348                                              Info, Deduced);
2349 
2350       Info.FirstArg = Param;
2351       Info.SecondArg = Arg;
2352       return Sema::TDK_NonDeducedMismatch;
2353     }
2354 
2355     // Can't deduce anything, but that's okay.
2356     return Sema::TDK_Success;
2357 
2358   case TemplateArgument::Pack:
2359     llvm_unreachable("Argument packs should be expanded by the caller!");
2360   }
2361 
2362   llvm_unreachable("Invalid TemplateArgument Kind!");
2363 }
2364 
2365 /// Determine whether there is a template argument to be used for
2366 /// deduction.
2367 ///
2368 /// This routine "expands" argument packs in-place, overriding its input
2369 /// parameters so that \c Args[ArgIdx] will be the available template argument.
2370 ///
2371 /// \returns true if there is another template argument (which will be at
2372 /// \c Args[ArgIdx]), false otherwise.
2373 static bool hasTemplateArgumentForDeduction(ArrayRef<TemplateArgument> &Args,
2374                                             unsigned &ArgIdx) {
2375   if (ArgIdx == Args.size())
2376     return false;
2377 
2378   const TemplateArgument &Arg = Args[ArgIdx];
2379   if (Arg.getKind() != TemplateArgument::Pack)
2380     return true;
2381 
2382   assert(ArgIdx == Args.size() - 1 && "Pack not at the end of argument list?");
2383   Args = Arg.pack_elements();
2384   ArgIdx = 0;
2385   return ArgIdx < Args.size();
2386 }
2387 
2388 /// Determine whether the given set of template arguments has a pack
2389 /// expansion that is not the last template argument.
2390 static bool hasPackExpansionBeforeEnd(ArrayRef<TemplateArgument> Args) {
2391   bool FoundPackExpansion = false;
2392   for (const auto &A : Args) {
2393     if (FoundPackExpansion)
2394       return true;
2395 
2396     if (A.getKind() == TemplateArgument::Pack)
2397       return hasPackExpansionBeforeEnd(A.pack_elements());
2398 
2399     // FIXME: If this is a fixed-arity pack expansion from an outer level of
2400     // templates, it should not be treated as a pack expansion.
2401     if (A.isPackExpansion())
2402       FoundPackExpansion = true;
2403   }
2404 
2405   return false;
2406 }
2407 
2408 static Sema::TemplateDeductionResult
2409 DeduceTemplateArguments(Sema &S, TemplateParameterList *TemplateParams,
2410                         ArrayRef<TemplateArgument> Params,
2411                         ArrayRef<TemplateArgument> Args,
2412                         TemplateDeductionInfo &Info,
2413                         SmallVectorImpl<DeducedTemplateArgument> &Deduced,
2414                         bool NumberOfArgumentsMustMatch) {
2415   // C++0x [temp.deduct.type]p9:
2416   //   If the template argument list of P contains a pack expansion that is not
2417   //   the last template argument, the entire template argument list is a
2418   //   non-deduced context.
2419   if (hasPackExpansionBeforeEnd(Params))
2420     return Sema::TDK_Success;
2421 
2422   // C++0x [temp.deduct.type]p9:
2423   //   If P has a form that contains <T> or <i>, then each argument Pi of the
2424   //   respective template argument list P is compared with the corresponding
2425   //   argument Ai of the corresponding template argument list of A.
2426   unsigned ArgIdx = 0, ParamIdx = 0;
2427   for (; hasTemplateArgumentForDeduction(Params, ParamIdx); ++ParamIdx) {
2428     if (!Params[ParamIdx].isPackExpansion()) {
2429       // The simple case: deduce template arguments by matching Pi and Ai.
2430 
2431       // Check whether we have enough arguments.
2432       if (!hasTemplateArgumentForDeduction(Args, ArgIdx))
2433         return NumberOfArgumentsMustMatch
2434                    ? Sema::TDK_MiscellaneousDeductionFailure
2435                    : Sema::TDK_Success;
2436 
2437       // C++1z [temp.deduct.type]p9:
2438       //   During partial ordering, if Ai was originally a pack expansion [and]
2439       //   Pi is not a pack expansion, template argument deduction fails.
2440       if (Args[ArgIdx].isPackExpansion())
2441         return Sema::TDK_MiscellaneousDeductionFailure;
2442 
2443       // Perform deduction for this Pi/Ai pair.
2444       if (Sema::TemplateDeductionResult Result
2445             = DeduceTemplateArguments(S, TemplateParams,
2446                                       Params[ParamIdx], Args[ArgIdx],
2447                                       Info, Deduced))
2448         return Result;
2449 
2450       // Move to the next argument.
2451       ++ArgIdx;
2452       continue;
2453     }
2454 
2455     // The parameter is a pack expansion.
2456 
2457     // C++0x [temp.deduct.type]p9:
2458     //   If Pi is a pack expansion, then the pattern of Pi is compared with
2459     //   each remaining argument in the template argument list of A. Each
2460     //   comparison deduces template arguments for subsequent positions in the
2461     //   template parameter packs expanded by Pi.
2462     TemplateArgument Pattern = Params[ParamIdx].getPackExpansionPattern();
2463 
2464     // Prepare to deduce the packs within the pattern.
2465     PackDeductionScope PackScope(S, TemplateParams, Deduced, Info, Pattern);
2466 
2467     // Keep track of the deduced template arguments for each parameter pack
2468     // expanded by this pack expansion (the outer index) and for each
2469     // template argument (the inner SmallVectors).
2470     for (; hasTemplateArgumentForDeduction(Args, ArgIdx) &&
2471            PackScope.hasNextElement();
2472          ++ArgIdx) {
2473       // Deduce template arguments from the pattern.
2474       if (Sema::TemplateDeductionResult Result
2475             = DeduceTemplateArguments(S, TemplateParams, Pattern, Args[ArgIdx],
2476                                       Info, Deduced))
2477         return Result;
2478 
2479       PackScope.nextPackElement();
2480     }
2481 
2482     // Build argument packs for each of the parameter packs expanded by this
2483     // pack expansion.
2484     if (auto Result = PackScope.finish())
2485       return Result;
2486   }
2487 
2488   return Sema::TDK_Success;
2489 }
2490 
2491 static Sema::TemplateDeductionResult
2492 DeduceTemplateArguments(Sema &S,
2493                         TemplateParameterList *TemplateParams,
2494                         const TemplateArgumentList &ParamList,
2495                         const TemplateArgumentList &ArgList,
2496                         TemplateDeductionInfo &Info,
2497                         SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
2498   return DeduceTemplateArguments(S, TemplateParams, ParamList.asArray(),
2499                                  ArgList.asArray(), Info, Deduced,
2500                                  /*NumberOfArgumentsMustMatch*/false);
2501 }
2502 
2503 /// Determine whether two template arguments are the same.
2504 static bool isSameTemplateArg(ASTContext &Context,
2505                               TemplateArgument X,
2506                               const TemplateArgument &Y,
2507                               bool PackExpansionMatchesPack = false) {
2508   // If we're checking deduced arguments (X) against original arguments (Y),
2509   // we will have flattened packs to non-expansions in X.
2510   if (PackExpansionMatchesPack && X.isPackExpansion() && !Y.isPackExpansion())
2511     X = X.getPackExpansionPattern();
2512 
2513   if (X.getKind() != Y.getKind())
2514     return false;
2515 
2516   switch (X.getKind()) {
2517     case TemplateArgument::Null:
2518       llvm_unreachable("Comparing NULL template argument");
2519 
2520     case TemplateArgument::Type:
2521       return Context.getCanonicalType(X.getAsType()) ==
2522              Context.getCanonicalType(Y.getAsType());
2523 
2524     case TemplateArgument::Declaration:
2525       return isSameDeclaration(X.getAsDecl(), Y.getAsDecl());
2526 
2527     case TemplateArgument::NullPtr:
2528       return Context.hasSameType(X.getNullPtrType(), Y.getNullPtrType());
2529 
2530     case TemplateArgument::Template:
2531     case TemplateArgument::TemplateExpansion:
2532       return Context.getCanonicalTemplateName(
2533                     X.getAsTemplateOrTemplatePattern()).getAsVoidPointer() ==
2534              Context.getCanonicalTemplateName(
2535                     Y.getAsTemplateOrTemplatePattern()).getAsVoidPointer();
2536 
2537     case TemplateArgument::Integral:
2538       return hasSameExtendedValue(X.getAsIntegral(), Y.getAsIntegral());
2539 
2540     case TemplateArgument::Expression: {
2541       llvm::FoldingSetNodeID XID, YID;
2542       X.getAsExpr()->Profile(XID, Context, true);
2543       Y.getAsExpr()->Profile(YID, Context, true);
2544       return XID == YID;
2545     }
2546 
2547     case TemplateArgument::Pack:
2548       if (X.pack_size() != Y.pack_size())
2549         return false;
2550 
2551       for (TemplateArgument::pack_iterator XP = X.pack_begin(),
2552                                         XPEnd = X.pack_end(),
2553                                            YP = Y.pack_begin();
2554            XP != XPEnd; ++XP, ++YP)
2555         if (!isSameTemplateArg(Context, *XP, *YP, PackExpansionMatchesPack))
2556           return false;
2557 
2558       return true;
2559   }
2560 
2561   llvm_unreachable("Invalid TemplateArgument Kind!");
2562 }
2563 
2564 /// Allocate a TemplateArgumentLoc where all locations have
2565 /// been initialized to the given location.
2566 ///
2567 /// \param Arg The template argument we are producing template argument
2568 /// location information for.
2569 ///
2570 /// \param NTTPType For a declaration template argument, the type of
2571 /// the non-type template parameter that corresponds to this template
2572 /// argument. Can be null if no type sugar is available to add to the
2573 /// type from the template argument.
2574 ///
2575 /// \param Loc The source location to use for the resulting template
2576 /// argument.
2577 TemplateArgumentLoc
2578 Sema::getTrivialTemplateArgumentLoc(const TemplateArgument &Arg,
2579                                     QualType NTTPType, SourceLocation Loc) {
2580   switch (Arg.getKind()) {
2581   case TemplateArgument::Null:
2582     llvm_unreachable("Can't get a NULL template argument here");
2583 
2584   case TemplateArgument::Type:
2585     return TemplateArgumentLoc(
2586         Arg, Context.getTrivialTypeSourceInfo(Arg.getAsType(), Loc));
2587 
2588   case TemplateArgument::Declaration: {
2589     if (NTTPType.isNull())
2590       NTTPType = Arg.getParamTypeForDecl();
2591     Expr *E = BuildExpressionFromDeclTemplateArgument(Arg, NTTPType, Loc)
2592                   .getAs<Expr>();
2593     return TemplateArgumentLoc(TemplateArgument(E), E);
2594   }
2595 
2596   case TemplateArgument::NullPtr: {
2597     if (NTTPType.isNull())
2598       NTTPType = Arg.getNullPtrType();
2599     Expr *E = BuildExpressionFromDeclTemplateArgument(Arg, NTTPType, Loc)
2600                   .getAs<Expr>();
2601     return TemplateArgumentLoc(TemplateArgument(NTTPType, /*isNullPtr*/true),
2602                                E);
2603   }
2604 
2605   case TemplateArgument::Integral: {
2606     Expr *E =
2607         BuildExpressionFromIntegralTemplateArgument(Arg, Loc).getAs<Expr>();
2608     return TemplateArgumentLoc(TemplateArgument(E), E);
2609   }
2610 
2611     case TemplateArgument::Template:
2612     case TemplateArgument::TemplateExpansion: {
2613       NestedNameSpecifierLocBuilder Builder;
2614       TemplateName Template = Arg.getAsTemplateOrTemplatePattern();
2615       if (DependentTemplateName *DTN = Template.getAsDependentTemplateName())
2616         Builder.MakeTrivial(Context, DTN->getQualifier(), Loc);
2617       else if (QualifiedTemplateName *QTN =
2618                    Template.getAsQualifiedTemplateName())
2619         Builder.MakeTrivial(Context, QTN->getQualifier(), Loc);
2620 
2621       if (Arg.getKind() == TemplateArgument::Template)
2622         return TemplateArgumentLoc(Arg, Builder.getWithLocInContext(Context),
2623                                    Loc);
2624 
2625       return TemplateArgumentLoc(Arg, Builder.getWithLocInContext(Context),
2626                                  Loc, Loc);
2627     }
2628 
2629   case TemplateArgument::Expression:
2630     return TemplateArgumentLoc(Arg, Arg.getAsExpr());
2631 
2632   case TemplateArgument::Pack:
2633     return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo());
2634   }
2635 
2636   llvm_unreachable("Invalid TemplateArgument Kind!");
2637 }
2638 
2639 TemplateArgumentLoc
2640 Sema::getIdentityTemplateArgumentLoc(NamedDecl *TemplateParm,
2641                                      SourceLocation Location) {
2642   return getTrivialTemplateArgumentLoc(
2643       Context.getInjectedTemplateArg(TemplateParm), QualType(), Location);
2644 }
2645 
2646 /// Convert the given deduced template argument and add it to the set of
2647 /// fully-converted template arguments.
2648 static bool
2649 ConvertDeducedTemplateArgument(Sema &S, NamedDecl *Param,
2650                                DeducedTemplateArgument Arg,
2651                                NamedDecl *Template,
2652                                TemplateDeductionInfo &Info,
2653                                bool IsDeduced,
2654                                SmallVectorImpl<TemplateArgument> &Output) {
2655   auto ConvertArg = [&](DeducedTemplateArgument Arg,
2656                         unsigned ArgumentPackIndex) {
2657     // Convert the deduced template argument into a template
2658     // argument that we can check, almost as if the user had written
2659     // the template argument explicitly.
2660     TemplateArgumentLoc ArgLoc =
2661         S.getTrivialTemplateArgumentLoc(Arg, QualType(), Info.getLocation());
2662 
2663     // Check the template argument, converting it as necessary.
2664     return S.CheckTemplateArgument(
2665         Param, ArgLoc, Template, Template->getLocation(),
2666         Template->getSourceRange().getEnd(), ArgumentPackIndex, Output,
2667         IsDeduced
2668             ? (Arg.wasDeducedFromArrayBound() ? Sema::CTAK_DeducedFromArrayBound
2669                                               : Sema::CTAK_Deduced)
2670             : Sema::CTAK_Specified);
2671   };
2672 
2673   if (Arg.getKind() == TemplateArgument::Pack) {
2674     // This is a template argument pack, so check each of its arguments against
2675     // the template parameter.
2676     SmallVector<TemplateArgument, 2> PackedArgsBuilder;
2677     for (const auto &P : Arg.pack_elements()) {
2678       // When converting the deduced template argument, append it to the
2679       // general output list. We need to do this so that the template argument
2680       // checking logic has all of the prior template arguments available.
2681       DeducedTemplateArgument InnerArg(P);
2682       InnerArg.setDeducedFromArrayBound(Arg.wasDeducedFromArrayBound());
2683       assert(InnerArg.getKind() != TemplateArgument::Pack &&
2684              "deduced nested pack");
2685       if (P.isNull()) {
2686         // We deduced arguments for some elements of this pack, but not for
2687         // all of them. This happens if we get a conditionally-non-deduced
2688         // context in a pack expansion (such as an overload set in one of the
2689         // arguments).
2690         S.Diag(Param->getLocation(),
2691                diag::err_template_arg_deduced_incomplete_pack)
2692           << Arg << Param;
2693         return true;
2694       }
2695       if (ConvertArg(InnerArg, PackedArgsBuilder.size()))
2696         return true;
2697 
2698       // Move the converted template argument into our argument pack.
2699       PackedArgsBuilder.push_back(Output.pop_back_val());
2700     }
2701 
2702     // If the pack is empty, we still need to substitute into the parameter
2703     // itself, in case that substitution fails.
2704     if (PackedArgsBuilder.empty()) {
2705       LocalInstantiationScope Scope(S);
2706       TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, Output);
2707       MultiLevelTemplateArgumentList Args(TemplateArgs);
2708 
2709       if (auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
2710         Sema::InstantiatingTemplate Inst(S, Template->getLocation(), Template,
2711                                          NTTP, Output,
2712                                          Template->getSourceRange());
2713         if (Inst.isInvalid() ||
2714             S.SubstType(NTTP->getType(), Args, NTTP->getLocation(),
2715                         NTTP->getDeclName()).isNull())
2716           return true;
2717       } else if (auto *TTP = dyn_cast<TemplateTemplateParmDecl>(Param)) {
2718         Sema::InstantiatingTemplate Inst(S, Template->getLocation(), Template,
2719                                          TTP, Output,
2720                                          Template->getSourceRange());
2721         if (Inst.isInvalid() || !S.SubstDecl(TTP, S.CurContext, Args))
2722           return true;
2723       }
2724       // For type parameters, no substitution is ever required.
2725     }
2726 
2727     // Create the resulting argument pack.
2728     Output.push_back(
2729         TemplateArgument::CreatePackCopy(S.Context, PackedArgsBuilder));
2730     return false;
2731   }
2732 
2733   return ConvertArg(Arg, 0);
2734 }
2735 
2736 // FIXME: This should not be a template, but
2737 // ClassTemplatePartialSpecializationDecl sadly does not derive from
2738 // TemplateDecl.
2739 template<typename TemplateDeclT>
2740 static Sema::TemplateDeductionResult ConvertDeducedTemplateArguments(
2741     Sema &S, TemplateDeclT *Template, bool IsDeduced,
2742     SmallVectorImpl<DeducedTemplateArgument> &Deduced,
2743     TemplateDeductionInfo &Info, SmallVectorImpl<TemplateArgument> &Builder,
2744     LocalInstantiationScope *CurrentInstantiationScope = nullptr,
2745     unsigned NumAlreadyConverted = 0, bool PartialOverloading = false) {
2746   TemplateParameterList *TemplateParams = Template->getTemplateParameters();
2747 
2748   for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
2749     NamedDecl *Param = TemplateParams->getParam(I);
2750 
2751     // C++0x [temp.arg.explicit]p3:
2752     //    A trailing template parameter pack (14.5.3) not otherwise deduced will
2753     //    be deduced to an empty sequence of template arguments.
2754     // FIXME: Where did the word "trailing" come from?
2755     if (Deduced[I].isNull() && Param->isTemplateParameterPack()) {
2756       if (auto Result =
2757               PackDeductionScope(S, TemplateParams, Deduced, Info, I).finish())
2758         return Result;
2759     }
2760 
2761     if (!Deduced[I].isNull()) {
2762       if (I < NumAlreadyConverted) {
2763         // We may have had explicitly-specified template arguments for a
2764         // template parameter pack (that may or may not have been extended
2765         // via additional deduced arguments).
2766         if (Param->isParameterPack() && CurrentInstantiationScope &&
2767             CurrentInstantiationScope->getPartiallySubstitutedPack() == Param) {
2768           // Forget the partially-substituted pack; its substitution is now
2769           // complete.
2770           CurrentInstantiationScope->ResetPartiallySubstitutedPack();
2771           // We still need to check the argument in case it was extended by
2772           // deduction.
2773         } else {
2774           // We have already fully type-checked and converted this
2775           // argument, because it was explicitly-specified. Just record the
2776           // presence of this argument.
2777           Builder.push_back(Deduced[I]);
2778           continue;
2779         }
2780       }
2781 
2782       // We may have deduced this argument, so it still needs to be
2783       // checked and converted.
2784       if (ConvertDeducedTemplateArgument(S, Param, Deduced[I], Template, Info,
2785                                          IsDeduced, Builder)) {
2786         Info.Param = makeTemplateParameter(Param);
2787         // FIXME: These template arguments are temporary. Free them!
2788         Info.reset(TemplateArgumentList::CreateCopy(S.Context, Builder));
2789         return Sema::TDK_SubstitutionFailure;
2790       }
2791 
2792       continue;
2793     }
2794 
2795     // Substitute into the default template argument, if available.
2796     bool HasDefaultArg = false;
2797     TemplateDecl *TD = dyn_cast<TemplateDecl>(Template);
2798     if (!TD) {
2799       assert(isa<ClassTemplatePartialSpecializationDecl>(Template) ||
2800              isa<VarTemplatePartialSpecializationDecl>(Template));
2801       return Sema::TDK_Incomplete;
2802     }
2803 
2804     TemplateArgumentLoc DefArg = S.SubstDefaultTemplateArgumentIfAvailable(
2805         TD, TD->getLocation(), TD->getSourceRange().getEnd(), Param, Builder,
2806         HasDefaultArg);
2807 
2808     // If there was no default argument, deduction is incomplete.
2809     if (DefArg.getArgument().isNull()) {
2810       Info.Param = makeTemplateParameter(
2811           const_cast<NamedDecl *>(TemplateParams->getParam(I)));
2812       Info.reset(TemplateArgumentList::CreateCopy(S.Context, Builder));
2813       if (PartialOverloading) break;
2814 
2815       return HasDefaultArg ? Sema::TDK_SubstitutionFailure
2816                            : Sema::TDK_Incomplete;
2817     }
2818 
2819     // Check whether we can actually use the default argument.
2820     if (S.CheckTemplateArgument(Param, DefArg, TD, TD->getLocation(),
2821                                 TD->getSourceRange().getEnd(), 0, Builder,
2822                                 Sema::CTAK_Specified)) {
2823       Info.Param = makeTemplateParameter(
2824                          const_cast<NamedDecl *>(TemplateParams->getParam(I)));
2825       // FIXME: These template arguments are temporary. Free them!
2826       Info.reset(TemplateArgumentList::CreateCopy(S.Context, Builder));
2827       return Sema::TDK_SubstitutionFailure;
2828     }
2829 
2830     // If we get here, we successfully used the default template argument.
2831   }
2832 
2833   return Sema::TDK_Success;
2834 }
2835 
2836 static DeclContext *getAsDeclContextOrEnclosing(Decl *D) {
2837   if (auto *DC = dyn_cast<DeclContext>(D))
2838     return DC;
2839   return D->getDeclContext();
2840 }
2841 
2842 template<typename T> struct IsPartialSpecialization {
2843   static constexpr bool value = false;
2844 };
2845 template<>
2846 struct IsPartialSpecialization<ClassTemplatePartialSpecializationDecl> {
2847   static constexpr bool value = true;
2848 };
2849 template<>
2850 struct IsPartialSpecialization<VarTemplatePartialSpecializationDecl> {
2851   static constexpr bool value = true;
2852 };
2853 
2854 template<typename TemplateDeclT>
2855 static Sema::TemplateDeductionResult
2856 CheckDeducedArgumentConstraints(Sema& S, TemplateDeclT *Template,
2857                                 ArrayRef<TemplateArgument> DeducedArgs,
2858                                 TemplateDeductionInfo& Info) {
2859   llvm::SmallVector<const Expr *, 3> AssociatedConstraints;
2860   Template->getAssociatedConstraints(AssociatedConstraints);
2861   if (S.CheckConstraintSatisfaction(Template, AssociatedConstraints,
2862                                     DeducedArgs, Info.getLocation(),
2863                                     Info.AssociatedConstraintsSatisfaction) ||
2864       !Info.AssociatedConstraintsSatisfaction.IsSatisfied) {
2865     Info.reset(TemplateArgumentList::CreateCopy(S.Context, DeducedArgs));
2866     return Sema::TDK_ConstraintsNotSatisfied;
2867   }
2868   return Sema::TDK_Success;
2869 }
2870 
2871 /// Complete template argument deduction for a partial specialization.
2872 template <typename T>
2873 static std::enable_if_t<IsPartialSpecialization<T>::value,
2874                         Sema::TemplateDeductionResult>
2875 FinishTemplateArgumentDeduction(
2876     Sema &S, T *Partial, bool IsPartialOrdering,
2877     const TemplateArgumentList &TemplateArgs,
2878     SmallVectorImpl<DeducedTemplateArgument> &Deduced,
2879     TemplateDeductionInfo &Info) {
2880   // Unevaluated SFINAE context.
2881   EnterExpressionEvaluationContext Unevaluated(
2882       S, Sema::ExpressionEvaluationContext::Unevaluated);
2883   Sema::SFINAETrap Trap(S);
2884 
2885   Sema::ContextRAII SavedContext(S, getAsDeclContextOrEnclosing(Partial));
2886 
2887   // C++ [temp.deduct.type]p2:
2888   //   [...] or if any template argument remains neither deduced nor
2889   //   explicitly specified, template argument deduction fails.
2890   SmallVector<TemplateArgument, 4> Builder;
2891   if (auto Result = ConvertDeducedTemplateArguments(
2892           S, Partial, IsPartialOrdering, Deduced, Info, Builder))
2893     return Result;
2894 
2895   // Form the template argument list from the deduced template arguments.
2896   TemplateArgumentList *DeducedArgumentList
2897     = TemplateArgumentList::CreateCopy(S.Context, Builder);
2898 
2899   Info.reset(DeducedArgumentList);
2900 
2901   // Substitute the deduced template arguments into the template
2902   // arguments of the class template partial specialization, and
2903   // verify that the instantiated template arguments are both valid
2904   // and are equivalent to the template arguments originally provided
2905   // to the class template.
2906   LocalInstantiationScope InstScope(S);
2907   auto *Template = Partial->getSpecializedTemplate();
2908   const ASTTemplateArgumentListInfo *PartialTemplArgInfo =
2909       Partial->getTemplateArgsAsWritten();
2910   const TemplateArgumentLoc *PartialTemplateArgs =
2911       PartialTemplArgInfo->getTemplateArgs();
2912 
2913   TemplateArgumentListInfo InstArgs(PartialTemplArgInfo->LAngleLoc,
2914                                     PartialTemplArgInfo->RAngleLoc);
2915 
2916   if (S.Subst(PartialTemplateArgs, PartialTemplArgInfo->NumTemplateArgs,
2917               InstArgs, MultiLevelTemplateArgumentList(*DeducedArgumentList))) {
2918     unsigned ArgIdx = InstArgs.size(), ParamIdx = ArgIdx;
2919     if (ParamIdx >= Partial->getTemplateParameters()->size())
2920       ParamIdx = Partial->getTemplateParameters()->size() - 1;
2921 
2922     Decl *Param = const_cast<NamedDecl *>(
2923         Partial->getTemplateParameters()->getParam(ParamIdx));
2924     Info.Param = makeTemplateParameter(Param);
2925     Info.FirstArg = PartialTemplateArgs[ArgIdx].getArgument();
2926     return Sema::TDK_SubstitutionFailure;
2927   }
2928 
2929   bool ConstraintsNotSatisfied;
2930   SmallVector<TemplateArgument, 4> ConvertedInstArgs;
2931   if (S.CheckTemplateArgumentList(Template, Partial->getLocation(), InstArgs,
2932                                   false, ConvertedInstArgs,
2933                                   /*UpdateArgsWithConversions=*/true,
2934                                   &ConstraintsNotSatisfied))
2935     return ConstraintsNotSatisfied ? Sema::TDK_ConstraintsNotSatisfied :
2936                                      Sema::TDK_SubstitutionFailure;
2937 
2938   TemplateParameterList *TemplateParams = Template->getTemplateParameters();
2939   for (unsigned I = 0, E = TemplateParams->size(); I != E; ++I) {
2940     TemplateArgument InstArg = ConvertedInstArgs.data()[I];
2941     if (!isSameTemplateArg(S.Context, TemplateArgs[I], InstArg)) {
2942       Info.Param = makeTemplateParameter(TemplateParams->getParam(I));
2943       Info.FirstArg = TemplateArgs[I];
2944       Info.SecondArg = InstArg;
2945       return Sema::TDK_NonDeducedMismatch;
2946     }
2947   }
2948 
2949   if (Trap.hasErrorOccurred())
2950     return Sema::TDK_SubstitutionFailure;
2951 
2952   if (auto Result = CheckDeducedArgumentConstraints(S, Partial, Builder, Info))
2953     return Result;
2954 
2955   return Sema::TDK_Success;
2956 }
2957 
2958 /// Complete template argument deduction for a class or variable template,
2959 /// when partial ordering against a partial specialization.
2960 // FIXME: Factor out duplication with partial specialization version above.
2961 static Sema::TemplateDeductionResult FinishTemplateArgumentDeduction(
2962     Sema &S, TemplateDecl *Template, bool PartialOrdering,
2963     const TemplateArgumentList &TemplateArgs,
2964     SmallVectorImpl<DeducedTemplateArgument> &Deduced,
2965     TemplateDeductionInfo &Info) {
2966   // Unevaluated SFINAE context.
2967   EnterExpressionEvaluationContext Unevaluated(
2968       S, Sema::ExpressionEvaluationContext::Unevaluated);
2969   Sema::SFINAETrap Trap(S);
2970 
2971   Sema::ContextRAII SavedContext(S, getAsDeclContextOrEnclosing(Template));
2972 
2973   // C++ [temp.deduct.type]p2:
2974   //   [...] or if any template argument remains neither deduced nor
2975   //   explicitly specified, template argument deduction fails.
2976   SmallVector<TemplateArgument, 4> Builder;
2977   if (auto Result = ConvertDeducedTemplateArguments(
2978           S, Template, /*IsDeduced*/PartialOrdering, Deduced, Info, Builder))
2979     return Result;
2980 
2981   // Check that we produced the correct argument list.
2982   TemplateParameterList *TemplateParams = Template->getTemplateParameters();
2983   for (unsigned I = 0, E = TemplateParams->size(); I != E; ++I) {
2984     TemplateArgument InstArg = Builder[I];
2985     if (!isSameTemplateArg(S.Context, TemplateArgs[I], InstArg,
2986                            /*PackExpansionMatchesPack*/true)) {
2987       Info.Param = makeTemplateParameter(TemplateParams->getParam(I));
2988       Info.FirstArg = TemplateArgs[I];
2989       Info.SecondArg = InstArg;
2990       return Sema::TDK_NonDeducedMismatch;
2991     }
2992   }
2993 
2994   if (Trap.hasErrorOccurred())
2995     return Sema::TDK_SubstitutionFailure;
2996 
2997   if (auto Result = CheckDeducedArgumentConstraints(S, Template, Builder,
2998                                                     Info))
2999     return Result;
3000 
3001   return Sema::TDK_Success;
3002 }
3003 
3004 /// Perform template argument deduction to determine whether
3005 /// the given template arguments match the given class template
3006 /// partial specialization per C++ [temp.class.spec.match].
3007 Sema::TemplateDeductionResult
3008 Sema::DeduceTemplateArguments(ClassTemplatePartialSpecializationDecl *Partial,
3009                               const TemplateArgumentList &TemplateArgs,
3010                               TemplateDeductionInfo &Info) {
3011   if (Partial->isInvalidDecl())
3012     return TDK_Invalid;
3013 
3014   // C++ [temp.class.spec.match]p2:
3015   //   A partial specialization matches a given actual template
3016   //   argument list if the template arguments of the partial
3017   //   specialization can be deduced from the actual template argument
3018   //   list (14.8.2).
3019 
3020   // Unevaluated SFINAE context.
3021   EnterExpressionEvaluationContext Unevaluated(
3022       *this, Sema::ExpressionEvaluationContext::Unevaluated);
3023   SFINAETrap Trap(*this);
3024 
3025   SmallVector<DeducedTemplateArgument, 4> Deduced;
3026   Deduced.resize(Partial->getTemplateParameters()->size());
3027   if (TemplateDeductionResult Result
3028         = ::DeduceTemplateArguments(*this,
3029                                     Partial->getTemplateParameters(),
3030                                     Partial->getTemplateArgs(),
3031                                     TemplateArgs, Info, Deduced))
3032     return Result;
3033 
3034   SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end());
3035   InstantiatingTemplate Inst(*this, Info.getLocation(), Partial, DeducedArgs,
3036                              Info);
3037   if (Inst.isInvalid())
3038     return TDK_InstantiationDepth;
3039 
3040   if (Trap.hasErrorOccurred())
3041     return Sema::TDK_SubstitutionFailure;
3042 
3043   return ::FinishTemplateArgumentDeduction(
3044       *this, Partial, /*IsPartialOrdering=*/false, TemplateArgs, Deduced, Info);
3045 }
3046 
3047 /// Perform template argument deduction to determine whether
3048 /// the given template arguments match the given variable template
3049 /// partial specialization per C++ [temp.class.spec.match].
3050 Sema::TemplateDeductionResult
3051 Sema::DeduceTemplateArguments(VarTemplatePartialSpecializationDecl *Partial,
3052                               const TemplateArgumentList &TemplateArgs,
3053                               TemplateDeductionInfo &Info) {
3054   if (Partial->isInvalidDecl())
3055     return TDK_Invalid;
3056 
3057   // C++ [temp.class.spec.match]p2:
3058   //   A partial specialization matches a given actual template
3059   //   argument list if the template arguments of the partial
3060   //   specialization can be deduced from the actual template argument
3061   //   list (14.8.2).
3062 
3063   // Unevaluated SFINAE context.
3064   EnterExpressionEvaluationContext Unevaluated(
3065       *this, Sema::ExpressionEvaluationContext::Unevaluated);
3066   SFINAETrap Trap(*this);
3067 
3068   SmallVector<DeducedTemplateArgument, 4> Deduced;
3069   Deduced.resize(Partial->getTemplateParameters()->size());
3070   if (TemplateDeductionResult Result = ::DeduceTemplateArguments(
3071           *this, Partial->getTemplateParameters(), Partial->getTemplateArgs(),
3072           TemplateArgs, Info, Deduced))
3073     return Result;
3074 
3075   SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end());
3076   InstantiatingTemplate Inst(*this, Info.getLocation(), Partial, DeducedArgs,
3077                              Info);
3078   if (Inst.isInvalid())
3079     return TDK_InstantiationDepth;
3080 
3081   if (Trap.hasErrorOccurred())
3082     return Sema::TDK_SubstitutionFailure;
3083 
3084   return ::FinishTemplateArgumentDeduction(
3085       *this, Partial, /*IsPartialOrdering=*/false, TemplateArgs, Deduced, Info);
3086 }
3087 
3088 /// Determine whether the given type T is a simple-template-id type.
3089 static bool isSimpleTemplateIdType(QualType T) {
3090   if (const TemplateSpecializationType *Spec
3091         = T->getAs<TemplateSpecializationType>())
3092     return Spec->getTemplateName().getAsTemplateDecl() != nullptr;
3093 
3094   // C++17 [temp.local]p2:
3095   //   the injected-class-name [...] is equivalent to the template-name followed
3096   //   by the template-arguments of the class template specialization or partial
3097   //   specialization enclosed in <>
3098   // ... which means it's equivalent to a simple-template-id.
3099   //
3100   // This only arises during class template argument deduction for a copy
3101   // deduction candidate, where it permits slicing.
3102   if (T->getAs<InjectedClassNameType>())
3103     return true;
3104 
3105   return false;
3106 }
3107 
3108 /// Substitute the explicitly-provided template arguments into the
3109 /// given function template according to C++ [temp.arg.explicit].
3110 ///
3111 /// \param FunctionTemplate the function template into which the explicit
3112 /// template arguments will be substituted.
3113 ///
3114 /// \param ExplicitTemplateArgs the explicitly-specified template
3115 /// arguments.
3116 ///
3117 /// \param Deduced the deduced template arguments, which will be populated
3118 /// with the converted and checked explicit template arguments.
3119 ///
3120 /// \param ParamTypes will be populated with the instantiated function
3121 /// parameters.
3122 ///
3123 /// \param FunctionType if non-NULL, the result type of the function template
3124 /// will also be instantiated and the pointed-to value will be updated with
3125 /// the instantiated function type.
3126 ///
3127 /// \param Info if substitution fails for any reason, this object will be
3128 /// populated with more information about the failure.
3129 ///
3130 /// \returns TDK_Success if substitution was successful, or some failure
3131 /// condition.
3132 Sema::TemplateDeductionResult
3133 Sema::SubstituteExplicitTemplateArguments(
3134                                       FunctionTemplateDecl *FunctionTemplate,
3135                                TemplateArgumentListInfo &ExplicitTemplateArgs,
3136                        SmallVectorImpl<DeducedTemplateArgument> &Deduced,
3137                                  SmallVectorImpl<QualType> &ParamTypes,
3138                                           QualType *FunctionType,
3139                                           TemplateDeductionInfo &Info) {
3140   FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
3141   TemplateParameterList *TemplateParams
3142     = FunctionTemplate->getTemplateParameters();
3143 
3144   if (ExplicitTemplateArgs.size() == 0) {
3145     // No arguments to substitute; just copy over the parameter types and
3146     // fill in the function type.
3147     for (auto P : Function->parameters())
3148       ParamTypes.push_back(P->getType());
3149 
3150     if (FunctionType)
3151       *FunctionType = Function->getType();
3152     return TDK_Success;
3153   }
3154 
3155   // Unevaluated SFINAE context.
3156   EnterExpressionEvaluationContext Unevaluated(
3157       *this, Sema::ExpressionEvaluationContext::Unevaluated);
3158   SFINAETrap Trap(*this);
3159 
3160   // C++ [temp.arg.explicit]p3:
3161   //   Template arguments that are present shall be specified in the
3162   //   declaration order of their corresponding template-parameters. The
3163   //   template argument list shall not specify more template-arguments than
3164   //   there are corresponding template-parameters.
3165   SmallVector<TemplateArgument, 4> Builder;
3166 
3167   // Enter a new template instantiation context where we check the
3168   // explicitly-specified template arguments against this function template,
3169   // and then substitute them into the function parameter types.
3170   SmallVector<TemplateArgument, 4> DeducedArgs;
3171   InstantiatingTemplate Inst(
3172       *this, Info.getLocation(), FunctionTemplate, DeducedArgs,
3173       CodeSynthesisContext::ExplicitTemplateArgumentSubstitution, Info);
3174   if (Inst.isInvalid())
3175     return TDK_InstantiationDepth;
3176 
3177   if (CheckTemplateArgumentList(FunctionTemplate, SourceLocation(),
3178                                 ExplicitTemplateArgs, true, Builder, false) ||
3179       Trap.hasErrorOccurred()) {
3180     unsigned Index = Builder.size();
3181     if (Index >= TemplateParams->size())
3182       return TDK_SubstitutionFailure;
3183     Info.Param = makeTemplateParameter(TemplateParams->getParam(Index));
3184     return TDK_InvalidExplicitArguments;
3185   }
3186 
3187   // Form the template argument list from the explicitly-specified
3188   // template arguments.
3189   TemplateArgumentList *ExplicitArgumentList
3190     = TemplateArgumentList::CreateCopy(Context, Builder);
3191   Info.setExplicitArgs(ExplicitArgumentList);
3192 
3193   // Template argument deduction and the final substitution should be
3194   // done in the context of the templated declaration.  Explicit
3195   // argument substitution, on the other hand, needs to happen in the
3196   // calling context.
3197   ContextRAII SavedContext(*this, FunctionTemplate->getTemplatedDecl());
3198 
3199   // If we deduced template arguments for a template parameter pack,
3200   // note that the template argument pack is partially substituted and record
3201   // the explicit template arguments. They'll be used as part of deduction
3202   // for this template parameter pack.
3203   unsigned PartiallySubstitutedPackIndex = -1u;
3204   if (!Builder.empty()) {
3205     const TemplateArgument &Arg = Builder.back();
3206     if (Arg.getKind() == TemplateArgument::Pack) {
3207       auto *Param = TemplateParams->getParam(Builder.size() - 1);
3208       // If this is a fully-saturated fixed-size pack, it should be
3209       // fully-substituted, not partially-substituted.
3210       Optional<unsigned> Expansions = getExpandedPackSize(Param);
3211       if (!Expansions || Arg.pack_size() < *Expansions) {
3212         PartiallySubstitutedPackIndex = Builder.size() - 1;
3213         CurrentInstantiationScope->SetPartiallySubstitutedPack(
3214             Param, Arg.pack_begin(), Arg.pack_size());
3215       }
3216     }
3217   }
3218 
3219   const FunctionProtoType *Proto
3220     = Function->getType()->getAs<FunctionProtoType>();
3221   assert(Proto && "Function template does not have a prototype?");
3222 
3223   // Isolate our substituted parameters from our caller.
3224   LocalInstantiationScope InstScope(*this, /*MergeWithOuterScope*/true);
3225 
3226   ExtParameterInfoBuilder ExtParamInfos;
3227 
3228   // Instantiate the types of each of the function parameters given the
3229   // explicitly-specified template arguments. If the function has a trailing
3230   // return type, substitute it after the arguments to ensure we substitute
3231   // in lexical order.
3232   if (Proto->hasTrailingReturn()) {
3233     if (SubstParmTypes(Function->getLocation(), Function->parameters(),
3234                        Proto->getExtParameterInfosOrNull(),
3235                        MultiLevelTemplateArgumentList(*ExplicitArgumentList),
3236                        ParamTypes, /*params*/ nullptr, ExtParamInfos))
3237       return TDK_SubstitutionFailure;
3238   }
3239 
3240   // Instantiate the return type.
3241   QualType ResultType;
3242   {
3243     // C++11 [expr.prim.general]p3:
3244     //   If a declaration declares a member function or member function
3245     //   template of a class X, the expression this is a prvalue of type
3246     //   "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
3247     //   and the end of the function-definition, member-declarator, or
3248     //   declarator.
3249     Qualifiers ThisTypeQuals;
3250     CXXRecordDecl *ThisContext = nullptr;
3251     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Function)) {
3252       ThisContext = Method->getParent();
3253       ThisTypeQuals = Method->getMethodQualifiers();
3254     }
3255 
3256     CXXThisScopeRAII ThisScope(*this, ThisContext, ThisTypeQuals,
3257                                getLangOpts().CPlusPlus11);
3258 
3259     ResultType =
3260         SubstType(Proto->getReturnType(),
3261                   MultiLevelTemplateArgumentList(*ExplicitArgumentList),
3262                   Function->getTypeSpecStartLoc(), Function->getDeclName());
3263     if (ResultType.isNull() || Trap.hasErrorOccurred())
3264       return TDK_SubstitutionFailure;
3265     // CUDA: Kernel function must have 'void' return type.
3266     if (getLangOpts().CUDA)
3267       if (Function->hasAttr<CUDAGlobalAttr>() && !ResultType->isVoidType()) {
3268         Diag(Function->getLocation(), diag::err_kern_type_not_void_return)
3269             << Function->getType() << Function->getSourceRange();
3270         return TDK_SubstitutionFailure;
3271       }
3272   }
3273 
3274   // Instantiate the types of each of the function parameters given the
3275   // explicitly-specified template arguments if we didn't do so earlier.
3276   if (!Proto->hasTrailingReturn() &&
3277       SubstParmTypes(Function->getLocation(), Function->parameters(),
3278                      Proto->getExtParameterInfosOrNull(),
3279                      MultiLevelTemplateArgumentList(*ExplicitArgumentList),
3280                      ParamTypes, /*params*/ nullptr, ExtParamInfos))
3281     return TDK_SubstitutionFailure;
3282 
3283   if (FunctionType) {
3284     auto EPI = Proto->getExtProtoInfo();
3285     EPI.ExtParameterInfos = ExtParamInfos.getPointerOrNull(ParamTypes.size());
3286 
3287     // In C++1z onwards, exception specifications are part of the function type,
3288     // so substitution into the type must also substitute into the exception
3289     // specification.
3290     SmallVector<QualType, 4> ExceptionStorage;
3291     if (getLangOpts().CPlusPlus17 &&
3292         SubstExceptionSpec(
3293             Function->getLocation(), EPI.ExceptionSpec, ExceptionStorage,
3294             MultiLevelTemplateArgumentList(*ExplicitArgumentList)))
3295       return TDK_SubstitutionFailure;
3296 
3297     *FunctionType = BuildFunctionType(ResultType, ParamTypes,
3298                                       Function->getLocation(),
3299                                       Function->getDeclName(),
3300                                       EPI);
3301     if (FunctionType->isNull() || Trap.hasErrorOccurred())
3302       return TDK_SubstitutionFailure;
3303   }
3304 
3305   // C++ [temp.arg.explicit]p2:
3306   //   Trailing template arguments that can be deduced (14.8.2) may be
3307   //   omitted from the list of explicit template-arguments. If all of the
3308   //   template arguments can be deduced, they may all be omitted; in this
3309   //   case, the empty template argument list <> itself may also be omitted.
3310   //
3311   // Take all of the explicitly-specified arguments and put them into
3312   // the set of deduced template arguments. The partially-substituted
3313   // parameter pack, however, will be set to NULL since the deduction
3314   // mechanism handles the partially-substituted argument pack directly.
3315   Deduced.reserve(TemplateParams->size());
3316   for (unsigned I = 0, N = ExplicitArgumentList->size(); I != N; ++I) {
3317     const TemplateArgument &Arg = ExplicitArgumentList->get(I);
3318     if (I == PartiallySubstitutedPackIndex)
3319       Deduced.push_back(DeducedTemplateArgument());
3320     else
3321       Deduced.push_back(Arg);
3322   }
3323 
3324   return TDK_Success;
3325 }
3326 
3327 /// Check whether the deduced argument type for a call to a function
3328 /// template matches the actual argument type per C++ [temp.deduct.call]p4.
3329 static Sema::TemplateDeductionResult
3330 CheckOriginalCallArgDeduction(Sema &S, TemplateDeductionInfo &Info,
3331                               Sema::OriginalCallArg OriginalArg,
3332                               QualType DeducedA) {
3333   ASTContext &Context = S.Context;
3334 
3335   auto Failed = [&]() -> Sema::TemplateDeductionResult {
3336     Info.FirstArg = TemplateArgument(DeducedA);
3337     Info.SecondArg = TemplateArgument(OriginalArg.OriginalArgType);
3338     Info.CallArgIndex = OriginalArg.ArgIdx;
3339     return OriginalArg.DecomposedParam ? Sema::TDK_DeducedMismatchNested
3340                                        : Sema::TDK_DeducedMismatch;
3341   };
3342 
3343   QualType A = OriginalArg.OriginalArgType;
3344   QualType OriginalParamType = OriginalArg.OriginalParamType;
3345 
3346   // Check for type equality (top-level cv-qualifiers are ignored).
3347   if (Context.hasSameUnqualifiedType(A, DeducedA))
3348     return Sema::TDK_Success;
3349 
3350   // Strip off references on the argument types; they aren't needed for
3351   // the following checks.
3352   if (const ReferenceType *DeducedARef = DeducedA->getAs<ReferenceType>())
3353     DeducedA = DeducedARef->getPointeeType();
3354   if (const ReferenceType *ARef = A->getAs<ReferenceType>())
3355     A = ARef->getPointeeType();
3356 
3357   // C++ [temp.deduct.call]p4:
3358   //   [...] However, there are three cases that allow a difference:
3359   //     - If the original P is a reference type, the deduced A (i.e., the
3360   //       type referred to by the reference) can be more cv-qualified than
3361   //       the transformed A.
3362   if (const ReferenceType *OriginalParamRef
3363       = OriginalParamType->getAs<ReferenceType>()) {
3364     // We don't want to keep the reference around any more.
3365     OriginalParamType = OriginalParamRef->getPointeeType();
3366 
3367     // FIXME: Resolve core issue (no number yet): if the original P is a
3368     // reference type and the transformed A is function type "noexcept F",
3369     // the deduced A can be F.
3370     QualType Tmp;
3371     if (A->isFunctionType() && S.IsFunctionConversion(A, DeducedA, Tmp))
3372       return Sema::TDK_Success;
3373 
3374     Qualifiers AQuals = A.getQualifiers();
3375     Qualifiers DeducedAQuals = DeducedA.getQualifiers();
3376 
3377     // Under Objective-C++ ARC, the deduced type may have implicitly
3378     // been given strong or (when dealing with a const reference)
3379     // unsafe_unretained lifetime. If so, update the original
3380     // qualifiers to include this lifetime.
3381     if (S.getLangOpts().ObjCAutoRefCount &&
3382         ((DeducedAQuals.getObjCLifetime() == Qualifiers::OCL_Strong &&
3383           AQuals.getObjCLifetime() == Qualifiers::OCL_None) ||
3384          (DeducedAQuals.hasConst() &&
3385           DeducedAQuals.getObjCLifetime() == Qualifiers::OCL_ExplicitNone))) {
3386       AQuals.setObjCLifetime(DeducedAQuals.getObjCLifetime());
3387     }
3388 
3389     if (AQuals == DeducedAQuals) {
3390       // Qualifiers match; there's nothing to do.
3391     } else if (!DeducedAQuals.compatiblyIncludes(AQuals)) {
3392       return Failed();
3393     } else {
3394       // Qualifiers are compatible, so have the argument type adopt the
3395       // deduced argument type's qualifiers as if we had performed the
3396       // qualification conversion.
3397       A = Context.getQualifiedType(A.getUnqualifiedType(), DeducedAQuals);
3398     }
3399   }
3400 
3401   //    - The transformed A can be another pointer or pointer to member
3402   //      type that can be converted to the deduced A via a function pointer
3403   //      conversion and/or a qualification conversion.
3404   //
3405   // Also allow conversions which merely strip __attribute__((noreturn)) from
3406   // function types (recursively).
3407   bool ObjCLifetimeConversion = false;
3408   QualType ResultTy;
3409   if ((A->isAnyPointerType() || A->isMemberPointerType()) &&
3410       (S.IsQualificationConversion(A, DeducedA, false,
3411                                    ObjCLifetimeConversion) ||
3412        S.IsFunctionConversion(A, DeducedA, ResultTy)))
3413     return Sema::TDK_Success;
3414 
3415   //    - If P is a class and P has the form simple-template-id, then the
3416   //      transformed A can be a derived class of the deduced A. [...]
3417   //     [...] Likewise, if P is a pointer to a class of the form
3418   //      simple-template-id, the transformed A can be a pointer to a
3419   //      derived class pointed to by the deduced A.
3420   if (const PointerType *OriginalParamPtr
3421       = OriginalParamType->getAs<PointerType>()) {
3422     if (const PointerType *DeducedAPtr = DeducedA->getAs<PointerType>()) {
3423       if (const PointerType *APtr = A->getAs<PointerType>()) {
3424         if (A->getPointeeType()->isRecordType()) {
3425           OriginalParamType = OriginalParamPtr->getPointeeType();
3426           DeducedA = DeducedAPtr->getPointeeType();
3427           A = APtr->getPointeeType();
3428         }
3429       }
3430     }
3431   }
3432 
3433   if (Context.hasSameUnqualifiedType(A, DeducedA))
3434     return Sema::TDK_Success;
3435 
3436   if (A->isRecordType() && isSimpleTemplateIdType(OriginalParamType) &&
3437       S.IsDerivedFrom(Info.getLocation(), A, DeducedA))
3438     return Sema::TDK_Success;
3439 
3440   return Failed();
3441 }
3442 
3443 /// Find the pack index for a particular parameter index in an instantiation of
3444 /// a function template with specific arguments.
3445 ///
3446 /// \return The pack index for whichever pack produced this parameter, or -1
3447 ///         if this was not produced by a parameter. Intended to be used as the
3448 ///         ArgumentPackSubstitutionIndex for further substitutions.
3449 // FIXME: We should track this in OriginalCallArgs so we don't need to
3450 // reconstruct it here.
3451 static unsigned getPackIndexForParam(Sema &S,
3452                                      FunctionTemplateDecl *FunctionTemplate,
3453                                      const MultiLevelTemplateArgumentList &Args,
3454                                      unsigned ParamIdx) {
3455   unsigned Idx = 0;
3456   for (auto *PD : FunctionTemplate->getTemplatedDecl()->parameters()) {
3457     if (PD->isParameterPack()) {
3458       unsigned NumExpansions =
3459           S.getNumArgumentsInExpansion(PD->getType(), Args).getValueOr(1);
3460       if (Idx + NumExpansions > ParamIdx)
3461         return ParamIdx - Idx;
3462       Idx += NumExpansions;
3463     } else {
3464       if (Idx == ParamIdx)
3465         return -1; // Not a pack expansion
3466       ++Idx;
3467     }
3468   }
3469 
3470   llvm_unreachable("parameter index would not be produced from template");
3471 }
3472 
3473 /// Finish template argument deduction for a function template,
3474 /// checking the deduced template arguments for completeness and forming
3475 /// the function template specialization.
3476 ///
3477 /// \param OriginalCallArgs If non-NULL, the original call arguments against
3478 /// which the deduced argument types should be compared.
3479 Sema::TemplateDeductionResult Sema::FinishTemplateArgumentDeduction(
3480     FunctionTemplateDecl *FunctionTemplate,
3481     SmallVectorImpl<DeducedTemplateArgument> &Deduced,
3482     unsigned NumExplicitlySpecified, FunctionDecl *&Specialization,
3483     TemplateDeductionInfo &Info,
3484     SmallVectorImpl<OriginalCallArg> const *OriginalCallArgs,
3485     bool PartialOverloading, llvm::function_ref<bool()> CheckNonDependent) {
3486   // Unevaluated SFINAE context.
3487   EnterExpressionEvaluationContext Unevaluated(
3488       *this, Sema::ExpressionEvaluationContext::Unevaluated);
3489   SFINAETrap Trap(*this);
3490 
3491   // Enter a new template instantiation context while we instantiate the
3492   // actual function declaration.
3493   SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end());
3494   InstantiatingTemplate Inst(
3495       *this, Info.getLocation(), FunctionTemplate, DeducedArgs,
3496       CodeSynthesisContext::DeducedTemplateArgumentSubstitution, Info);
3497   if (Inst.isInvalid())
3498     return TDK_InstantiationDepth;
3499 
3500   ContextRAII SavedContext(*this, FunctionTemplate->getTemplatedDecl());
3501 
3502   // C++ [temp.deduct.type]p2:
3503   //   [...] or if any template argument remains neither deduced nor
3504   //   explicitly specified, template argument deduction fails.
3505   SmallVector<TemplateArgument, 4> Builder;
3506   if (auto Result = ConvertDeducedTemplateArguments(
3507           *this, FunctionTemplate, /*IsDeduced*/true, Deduced, Info, Builder,
3508           CurrentInstantiationScope, NumExplicitlySpecified,
3509           PartialOverloading))
3510     return Result;
3511 
3512   // C++ [temp.deduct.call]p10: [DR1391]
3513   //   If deduction succeeds for all parameters that contain
3514   //   template-parameters that participate in template argument deduction,
3515   //   and all template arguments are explicitly specified, deduced, or
3516   //   obtained from default template arguments, remaining parameters are then
3517   //   compared with the corresponding arguments. For each remaining parameter
3518   //   P with a type that was non-dependent before substitution of any
3519   //   explicitly-specified template arguments, if the corresponding argument
3520   //   A cannot be implicitly converted to P, deduction fails.
3521   if (CheckNonDependent())
3522     return TDK_NonDependentConversionFailure;
3523 
3524   // Form the template argument list from the deduced template arguments.
3525   TemplateArgumentList *DeducedArgumentList
3526     = TemplateArgumentList::CreateCopy(Context, Builder);
3527   Info.reset(DeducedArgumentList);
3528 
3529   // Substitute the deduced template arguments into the function template
3530   // declaration to produce the function template specialization.
3531   DeclContext *Owner = FunctionTemplate->getDeclContext();
3532   if (FunctionTemplate->getFriendObjectKind())
3533     Owner = FunctionTemplate->getLexicalDeclContext();
3534   MultiLevelTemplateArgumentList SubstArgs(*DeducedArgumentList);
3535   Specialization = cast_or_null<FunctionDecl>(
3536       SubstDecl(FunctionTemplate->getTemplatedDecl(), Owner, SubstArgs));
3537   if (!Specialization || Specialization->isInvalidDecl())
3538     return TDK_SubstitutionFailure;
3539 
3540   assert(Specialization->getPrimaryTemplate()->getCanonicalDecl() ==
3541          FunctionTemplate->getCanonicalDecl());
3542 
3543   // If the template argument list is owned by the function template
3544   // specialization, release it.
3545   if (Specialization->getTemplateSpecializationArgs() == DeducedArgumentList &&
3546       !Trap.hasErrorOccurred())
3547     Info.take();
3548 
3549   // There may have been an error that did not prevent us from constructing a
3550   // declaration. Mark the declaration invalid and return with a substitution
3551   // failure.
3552   if (Trap.hasErrorOccurred()) {
3553     Specialization->setInvalidDecl(true);
3554     return TDK_SubstitutionFailure;
3555   }
3556 
3557   // C++2a [temp.deduct]p5
3558   //   [...] When all template arguments have been deduced [...] all uses of
3559   //   template parameters [...] are replaced with the corresponding deduced
3560   //   or default argument values.
3561   //   [...] If the function template has associated constraints
3562   //   ([temp.constr.decl]), those constraints are checked for satisfaction
3563   //   ([temp.constr.constr]). If the constraints are not satisfied, type
3564   //   deduction fails.
3565   if (!PartialOverloading ||
3566       (Builder.size() == FunctionTemplate->getTemplateParameters()->size())) {
3567     if (CheckInstantiatedFunctionTemplateConstraints(Info.getLocation(),
3568             Specialization, Builder, Info.AssociatedConstraintsSatisfaction))
3569       return TDK_MiscellaneousDeductionFailure;
3570 
3571     if (!Info.AssociatedConstraintsSatisfaction.IsSatisfied) {
3572       Info.reset(TemplateArgumentList::CreateCopy(Context, Builder));
3573       return TDK_ConstraintsNotSatisfied;
3574     }
3575   }
3576 
3577   if (OriginalCallArgs) {
3578     // C++ [temp.deduct.call]p4:
3579     //   In general, the deduction process attempts to find template argument
3580     //   values that will make the deduced A identical to A (after the type A
3581     //   is transformed as described above). [...]
3582     llvm::SmallDenseMap<std::pair<unsigned, QualType>, QualType> DeducedATypes;
3583     for (unsigned I = 0, N = OriginalCallArgs->size(); I != N; ++I) {
3584       OriginalCallArg OriginalArg = (*OriginalCallArgs)[I];
3585 
3586       auto ParamIdx = OriginalArg.ArgIdx;
3587       if (ParamIdx >= Specialization->getNumParams())
3588         // FIXME: This presumably means a pack ended up smaller than we
3589         // expected while deducing. Should this not result in deduction
3590         // failure? Can it even happen?
3591         continue;
3592 
3593       QualType DeducedA;
3594       if (!OriginalArg.DecomposedParam) {
3595         // P is one of the function parameters, just look up its substituted
3596         // type.
3597         DeducedA = Specialization->getParamDecl(ParamIdx)->getType();
3598       } else {
3599         // P is a decomposed element of a parameter corresponding to a
3600         // braced-init-list argument. Substitute back into P to find the
3601         // deduced A.
3602         QualType &CacheEntry =
3603             DeducedATypes[{ParamIdx, OriginalArg.OriginalParamType}];
3604         if (CacheEntry.isNull()) {
3605           ArgumentPackSubstitutionIndexRAII PackIndex(
3606               *this, getPackIndexForParam(*this, FunctionTemplate, SubstArgs,
3607                                           ParamIdx));
3608           CacheEntry =
3609               SubstType(OriginalArg.OriginalParamType, SubstArgs,
3610                         Specialization->getTypeSpecStartLoc(),
3611                         Specialization->getDeclName());
3612         }
3613         DeducedA = CacheEntry;
3614       }
3615 
3616       if (auto TDK =
3617               CheckOriginalCallArgDeduction(*this, Info, OriginalArg, DeducedA))
3618         return TDK;
3619     }
3620   }
3621 
3622   // If we suppressed any diagnostics while performing template argument
3623   // deduction, and if we haven't already instantiated this declaration,
3624   // keep track of these diagnostics. They'll be emitted if this specialization
3625   // is actually used.
3626   if (Info.diag_begin() != Info.diag_end()) {
3627     SuppressedDiagnosticsMap::iterator
3628       Pos = SuppressedDiagnostics.find(Specialization->getCanonicalDecl());
3629     if (Pos == SuppressedDiagnostics.end())
3630         SuppressedDiagnostics[Specialization->getCanonicalDecl()]
3631           .append(Info.diag_begin(), Info.diag_end());
3632   }
3633 
3634   return TDK_Success;
3635 }
3636 
3637 /// Gets the type of a function for template-argument-deducton
3638 /// purposes when it's considered as part of an overload set.
3639 static QualType GetTypeOfFunction(Sema &S, const OverloadExpr::FindResult &R,
3640                                   FunctionDecl *Fn) {
3641   // We may need to deduce the return type of the function now.
3642   if (S.getLangOpts().CPlusPlus14 && Fn->getReturnType()->isUndeducedType() &&
3643       S.DeduceReturnType(Fn, R.Expression->getExprLoc(), /*Diagnose*/ false))
3644     return {};
3645 
3646   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn))
3647     if (Method->isInstance()) {
3648       // An instance method that's referenced in a form that doesn't
3649       // look like a member pointer is just invalid.
3650       if (!R.HasFormOfMemberPointer)
3651         return {};
3652 
3653       return S.Context.getMemberPointerType(Fn->getType(),
3654                S.Context.getTypeDeclType(Method->getParent()).getTypePtr());
3655     }
3656 
3657   if (!R.IsAddressOfOperand) return Fn->getType();
3658   return S.Context.getPointerType(Fn->getType());
3659 }
3660 
3661 /// Apply the deduction rules for overload sets.
3662 ///
3663 /// \return the null type if this argument should be treated as an
3664 /// undeduced context
3665 static QualType
3666 ResolveOverloadForDeduction(Sema &S, TemplateParameterList *TemplateParams,
3667                             Expr *Arg, QualType ParamType,
3668                             bool ParamWasReference) {
3669 
3670   OverloadExpr::FindResult R = OverloadExpr::find(Arg);
3671 
3672   OverloadExpr *Ovl = R.Expression;
3673 
3674   // C++0x [temp.deduct.call]p4
3675   unsigned TDF = 0;
3676   if (ParamWasReference)
3677     TDF |= TDF_ParamWithReferenceType;
3678   if (R.IsAddressOfOperand)
3679     TDF |= TDF_IgnoreQualifiers;
3680 
3681   // C++0x [temp.deduct.call]p6:
3682   //   When P is a function type, pointer to function type, or pointer
3683   //   to member function type:
3684 
3685   if (!ParamType->isFunctionType() &&
3686       !ParamType->isFunctionPointerType() &&
3687       !ParamType->isMemberFunctionPointerType()) {
3688     if (Ovl->hasExplicitTemplateArgs()) {
3689       // But we can still look for an explicit specialization.
3690       if (FunctionDecl *ExplicitSpec
3691             = S.ResolveSingleFunctionTemplateSpecialization(Ovl))
3692         return GetTypeOfFunction(S, R, ExplicitSpec);
3693     }
3694 
3695     DeclAccessPair DAP;
3696     if (FunctionDecl *Viable =
3697             S.resolveAddressOfSingleOverloadCandidate(Arg, DAP))
3698       return GetTypeOfFunction(S, R, Viable);
3699 
3700     return {};
3701   }
3702 
3703   // Gather the explicit template arguments, if any.
3704   TemplateArgumentListInfo ExplicitTemplateArgs;
3705   if (Ovl->hasExplicitTemplateArgs())
3706     Ovl->copyTemplateArgumentsInto(ExplicitTemplateArgs);
3707   QualType Match;
3708   for (UnresolvedSetIterator I = Ovl->decls_begin(),
3709          E = Ovl->decls_end(); I != E; ++I) {
3710     NamedDecl *D = (*I)->getUnderlyingDecl();
3711 
3712     if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D)) {
3713       //   - If the argument is an overload set containing one or more
3714       //     function templates, the parameter is treated as a
3715       //     non-deduced context.
3716       if (!Ovl->hasExplicitTemplateArgs())
3717         return {};
3718 
3719       // Otherwise, see if we can resolve a function type
3720       FunctionDecl *Specialization = nullptr;
3721       TemplateDeductionInfo Info(Ovl->getNameLoc());
3722       if (S.DeduceTemplateArguments(FunTmpl, &ExplicitTemplateArgs,
3723                                     Specialization, Info))
3724         continue;
3725 
3726       D = Specialization;
3727     }
3728 
3729     FunctionDecl *Fn = cast<FunctionDecl>(D);
3730     QualType ArgType = GetTypeOfFunction(S, R, Fn);
3731     if (ArgType.isNull()) continue;
3732 
3733     // Function-to-pointer conversion.
3734     if (!ParamWasReference && ParamType->isPointerType() &&
3735         ArgType->isFunctionType())
3736       ArgType = S.Context.getPointerType(ArgType);
3737 
3738     //   - If the argument is an overload set (not containing function
3739     //     templates), trial argument deduction is attempted using each
3740     //     of the members of the set. If deduction succeeds for only one
3741     //     of the overload set members, that member is used as the
3742     //     argument value for the deduction. If deduction succeeds for
3743     //     more than one member of the overload set the parameter is
3744     //     treated as a non-deduced context.
3745 
3746     // We do all of this in a fresh context per C++0x [temp.deduct.type]p2:
3747     //   Type deduction is done independently for each P/A pair, and
3748     //   the deduced template argument values are then combined.
3749     // So we do not reject deductions which were made elsewhere.
3750     SmallVector<DeducedTemplateArgument, 8>
3751       Deduced(TemplateParams->size());
3752     TemplateDeductionInfo Info(Ovl->getNameLoc());
3753     Sema::TemplateDeductionResult Result
3754       = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, ParamType,
3755                                            ArgType, Info, Deduced, TDF);
3756     if (Result) continue;
3757     if (!Match.isNull())
3758       return {};
3759     Match = ArgType;
3760   }
3761 
3762   return Match;
3763 }
3764 
3765 /// Perform the adjustments to the parameter and argument types
3766 /// described in C++ [temp.deduct.call].
3767 ///
3768 /// \returns true if the caller should not attempt to perform any template
3769 /// argument deduction based on this P/A pair because the argument is an
3770 /// overloaded function set that could not be resolved.
3771 static bool AdjustFunctionParmAndArgTypesForDeduction(
3772     Sema &S, TemplateParameterList *TemplateParams, unsigned FirstInnerIndex,
3773     QualType &ParamType, QualType &ArgType, Expr *Arg, unsigned &TDF) {
3774   // C++0x [temp.deduct.call]p3:
3775   //   If P is a cv-qualified type, the top level cv-qualifiers of P's type
3776   //   are ignored for type deduction.
3777   if (ParamType.hasQualifiers())
3778     ParamType = ParamType.getUnqualifiedType();
3779 
3780   //   [...] If P is a reference type, the type referred to by P is
3781   //   used for type deduction.
3782   const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>();
3783   if (ParamRefType)
3784     ParamType = ParamRefType->getPointeeType();
3785 
3786   // Overload sets usually make this parameter an undeduced context,
3787   // but there are sometimes special circumstances.  Typically
3788   // involving a template-id-expr.
3789   if (ArgType == S.Context.OverloadTy) {
3790     ArgType = ResolveOverloadForDeduction(S, TemplateParams,
3791                                           Arg, ParamType,
3792                                           ParamRefType != nullptr);
3793     if (ArgType.isNull())
3794       return true;
3795   }
3796 
3797   if (ParamRefType) {
3798     // If the argument has incomplete array type, try to complete its type.
3799     if (ArgType->isIncompleteArrayType()) {
3800       S.completeExprArrayBound(Arg);
3801       ArgType = Arg->getType();
3802     }
3803 
3804     // C++1z [temp.deduct.call]p3:
3805     //   If P is a forwarding reference and the argument is an lvalue, the type
3806     //   "lvalue reference to A" is used in place of A for type deduction.
3807     if (isForwardingReference(QualType(ParamRefType, 0), FirstInnerIndex) &&
3808         Arg->isLValue())
3809       ArgType = S.Context.getLValueReferenceType(ArgType);
3810   } else {
3811     // C++ [temp.deduct.call]p2:
3812     //   If P is not a reference type:
3813     //   - If A is an array type, the pointer type produced by the
3814     //     array-to-pointer standard conversion (4.2) is used in place of
3815     //     A for type deduction; otherwise,
3816     if (ArgType->isArrayType())
3817       ArgType = S.Context.getArrayDecayedType(ArgType);
3818     //   - If A is a function type, the pointer type produced by the
3819     //     function-to-pointer standard conversion (4.3) is used in place
3820     //     of A for type deduction; otherwise,
3821     else if (ArgType->isFunctionType())
3822       ArgType = S.Context.getPointerType(ArgType);
3823     else {
3824       // - If A is a cv-qualified type, the top level cv-qualifiers of A's
3825       //   type are ignored for type deduction.
3826       ArgType = ArgType.getUnqualifiedType();
3827     }
3828   }
3829 
3830   // C++0x [temp.deduct.call]p4:
3831   //   In general, the deduction process attempts to find template argument
3832   //   values that will make the deduced A identical to A (after the type A
3833   //   is transformed as described above). [...]
3834   TDF = TDF_SkipNonDependent;
3835 
3836   //     - If the original P is a reference type, the deduced A (i.e., the
3837   //       type referred to by the reference) can be more cv-qualified than
3838   //       the transformed A.
3839   if (ParamRefType)
3840     TDF |= TDF_ParamWithReferenceType;
3841   //     - The transformed A can be another pointer or pointer to member
3842   //       type that can be converted to the deduced A via a qualification
3843   //       conversion (4.4).
3844   if (ArgType->isPointerType() || ArgType->isMemberPointerType() ||
3845       ArgType->isObjCObjectPointerType())
3846     TDF |= TDF_IgnoreQualifiers;
3847   //     - If P is a class and P has the form simple-template-id, then the
3848   //       transformed A can be a derived class of the deduced A. Likewise,
3849   //       if P is a pointer to a class of the form simple-template-id, the
3850   //       transformed A can be a pointer to a derived class pointed to by
3851   //       the deduced A.
3852   if (isSimpleTemplateIdType(ParamType) ||
3853       (isa<PointerType>(ParamType) &&
3854        isSimpleTemplateIdType(
3855                               ParamType->getAs<PointerType>()->getPointeeType())))
3856     TDF |= TDF_DerivedClass;
3857 
3858   return false;
3859 }
3860 
3861 static bool
3862 hasDeducibleTemplateParameters(Sema &S, FunctionTemplateDecl *FunctionTemplate,
3863                                QualType T);
3864 
3865 static Sema::TemplateDeductionResult DeduceTemplateArgumentsFromCallArgument(
3866     Sema &S, TemplateParameterList *TemplateParams, unsigned FirstInnerIndex,
3867     QualType ParamType, Expr *Arg, TemplateDeductionInfo &Info,
3868     SmallVectorImpl<DeducedTemplateArgument> &Deduced,
3869     SmallVectorImpl<Sema::OriginalCallArg> &OriginalCallArgs,
3870     bool DecomposedParam, unsigned ArgIdx, unsigned TDF);
3871 
3872 /// Attempt template argument deduction from an initializer list
3873 ///        deemed to be an argument in a function call.
3874 static Sema::TemplateDeductionResult DeduceFromInitializerList(
3875     Sema &S, TemplateParameterList *TemplateParams, QualType AdjustedParamType,
3876     InitListExpr *ILE, TemplateDeductionInfo &Info,
3877     SmallVectorImpl<DeducedTemplateArgument> &Deduced,
3878     SmallVectorImpl<Sema::OriginalCallArg> &OriginalCallArgs, unsigned ArgIdx,
3879     unsigned TDF) {
3880   // C++ [temp.deduct.call]p1: (CWG 1591)
3881   //   If removing references and cv-qualifiers from P gives
3882   //   std::initializer_list<P0> or P0[N] for some P0 and N and the argument is
3883   //   a non-empty initializer list, then deduction is performed instead for
3884   //   each element of the initializer list, taking P0 as a function template
3885   //   parameter type and the initializer element as its argument
3886   //
3887   // We've already removed references and cv-qualifiers here.
3888   if (!ILE->getNumInits())
3889     return Sema::TDK_Success;
3890 
3891   QualType ElTy;
3892   auto *ArrTy = S.Context.getAsArrayType(AdjustedParamType);
3893   if (ArrTy)
3894     ElTy = ArrTy->getElementType();
3895   else if (!S.isStdInitializerList(AdjustedParamType, &ElTy)) {
3896     //   Otherwise, an initializer list argument causes the parameter to be
3897     //   considered a non-deduced context
3898     return Sema::TDK_Success;
3899   }
3900 
3901   // Resolving a core issue: a braced-init-list containing any designators is
3902   // a non-deduced context.
3903   for (Expr *E : ILE->inits())
3904     if (isa<DesignatedInitExpr>(E))
3905       return Sema::TDK_Success;
3906 
3907   // Deduction only needs to be done for dependent types.
3908   if (ElTy->isDependentType()) {
3909     for (Expr *E : ILE->inits()) {
3910       if (auto Result = DeduceTemplateArgumentsFromCallArgument(
3911               S, TemplateParams, 0, ElTy, E, Info, Deduced, OriginalCallArgs, true,
3912               ArgIdx, TDF))
3913         return Result;
3914     }
3915   }
3916 
3917   //   in the P0[N] case, if N is a non-type template parameter, N is deduced
3918   //   from the length of the initializer list.
3919   if (auto *DependentArrTy = dyn_cast_or_null<DependentSizedArrayType>(ArrTy)) {
3920     // Determine the array bound is something we can deduce.
3921     if (NonTypeTemplateParmDecl *NTTP =
3922             getDeducedParameterFromExpr(Info, DependentArrTy->getSizeExpr())) {
3923       // We can perform template argument deduction for the given non-type
3924       // template parameter.
3925       // C++ [temp.deduct.type]p13:
3926       //   The type of N in the type T[N] is std::size_t.
3927       QualType T = S.Context.getSizeType();
3928       llvm::APInt Size(S.Context.getIntWidth(T), ILE->getNumInits());
3929       if (auto Result = DeduceNonTypeTemplateArgument(
3930               S, TemplateParams, NTTP, llvm::APSInt(Size), T,
3931               /*ArrayBound=*/true, Info, Deduced))
3932         return Result;
3933     }
3934   }
3935 
3936   return Sema::TDK_Success;
3937 }
3938 
3939 /// Perform template argument deduction per [temp.deduct.call] for a
3940 ///        single parameter / argument pair.
3941 static Sema::TemplateDeductionResult DeduceTemplateArgumentsFromCallArgument(
3942     Sema &S, TemplateParameterList *TemplateParams, unsigned FirstInnerIndex,
3943     QualType ParamType, Expr *Arg, TemplateDeductionInfo &Info,
3944     SmallVectorImpl<DeducedTemplateArgument> &Deduced,
3945     SmallVectorImpl<Sema::OriginalCallArg> &OriginalCallArgs,
3946     bool DecomposedParam, unsigned ArgIdx, unsigned TDF) {
3947   QualType ArgType = Arg->getType();
3948   QualType OrigParamType = ParamType;
3949 
3950   //   If P is a reference type [...]
3951   //   If P is a cv-qualified type [...]
3952   if (AdjustFunctionParmAndArgTypesForDeduction(
3953           S, TemplateParams, FirstInnerIndex, ParamType, ArgType, Arg, TDF))
3954     return Sema::TDK_Success;
3955 
3956   //   If [...] the argument is a non-empty initializer list [...]
3957   if (InitListExpr *ILE = dyn_cast<InitListExpr>(Arg))
3958     return DeduceFromInitializerList(S, TemplateParams, ParamType, ILE, Info,
3959                                      Deduced, OriginalCallArgs, ArgIdx, TDF);
3960 
3961   //   [...] the deduction process attempts to find template argument values
3962   //   that will make the deduced A identical to A
3963   //
3964   // Keep track of the argument type and corresponding parameter index,
3965   // so we can check for compatibility between the deduced A and A.
3966   OriginalCallArgs.push_back(
3967       Sema::OriginalCallArg(OrigParamType, DecomposedParam, ArgIdx, ArgType));
3968   return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, ParamType,
3969                                             ArgType, Info, Deduced, TDF);
3970 }
3971 
3972 /// Perform template argument deduction from a function call
3973 /// (C++ [temp.deduct.call]).
3974 ///
3975 /// \param FunctionTemplate the function template for which we are performing
3976 /// template argument deduction.
3977 ///
3978 /// \param ExplicitTemplateArgs the explicit template arguments provided
3979 /// for this call.
3980 ///
3981 /// \param Args the function call arguments
3982 ///
3983 /// \param Specialization if template argument deduction was successful,
3984 /// this will be set to the function template specialization produced by
3985 /// template argument deduction.
3986 ///
3987 /// \param Info the argument will be updated to provide additional information
3988 /// about template argument deduction.
3989 ///
3990 /// \param CheckNonDependent A callback to invoke to check conversions for
3991 /// non-dependent parameters, between deduction and substitution, per DR1391.
3992 /// If this returns true, substitution will be skipped and we return
3993 /// TDK_NonDependentConversionFailure. The callback is passed the parameter
3994 /// types (after substituting explicit template arguments).
3995 ///
3996 /// \returns the result of template argument deduction.
3997 Sema::TemplateDeductionResult Sema::DeduceTemplateArguments(
3998     FunctionTemplateDecl *FunctionTemplate,
3999     TemplateArgumentListInfo *ExplicitTemplateArgs, ArrayRef<Expr *> Args,
4000     FunctionDecl *&Specialization, TemplateDeductionInfo &Info,
4001     bool PartialOverloading,
4002     llvm::function_ref<bool(ArrayRef<QualType>)> CheckNonDependent) {
4003   if (FunctionTemplate->isInvalidDecl())
4004     return TDK_Invalid;
4005 
4006   FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
4007   unsigned NumParams = Function->getNumParams();
4008 
4009   unsigned FirstInnerIndex = getFirstInnerIndex(FunctionTemplate);
4010 
4011   // C++ [temp.deduct.call]p1:
4012   //   Template argument deduction is done by comparing each function template
4013   //   parameter type (call it P) with the type of the corresponding argument
4014   //   of the call (call it A) as described below.
4015   if (Args.size() < Function->getMinRequiredArguments() && !PartialOverloading)
4016     return TDK_TooFewArguments;
4017   else if (TooManyArguments(NumParams, Args.size(), PartialOverloading)) {
4018     const auto *Proto = Function->getType()->castAs<FunctionProtoType>();
4019     if (Proto->isTemplateVariadic())
4020       /* Do nothing */;
4021     else if (!Proto->isVariadic())
4022       return TDK_TooManyArguments;
4023   }
4024 
4025   // The types of the parameters from which we will perform template argument
4026   // deduction.
4027   LocalInstantiationScope InstScope(*this);
4028   TemplateParameterList *TemplateParams
4029     = FunctionTemplate->getTemplateParameters();
4030   SmallVector<DeducedTemplateArgument, 4> Deduced;
4031   SmallVector<QualType, 8> ParamTypes;
4032   unsigned NumExplicitlySpecified = 0;
4033   if (ExplicitTemplateArgs) {
4034     TemplateDeductionResult Result =
4035       SubstituteExplicitTemplateArguments(FunctionTemplate,
4036                                           *ExplicitTemplateArgs,
4037                                           Deduced,
4038                                           ParamTypes,
4039                                           nullptr,
4040                                           Info);
4041     if (Result)
4042       return Result;
4043 
4044     NumExplicitlySpecified = Deduced.size();
4045   } else {
4046     // Just fill in the parameter types from the function declaration.
4047     for (unsigned I = 0; I != NumParams; ++I)
4048       ParamTypes.push_back(Function->getParamDecl(I)->getType());
4049   }
4050 
4051   SmallVector<OriginalCallArg, 8> OriginalCallArgs;
4052 
4053   // Deduce an argument of type ParamType from an expression with index ArgIdx.
4054   auto DeduceCallArgument = [&](QualType ParamType, unsigned ArgIdx) {
4055     // C++ [demp.deduct.call]p1: (DR1391)
4056     //   Template argument deduction is done by comparing each function template
4057     //   parameter that contains template-parameters that participate in
4058     //   template argument deduction ...
4059     if (!hasDeducibleTemplateParameters(*this, FunctionTemplate, ParamType))
4060       return Sema::TDK_Success;
4061 
4062     //   ... with the type of the corresponding argument
4063     return DeduceTemplateArgumentsFromCallArgument(
4064         *this, TemplateParams, FirstInnerIndex, ParamType, Args[ArgIdx], Info, Deduced,
4065         OriginalCallArgs, /*Decomposed*/false, ArgIdx, /*TDF*/ 0);
4066   };
4067 
4068   // Deduce template arguments from the function parameters.
4069   Deduced.resize(TemplateParams->size());
4070   SmallVector<QualType, 8> ParamTypesForArgChecking;
4071   for (unsigned ParamIdx = 0, NumParamTypes = ParamTypes.size(), ArgIdx = 0;
4072        ParamIdx != NumParamTypes; ++ParamIdx) {
4073     QualType ParamType = ParamTypes[ParamIdx];
4074 
4075     const PackExpansionType *ParamExpansion =
4076         dyn_cast<PackExpansionType>(ParamType);
4077     if (!ParamExpansion) {
4078       // Simple case: matching a function parameter to a function argument.
4079       if (ArgIdx >= Args.size())
4080         break;
4081 
4082       ParamTypesForArgChecking.push_back(ParamType);
4083       if (auto Result = DeduceCallArgument(ParamType, ArgIdx++))
4084         return Result;
4085 
4086       continue;
4087     }
4088 
4089     QualType ParamPattern = ParamExpansion->getPattern();
4090     PackDeductionScope PackScope(*this, TemplateParams, Deduced, Info,
4091                                  ParamPattern);
4092 
4093     // C++0x [temp.deduct.call]p1:
4094     //   For a function parameter pack that occurs at the end of the
4095     //   parameter-declaration-list, the type A of each remaining argument of
4096     //   the call is compared with the type P of the declarator-id of the
4097     //   function parameter pack. Each comparison deduces template arguments
4098     //   for subsequent positions in the template parameter packs expanded by
4099     //   the function parameter pack. When a function parameter pack appears
4100     //   in a non-deduced context [not at the end of the list], the type of
4101     //   that parameter pack is never deduced.
4102     //
4103     // FIXME: The above rule allows the size of the parameter pack to change
4104     // after we skip it (in the non-deduced case). That makes no sense, so
4105     // we instead notionally deduce the pack against N arguments, where N is
4106     // the length of the explicitly-specified pack if it's expanded by the
4107     // parameter pack and 0 otherwise, and we treat each deduction as a
4108     // non-deduced context.
4109     if (ParamIdx + 1 == NumParamTypes || PackScope.hasFixedArity()) {
4110       for (; ArgIdx < Args.size() && PackScope.hasNextElement();
4111            PackScope.nextPackElement(), ++ArgIdx) {
4112         ParamTypesForArgChecking.push_back(ParamPattern);
4113         if (auto Result = DeduceCallArgument(ParamPattern, ArgIdx))
4114           return Result;
4115       }
4116     } else {
4117       // If the parameter type contains an explicitly-specified pack that we
4118       // could not expand, skip the number of parameters notionally created
4119       // by the expansion.
4120       Optional<unsigned> NumExpansions = ParamExpansion->getNumExpansions();
4121       if (NumExpansions && !PackScope.isPartiallyExpanded()) {
4122         for (unsigned I = 0; I != *NumExpansions && ArgIdx < Args.size();
4123              ++I, ++ArgIdx) {
4124           ParamTypesForArgChecking.push_back(ParamPattern);
4125           // FIXME: Should we add OriginalCallArgs for these? What if the
4126           // corresponding argument is a list?
4127           PackScope.nextPackElement();
4128         }
4129       }
4130     }
4131 
4132     // Build argument packs for each of the parameter packs expanded by this
4133     // pack expansion.
4134     if (auto Result = PackScope.finish())
4135       return Result;
4136   }
4137 
4138   // Capture the context in which the function call is made. This is the context
4139   // that is needed when the accessibility of template arguments is checked.
4140   DeclContext *CallingCtx = CurContext;
4141 
4142   return FinishTemplateArgumentDeduction(
4143       FunctionTemplate, Deduced, NumExplicitlySpecified, Specialization, Info,
4144       &OriginalCallArgs, PartialOverloading, [&, CallingCtx]() {
4145         ContextRAII SavedContext(*this, CallingCtx);
4146         return CheckNonDependent(ParamTypesForArgChecking);
4147       });
4148 }
4149 
4150 QualType Sema::adjustCCAndNoReturn(QualType ArgFunctionType,
4151                                    QualType FunctionType,
4152                                    bool AdjustExceptionSpec) {
4153   if (ArgFunctionType.isNull())
4154     return ArgFunctionType;
4155 
4156   const auto *FunctionTypeP = FunctionType->castAs<FunctionProtoType>();
4157   const auto *ArgFunctionTypeP = ArgFunctionType->castAs<FunctionProtoType>();
4158   FunctionProtoType::ExtProtoInfo EPI = ArgFunctionTypeP->getExtProtoInfo();
4159   bool Rebuild = false;
4160 
4161   CallingConv CC = FunctionTypeP->getCallConv();
4162   if (EPI.ExtInfo.getCC() != CC) {
4163     EPI.ExtInfo = EPI.ExtInfo.withCallingConv(CC);
4164     Rebuild = true;
4165   }
4166 
4167   bool NoReturn = FunctionTypeP->getNoReturnAttr();
4168   if (EPI.ExtInfo.getNoReturn() != NoReturn) {
4169     EPI.ExtInfo = EPI.ExtInfo.withNoReturn(NoReturn);
4170     Rebuild = true;
4171   }
4172 
4173   if (AdjustExceptionSpec && (FunctionTypeP->hasExceptionSpec() ||
4174                               ArgFunctionTypeP->hasExceptionSpec())) {
4175     EPI.ExceptionSpec = FunctionTypeP->getExtProtoInfo().ExceptionSpec;
4176     Rebuild = true;
4177   }
4178 
4179   if (!Rebuild)
4180     return ArgFunctionType;
4181 
4182   return Context.getFunctionType(ArgFunctionTypeP->getReturnType(),
4183                                  ArgFunctionTypeP->getParamTypes(), EPI);
4184 }
4185 
4186 /// Deduce template arguments when taking the address of a function
4187 /// template (C++ [temp.deduct.funcaddr]) or matching a specialization to
4188 /// a template.
4189 ///
4190 /// \param FunctionTemplate the function template for which we are performing
4191 /// template argument deduction.
4192 ///
4193 /// \param ExplicitTemplateArgs the explicitly-specified template
4194 /// arguments.
4195 ///
4196 /// \param ArgFunctionType the function type that will be used as the
4197 /// "argument" type (A) when performing template argument deduction from the
4198 /// function template's function type. This type may be NULL, if there is no
4199 /// argument type to compare against, in C++0x [temp.arg.explicit]p3.
4200 ///
4201 /// \param Specialization if template argument deduction was successful,
4202 /// this will be set to the function template specialization produced by
4203 /// template argument deduction.
4204 ///
4205 /// \param Info the argument will be updated to provide additional information
4206 /// about template argument deduction.
4207 ///
4208 /// \param IsAddressOfFunction If \c true, we are deducing as part of taking
4209 /// the address of a function template per [temp.deduct.funcaddr] and
4210 /// [over.over]. If \c false, we are looking up a function template
4211 /// specialization based on its signature, per [temp.deduct.decl].
4212 ///
4213 /// \returns the result of template argument deduction.
4214 Sema::TemplateDeductionResult Sema::DeduceTemplateArguments(
4215     FunctionTemplateDecl *FunctionTemplate,
4216     TemplateArgumentListInfo *ExplicitTemplateArgs, QualType ArgFunctionType,
4217     FunctionDecl *&Specialization, TemplateDeductionInfo &Info,
4218     bool IsAddressOfFunction) {
4219   if (FunctionTemplate->isInvalidDecl())
4220     return TDK_Invalid;
4221 
4222   FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
4223   TemplateParameterList *TemplateParams
4224     = FunctionTemplate->getTemplateParameters();
4225   QualType FunctionType = Function->getType();
4226 
4227   // Substitute any explicit template arguments.
4228   LocalInstantiationScope InstScope(*this);
4229   SmallVector<DeducedTemplateArgument, 4> Deduced;
4230   unsigned NumExplicitlySpecified = 0;
4231   SmallVector<QualType, 4> ParamTypes;
4232   if (ExplicitTemplateArgs) {
4233     if (TemplateDeductionResult Result
4234           = SubstituteExplicitTemplateArguments(FunctionTemplate,
4235                                                 *ExplicitTemplateArgs,
4236                                                 Deduced, ParamTypes,
4237                                                 &FunctionType, Info))
4238       return Result;
4239 
4240     NumExplicitlySpecified = Deduced.size();
4241   }
4242 
4243   // When taking the address of a function, we require convertibility of
4244   // the resulting function type. Otherwise, we allow arbitrary mismatches
4245   // of calling convention and noreturn.
4246   if (!IsAddressOfFunction)
4247     ArgFunctionType = adjustCCAndNoReturn(ArgFunctionType, FunctionType,
4248                                           /*AdjustExceptionSpec*/false);
4249 
4250   // Unevaluated SFINAE context.
4251   EnterExpressionEvaluationContext Unevaluated(
4252       *this, Sema::ExpressionEvaluationContext::Unevaluated);
4253   SFINAETrap Trap(*this);
4254 
4255   Deduced.resize(TemplateParams->size());
4256 
4257   // If the function has a deduced return type, substitute it for a dependent
4258   // type so that we treat it as a non-deduced context in what follows. If we
4259   // are looking up by signature, the signature type should also have a deduced
4260   // return type, which we instead expect to exactly match.
4261   bool HasDeducedReturnType = false;
4262   if (getLangOpts().CPlusPlus14 && IsAddressOfFunction &&
4263       Function->getReturnType()->getContainedAutoType()) {
4264     FunctionType = SubstAutoType(FunctionType, Context.DependentTy);
4265     HasDeducedReturnType = true;
4266   }
4267 
4268   if (!ArgFunctionType.isNull()) {
4269     unsigned TDF =
4270         TDF_TopLevelParameterTypeList | TDF_AllowCompatibleFunctionType;
4271     // Deduce template arguments from the function type.
4272     if (TemplateDeductionResult Result
4273           = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams,
4274                                                FunctionType, ArgFunctionType,
4275                                                Info, Deduced, TDF))
4276       return Result;
4277   }
4278 
4279   if (TemplateDeductionResult Result
4280         = FinishTemplateArgumentDeduction(FunctionTemplate, Deduced,
4281                                           NumExplicitlySpecified,
4282                                           Specialization, Info))
4283     return Result;
4284 
4285   // If the function has a deduced return type, deduce it now, so we can check
4286   // that the deduced function type matches the requested type.
4287   if (HasDeducedReturnType &&
4288       Specialization->getReturnType()->isUndeducedType() &&
4289       DeduceReturnType(Specialization, Info.getLocation(), false))
4290     return TDK_MiscellaneousDeductionFailure;
4291 
4292   // If the function has a dependent exception specification, resolve it now,
4293   // so we can check that the exception specification matches.
4294   auto *SpecializationFPT =
4295       Specialization->getType()->castAs<FunctionProtoType>();
4296   if (getLangOpts().CPlusPlus17 &&
4297       isUnresolvedExceptionSpec(SpecializationFPT->getExceptionSpecType()) &&
4298       !ResolveExceptionSpec(Info.getLocation(), SpecializationFPT))
4299     return TDK_MiscellaneousDeductionFailure;
4300 
4301   // Adjust the exception specification of the argument to match the
4302   // substituted and resolved type we just formed. (Calling convention and
4303   // noreturn can't be dependent, so we don't actually need this for them
4304   // right now.)
4305   QualType SpecializationType = Specialization->getType();
4306   if (!IsAddressOfFunction)
4307     ArgFunctionType = adjustCCAndNoReturn(ArgFunctionType, SpecializationType,
4308                                           /*AdjustExceptionSpec*/true);
4309 
4310   // If the requested function type does not match the actual type of the
4311   // specialization with respect to arguments of compatible pointer to function
4312   // types, template argument deduction fails.
4313   if (!ArgFunctionType.isNull()) {
4314     if (IsAddressOfFunction &&
4315         !isSameOrCompatibleFunctionType(
4316             Context.getCanonicalType(SpecializationType),
4317             Context.getCanonicalType(ArgFunctionType)))
4318       return TDK_MiscellaneousDeductionFailure;
4319 
4320     if (!IsAddressOfFunction &&
4321         !Context.hasSameType(SpecializationType, ArgFunctionType))
4322       return TDK_MiscellaneousDeductionFailure;
4323   }
4324 
4325   return TDK_Success;
4326 }
4327 
4328 /// Deduce template arguments for a templated conversion
4329 /// function (C++ [temp.deduct.conv]) and, if successful, produce a
4330 /// conversion function template specialization.
4331 Sema::TemplateDeductionResult
4332 Sema::DeduceTemplateArguments(FunctionTemplateDecl *ConversionTemplate,
4333                               QualType ToType,
4334                               CXXConversionDecl *&Specialization,
4335                               TemplateDeductionInfo &Info) {
4336   if (ConversionTemplate->isInvalidDecl())
4337     return TDK_Invalid;
4338 
4339   CXXConversionDecl *ConversionGeneric
4340     = cast<CXXConversionDecl>(ConversionTemplate->getTemplatedDecl());
4341 
4342   QualType FromType = ConversionGeneric->getConversionType();
4343 
4344   // Canonicalize the types for deduction.
4345   QualType P = Context.getCanonicalType(FromType);
4346   QualType A = Context.getCanonicalType(ToType);
4347 
4348   // C++0x [temp.deduct.conv]p2:
4349   //   If P is a reference type, the type referred to by P is used for
4350   //   type deduction.
4351   if (const ReferenceType *PRef = P->getAs<ReferenceType>())
4352     P = PRef->getPointeeType();
4353 
4354   // C++0x [temp.deduct.conv]p4:
4355   //   [...] If A is a reference type, the type referred to by A is used
4356   //   for type deduction.
4357   if (const ReferenceType *ARef = A->getAs<ReferenceType>()) {
4358     A = ARef->getPointeeType();
4359     // We work around a defect in the standard here: cv-qualifiers are also
4360     // removed from P and A in this case, unless P was a reference type. This
4361     // seems to mostly match what other compilers are doing.
4362     if (!FromType->getAs<ReferenceType>()) {
4363       A = A.getUnqualifiedType();
4364       P = P.getUnqualifiedType();
4365     }
4366 
4367   // C++ [temp.deduct.conv]p3:
4368   //
4369   //   If A is not a reference type:
4370   } else {
4371     assert(!A->isReferenceType() && "Reference types were handled above");
4372 
4373     //   - If P is an array type, the pointer type produced by the
4374     //     array-to-pointer standard conversion (4.2) is used in place
4375     //     of P for type deduction; otherwise,
4376     if (P->isArrayType())
4377       P = Context.getArrayDecayedType(P);
4378     //   - If P is a function type, the pointer type produced by the
4379     //     function-to-pointer standard conversion (4.3) is used in
4380     //     place of P for type deduction; otherwise,
4381     else if (P->isFunctionType())
4382       P = Context.getPointerType(P);
4383     //   - If P is a cv-qualified type, the top level cv-qualifiers of
4384     //     P's type are ignored for type deduction.
4385     else
4386       P = P.getUnqualifiedType();
4387 
4388     // C++0x [temp.deduct.conv]p4:
4389     //   If A is a cv-qualified type, the top level cv-qualifiers of A's
4390     //   type are ignored for type deduction. If A is a reference type, the type
4391     //   referred to by A is used for type deduction.
4392     A = A.getUnqualifiedType();
4393   }
4394 
4395   // Unevaluated SFINAE context.
4396   EnterExpressionEvaluationContext Unevaluated(
4397       *this, Sema::ExpressionEvaluationContext::Unevaluated);
4398   SFINAETrap Trap(*this);
4399 
4400   // C++ [temp.deduct.conv]p1:
4401   //   Template argument deduction is done by comparing the return
4402   //   type of the template conversion function (call it P) with the
4403   //   type that is required as the result of the conversion (call it
4404   //   A) as described in 14.8.2.4.
4405   TemplateParameterList *TemplateParams
4406     = ConversionTemplate->getTemplateParameters();
4407   SmallVector<DeducedTemplateArgument, 4> Deduced;
4408   Deduced.resize(TemplateParams->size());
4409 
4410   // C++0x [temp.deduct.conv]p4:
4411   //   In general, the deduction process attempts to find template
4412   //   argument values that will make the deduced A identical to
4413   //   A. However, there are two cases that allow a difference:
4414   unsigned TDF = 0;
4415   //     - If the original A is a reference type, A can be more
4416   //       cv-qualified than the deduced A (i.e., the type referred to
4417   //       by the reference)
4418   if (ToType->isReferenceType())
4419     TDF |= TDF_ArgWithReferenceType;
4420   //     - The deduced A can be another pointer or pointer to member
4421   //       type that can be converted to A via a qualification
4422   //       conversion.
4423   //
4424   // (C++0x [temp.deduct.conv]p6 clarifies that this only happens when
4425   // both P and A are pointers or member pointers. In this case, we
4426   // just ignore cv-qualifiers completely).
4427   if ((P->isPointerType() && A->isPointerType()) ||
4428       (P->isMemberPointerType() && A->isMemberPointerType()))
4429     TDF |= TDF_IgnoreQualifiers;
4430   if (TemplateDeductionResult Result
4431         = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams,
4432                                              P, A, Info, Deduced, TDF))
4433     return Result;
4434 
4435   // Create an Instantiation Scope for finalizing the operator.
4436   LocalInstantiationScope InstScope(*this);
4437   // Finish template argument deduction.
4438   FunctionDecl *ConversionSpecialized = nullptr;
4439   TemplateDeductionResult Result
4440       = FinishTemplateArgumentDeduction(ConversionTemplate, Deduced, 0,
4441                                         ConversionSpecialized, Info);
4442   Specialization = cast_or_null<CXXConversionDecl>(ConversionSpecialized);
4443   return Result;
4444 }
4445 
4446 /// Deduce template arguments for a function template when there is
4447 /// nothing to deduce against (C++0x [temp.arg.explicit]p3).
4448 ///
4449 /// \param FunctionTemplate the function template for which we are performing
4450 /// template argument deduction.
4451 ///
4452 /// \param ExplicitTemplateArgs the explicitly-specified template
4453 /// arguments.
4454 ///
4455 /// \param Specialization if template argument deduction was successful,
4456 /// this will be set to the function template specialization produced by
4457 /// template argument deduction.
4458 ///
4459 /// \param Info the argument will be updated to provide additional information
4460 /// about template argument deduction.
4461 ///
4462 /// \param IsAddressOfFunction If \c true, we are deducing as part of taking
4463 /// the address of a function template in a context where we do not have a
4464 /// target type, per [over.over]. If \c false, we are looking up a function
4465 /// template specialization based on its signature, which only happens when
4466 /// deducing a function parameter type from an argument that is a template-id
4467 /// naming a function template specialization.
4468 ///
4469 /// \returns the result of template argument deduction.
4470 Sema::TemplateDeductionResult Sema::DeduceTemplateArguments(
4471     FunctionTemplateDecl *FunctionTemplate,
4472     TemplateArgumentListInfo *ExplicitTemplateArgs,
4473     FunctionDecl *&Specialization, TemplateDeductionInfo &Info,
4474     bool IsAddressOfFunction) {
4475   return DeduceTemplateArguments(FunctionTemplate, ExplicitTemplateArgs,
4476                                  QualType(), Specialization, Info,
4477                                  IsAddressOfFunction);
4478 }
4479 
4480 namespace {
4481   struct DependentAuto { bool IsPack; };
4482 
4483   /// Substitute the 'auto' specifier or deduced template specialization type
4484   /// specifier within a type for a given replacement type.
4485   class SubstituteDeducedTypeTransform :
4486       public TreeTransform<SubstituteDeducedTypeTransform> {
4487     QualType Replacement;
4488     bool ReplacementIsPack;
4489     bool UseTypeSugar;
4490 
4491   public:
4492     SubstituteDeducedTypeTransform(Sema &SemaRef, DependentAuto DA)
4493         : TreeTransform<SubstituteDeducedTypeTransform>(SemaRef), Replacement(),
4494           ReplacementIsPack(DA.IsPack), UseTypeSugar(true) {}
4495 
4496     SubstituteDeducedTypeTransform(Sema &SemaRef, QualType Replacement,
4497                                    bool UseTypeSugar = true)
4498         : TreeTransform<SubstituteDeducedTypeTransform>(SemaRef),
4499           Replacement(Replacement), ReplacementIsPack(false),
4500           UseTypeSugar(UseTypeSugar) {}
4501 
4502     QualType TransformDesugared(TypeLocBuilder &TLB, DeducedTypeLoc TL) {
4503       assert(isa<TemplateTypeParmType>(Replacement) &&
4504              "unexpected unsugared replacement kind");
4505       QualType Result = Replacement;
4506       TemplateTypeParmTypeLoc NewTL = TLB.push<TemplateTypeParmTypeLoc>(Result);
4507       NewTL.setNameLoc(TL.getNameLoc());
4508       return Result;
4509     }
4510 
4511     QualType TransformAutoType(TypeLocBuilder &TLB, AutoTypeLoc TL) {
4512       // If we're building the type pattern to deduce against, don't wrap the
4513       // substituted type in an AutoType. Certain template deduction rules
4514       // apply only when a template type parameter appears directly (and not if
4515       // the parameter is found through desugaring). For instance:
4516       //   auto &&lref = lvalue;
4517       // must transform into "rvalue reference to T" not "rvalue reference to
4518       // auto type deduced as T" in order for [temp.deduct.call]p3 to apply.
4519       //
4520       // FIXME: Is this still necessary?
4521       if (!UseTypeSugar)
4522         return TransformDesugared(TLB, TL);
4523 
4524       QualType Result = SemaRef.Context.getAutoType(
4525           Replacement, TL.getTypePtr()->getKeyword(), Replacement.isNull(),
4526           ReplacementIsPack, TL.getTypePtr()->getTypeConstraintConcept(),
4527           TL.getTypePtr()->getTypeConstraintArguments());
4528       auto NewTL = TLB.push<AutoTypeLoc>(Result);
4529       NewTL.copy(TL);
4530       return Result;
4531     }
4532 
4533     QualType TransformDeducedTemplateSpecializationType(
4534         TypeLocBuilder &TLB, DeducedTemplateSpecializationTypeLoc TL) {
4535       if (!UseTypeSugar)
4536         return TransformDesugared(TLB, TL);
4537 
4538       QualType Result = SemaRef.Context.getDeducedTemplateSpecializationType(
4539           TL.getTypePtr()->getTemplateName(),
4540           Replacement, Replacement.isNull());
4541       auto NewTL = TLB.push<DeducedTemplateSpecializationTypeLoc>(Result);
4542       NewTL.setNameLoc(TL.getNameLoc());
4543       return Result;
4544     }
4545 
4546     ExprResult TransformLambdaExpr(LambdaExpr *E) {
4547       // Lambdas never need to be transformed.
4548       return E;
4549     }
4550 
4551     QualType Apply(TypeLoc TL) {
4552       // Create some scratch storage for the transformed type locations.
4553       // FIXME: We're just going to throw this information away. Don't build it.
4554       TypeLocBuilder TLB;
4555       TLB.reserve(TL.getFullDataSize());
4556       return TransformType(TLB, TL);
4557     }
4558   };
4559 
4560 } // namespace
4561 
4562 Sema::DeduceAutoResult
4563 Sema::DeduceAutoType(TypeSourceInfo *Type, Expr *&Init, QualType &Result,
4564                      Optional<unsigned> DependentDeductionDepth,
4565                      bool IgnoreConstraints) {
4566   return DeduceAutoType(Type->getTypeLoc(), Init, Result,
4567                         DependentDeductionDepth, IgnoreConstraints);
4568 }
4569 
4570 /// Attempt to produce an informative diagostic explaining why auto deduction
4571 /// failed.
4572 /// \return \c true if diagnosed, \c false if not.
4573 static bool diagnoseAutoDeductionFailure(Sema &S,
4574                                          Sema::TemplateDeductionResult TDK,
4575                                          TemplateDeductionInfo &Info,
4576                                          ArrayRef<SourceRange> Ranges) {
4577   switch (TDK) {
4578   case Sema::TDK_Inconsistent: {
4579     // Inconsistent deduction means we were deducing from an initializer list.
4580     auto D = S.Diag(Info.getLocation(), diag::err_auto_inconsistent_deduction);
4581     D << Info.FirstArg << Info.SecondArg;
4582     for (auto R : Ranges)
4583       D << R;
4584     return true;
4585   }
4586 
4587   // FIXME: Are there other cases for which a custom diagnostic is more useful
4588   // than the basic "types don't match" diagnostic?
4589 
4590   default:
4591     return false;
4592   }
4593 }
4594 
4595 static Sema::DeduceAutoResult
4596 CheckDeducedPlaceholderConstraints(Sema &S, const AutoType &Type,
4597                                    AutoTypeLoc TypeLoc, QualType Deduced) {
4598   ConstraintSatisfaction Satisfaction;
4599   ConceptDecl *Concept = Type.getTypeConstraintConcept();
4600   TemplateArgumentListInfo TemplateArgs(TypeLoc.getLAngleLoc(),
4601                                         TypeLoc.getRAngleLoc());
4602   TemplateArgs.addArgument(
4603       TemplateArgumentLoc(TemplateArgument(Deduced),
4604                           S.Context.getTrivialTypeSourceInfo(
4605                               Deduced, TypeLoc.getNameLoc())));
4606   for (unsigned I = 0, C = TypeLoc.getNumArgs(); I != C; ++I)
4607     TemplateArgs.addArgument(TypeLoc.getArgLoc(I));
4608 
4609   llvm::SmallVector<TemplateArgument, 4> Converted;
4610   if (S.CheckTemplateArgumentList(Concept, SourceLocation(), TemplateArgs,
4611                                   /*PartialTemplateArgs=*/false, Converted))
4612     return Sema::DAR_FailedAlreadyDiagnosed;
4613   if (S.CheckConstraintSatisfaction(Concept, {Concept->getConstraintExpr()},
4614                                     Converted, TypeLoc.getLocalSourceRange(),
4615                                     Satisfaction))
4616     return Sema::DAR_FailedAlreadyDiagnosed;
4617   if (!Satisfaction.IsSatisfied) {
4618     std::string Buf;
4619     llvm::raw_string_ostream OS(Buf);
4620     OS << "'" << Concept->getName();
4621     if (TypeLoc.hasExplicitTemplateArgs()) {
4622       OS << "<";
4623       for (const auto &Arg : Type.getTypeConstraintArguments())
4624         Arg.print(S.getPrintingPolicy(), OS);
4625       OS << ">";
4626     }
4627     OS << "'";
4628     OS.flush();
4629     S.Diag(TypeLoc.getConceptNameLoc(),
4630            diag::err_placeholder_constraints_not_satisfied)
4631          << Deduced << Buf << TypeLoc.getLocalSourceRange();
4632     S.DiagnoseUnsatisfiedConstraint(Satisfaction);
4633     return Sema::DAR_FailedAlreadyDiagnosed;
4634   }
4635   return Sema::DAR_Succeeded;
4636 }
4637 
4638 /// Deduce the type for an auto type-specifier (C++11 [dcl.spec.auto]p6)
4639 ///
4640 /// Note that this is done even if the initializer is dependent. (This is
4641 /// necessary to support partial ordering of templates using 'auto'.)
4642 /// A dependent type will be produced when deducing from a dependent type.
4643 ///
4644 /// \param Type the type pattern using the auto type-specifier.
4645 /// \param Init the initializer for the variable whose type is to be deduced.
4646 /// \param Result if type deduction was successful, this will be set to the
4647 ///        deduced type.
4648 /// \param DependentDeductionDepth Set if we should permit deduction in
4649 ///        dependent cases. This is necessary for template partial ordering with
4650 ///        'auto' template parameters. The value specified is the template
4651 ///        parameter depth at which we should perform 'auto' deduction.
4652 /// \param IgnoreConstraints Set if we should not fail if the deduced type does
4653 ///                          not satisfy the type-constraint in the auto type.
4654 Sema::DeduceAutoResult
4655 Sema::DeduceAutoType(TypeLoc Type, Expr *&Init, QualType &Result,
4656                      Optional<unsigned> DependentDeductionDepth,
4657                      bool IgnoreConstraints) {
4658   if (Init->containsErrors())
4659     return DAR_FailedAlreadyDiagnosed;
4660   if (Init->getType()->isNonOverloadPlaceholderType()) {
4661     ExprResult NonPlaceholder = CheckPlaceholderExpr(Init);
4662     if (NonPlaceholder.isInvalid())
4663       return DAR_FailedAlreadyDiagnosed;
4664     Init = NonPlaceholder.get();
4665   }
4666 
4667   DependentAuto DependentResult = {
4668       /*.IsPack = */ (bool)Type.getAs<PackExpansionTypeLoc>()};
4669 
4670   if (!DependentDeductionDepth &&
4671       (Type.getType()->isDependentType() || Init->isTypeDependent() ||
4672        Init->containsUnexpandedParameterPack())) {
4673     Result = SubstituteDeducedTypeTransform(*this, DependentResult).Apply(Type);
4674     assert(!Result.isNull() && "substituting DependentTy can't fail");
4675     return DAR_Succeeded;
4676   }
4677 
4678   // Find the depth of template parameter to synthesize.
4679   unsigned Depth = DependentDeductionDepth.getValueOr(0);
4680 
4681   // If this is a 'decltype(auto)' specifier, do the decltype dance.
4682   // Since 'decltype(auto)' can only occur at the top of the type, we
4683   // don't need to go digging for it.
4684   if (const AutoType *AT = Type.getType()->getAs<AutoType>()) {
4685     if (AT->isDecltypeAuto()) {
4686       if (isa<InitListExpr>(Init)) {
4687         Diag(Init->getBeginLoc(), diag::err_decltype_auto_initializer_list);
4688         return DAR_FailedAlreadyDiagnosed;
4689       }
4690 
4691       ExprResult ER = CheckPlaceholderExpr(Init);
4692       if (ER.isInvalid())
4693         return DAR_FailedAlreadyDiagnosed;
4694       Init = ER.get();
4695       QualType Deduced = BuildDecltypeType(Init, Init->getBeginLoc(), false);
4696       if (Deduced.isNull())
4697         return DAR_FailedAlreadyDiagnosed;
4698       // FIXME: Support a non-canonical deduced type for 'auto'.
4699       Deduced = Context.getCanonicalType(Deduced);
4700       if (AT->isConstrained() && !IgnoreConstraints) {
4701         auto ConstraintsResult =
4702             CheckDeducedPlaceholderConstraints(*this, *AT,
4703                                                Type.getContainedAutoTypeLoc(),
4704                                                Deduced);
4705         if (ConstraintsResult != DAR_Succeeded)
4706           return ConstraintsResult;
4707       }
4708       Result = SubstituteDeducedTypeTransform(*this, Deduced).Apply(Type);
4709       if (Result.isNull())
4710         return DAR_FailedAlreadyDiagnosed;
4711       return DAR_Succeeded;
4712     } else if (!getLangOpts().CPlusPlus) {
4713       if (isa<InitListExpr>(Init)) {
4714         Diag(Init->getBeginLoc(), diag::err_auto_init_list_from_c);
4715         return DAR_FailedAlreadyDiagnosed;
4716       }
4717     }
4718   }
4719 
4720   SourceLocation Loc = Init->getExprLoc();
4721 
4722   LocalInstantiationScope InstScope(*this);
4723 
4724   // Build template<class TemplParam> void Func(FuncParam);
4725   TemplateTypeParmDecl *TemplParam = TemplateTypeParmDecl::Create(
4726       Context, nullptr, SourceLocation(), Loc, Depth, 0, nullptr, false, false,
4727       false);
4728   QualType TemplArg = QualType(TemplParam->getTypeForDecl(), 0);
4729   NamedDecl *TemplParamPtr = TemplParam;
4730   FixedSizeTemplateParameterListStorage<1, false> TemplateParamsSt(
4731       Context, Loc, Loc, TemplParamPtr, Loc, nullptr);
4732 
4733   QualType FuncParam =
4734       SubstituteDeducedTypeTransform(*this, TemplArg, /*UseTypeSugar*/false)
4735           .Apply(Type);
4736   assert(!FuncParam.isNull() &&
4737          "substituting template parameter for 'auto' failed");
4738 
4739   // Deduce type of TemplParam in Func(Init)
4740   SmallVector<DeducedTemplateArgument, 1> Deduced;
4741   Deduced.resize(1);
4742 
4743   TemplateDeductionInfo Info(Loc, Depth);
4744 
4745   // If deduction failed, don't diagnose if the initializer is dependent; it
4746   // might acquire a matching type in the instantiation.
4747   auto DeductionFailed = [&](TemplateDeductionResult TDK,
4748                              ArrayRef<SourceRange> Ranges) -> DeduceAutoResult {
4749     if (Init->isTypeDependent()) {
4750       Result =
4751           SubstituteDeducedTypeTransform(*this, DependentResult).Apply(Type);
4752       assert(!Result.isNull() && "substituting DependentTy can't fail");
4753       return DAR_Succeeded;
4754     }
4755     if (diagnoseAutoDeductionFailure(*this, TDK, Info, Ranges))
4756       return DAR_FailedAlreadyDiagnosed;
4757     return DAR_Failed;
4758   };
4759 
4760   SmallVector<OriginalCallArg, 4> OriginalCallArgs;
4761 
4762   InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
4763   if (InitList) {
4764     // Notionally, we substitute std::initializer_list<T> for 'auto' and deduce
4765     // against that. Such deduction only succeeds if removing cv-qualifiers and
4766     // references results in std::initializer_list<T>.
4767     if (!Type.getType().getNonReferenceType()->getAs<AutoType>())
4768       return DAR_Failed;
4769 
4770     // Resolving a core issue: a braced-init-list containing any designators is
4771     // a non-deduced context.
4772     for (Expr *E : InitList->inits())
4773       if (isa<DesignatedInitExpr>(E))
4774         return DAR_Failed;
4775 
4776     SourceRange DeducedFromInitRange;
4777     for (unsigned i = 0, e = InitList->getNumInits(); i < e; ++i) {
4778       Expr *Init = InitList->getInit(i);
4779 
4780       if (auto TDK = DeduceTemplateArgumentsFromCallArgument(
4781               *this, TemplateParamsSt.get(), 0, TemplArg, Init,
4782               Info, Deduced, OriginalCallArgs, /*Decomposed*/ true,
4783               /*ArgIdx*/ 0, /*TDF*/ 0))
4784         return DeductionFailed(TDK, {DeducedFromInitRange,
4785                                      Init->getSourceRange()});
4786 
4787       if (DeducedFromInitRange.isInvalid() &&
4788           Deduced[0].getKind() != TemplateArgument::Null)
4789         DeducedFromInitRange = Init->getSourceRange();
4790     }
4791   } else {
4792     if (!getLangOpts().CPlusPlus && Init->refersToBitField()) {
4793       Diag(Loc, diag::err_auto_bitfield);
4794       return DAR_FailedAlreadyDiagnosed;
4795     }
4796 
4797     if (auto TDK = DeduceTemplateArgumentsFromCallArgument(
4798             *this, TemplateParamsSt.get(), 0, FuncParam, Init, Info, Deduced,
4799             OriginalCallArgs, /*Decomposed*/ false, /*ArgIdx*/ 0, /*TDF*/ 0))
4800       return DeductionFailed(TDK, {});
4801   }
4802 
4803   // Could be null if somehow 'auto' appears in a non-deduced context.
4804   if (Deduced[0].getKind() != TemplateArgument::Type)
4805     return DeductionFailed(TDK_Incomplete, {});
4806 
4807   QualType DeducedType = Deduced[0].getAsType();
4808 
4809   if (InitList) {
4810     DeducedType = BuildStdInitializerList(DeducedType, Loc);
4811     if (DeducedType.isNull())
4812       return DAR_FailedAlreadyDiagnosed;
4813   }
4814 
4815   if (const auto *AT = Type.getType()->getAs<AutoType>()) {
4816     if (AT->isConstrained() && !IgnoreConstraints) {
4817       auto ConstraintsResult =
4818           CheckDeducedPlaceholderConstraints(*this, *AT,
4819                                              Type.getContainedAutoTypeLoc(),
4820                                              DeducedType);
4821       if (ConstraintsResult != DAR_Succeeded)
4822         return ConstraintsResult;
4823     }
4824   }
4825 
4826   Result = SubstituteDeducedTypeTransform(*this, DeducedType).Apply(Type);
4827   if (Result.isNull())
4828     return DAR_FailedAlreadyDiagnosed;
4829 
4830   // Check that the deduced argument type is compatible with the original
4831   // argument type per C++ [temp.deduct.call]p4.
4832   QualType DeducedA = InitList ? Deduced[0].getAsType() : Result;
4833   for (const OriginalCallArg &OriginalArg : OriginalCallArgs) {
4834     assert((bool)InitList == OriginalArg.DecomposedParam &&
4835            "decomposed non-init-list in auto deduction?");
4836     if (auto TDK =
4837             CheckOriginalCallArgDeduction(*this, Info, OriginalArg, DeducedA)) {
4838       Result = QualType();
4839       return DeductionFailed(TDK, {});
4840     }
4841   }
4842 
4843   return DAR_Succeeded;
4844 }
4845 
4846 QualType Sema::SubstAutoType(QualType TypeWithAuto,
4847                              QualType TypeToReplaceAuto) {
4848   if (TypeToReplaceAuto->isDependentType())
4849     return SubstituteDeducedTypeTransform(
4850                *this, DependentAuto{
4851                           TypeToReplaceAuto->containsUnexpandedParameterPack()})
4852         .TransformType(TypeWithAuto);
4853   return SubstituteDeducedTypeTransform(*this, TypeToReplaceAuto)
4854       .TransformType(TypeWithAuto);
4855 }
4856 
4857 TypeSourceInfo *Sema::SubstAutoTypeSourceInfo(TypeSourceInfo *TypeWithAuto,
4858                                               QualType TypeToReplaceAuto) {
4859   if (TypeToReplaceAuto->isDependentType())
4860     return SubstituteDeducedTypeTransform(
4861                *this,
4862                DependentAuto{
4863                    TypeToReplaceAuto->containsUnexpandedParameterPack()})
4864         .TransformType(TypeWithAuto);
4865   return SubstituteDeducedTypeTransform(*this, TypeToReplaceAuto)
4866       .TransformType(TypeWithAuto);
4867 }
4868 
4869 QualType Sema::ReplaceAutoType(QualType TypeWithAuto,
4870                                QualType TypeToReplaceAuto) {
4871   return SubstituteDeducedTypeTransform(*this, TypeToReplaceAuto,
4872                                         /*UseTypeSugar*/ false)
4873       .TransformType(TypeWithAuto);
4874 }
4875 
4876 void Sema::DiagnoseAutoDeductionFailure(VarDecl *VDecl, Expr *Init) {
4877   if (isa<InitListExpr>(Init))
4878     Diag(VDecl->getLocation(),
4879          VDecl->isInitCapture()
4880              ? diag::err_init_capture_deduction_failure_from_init_list
4881              : diag::err_auto_var_deduction_failure_from_init_list)
4882       << VDecl->getDeclName() << VDecl->getType() << Init->getSourceRange();
4883   else
4884     Diag(VDecl->getLocation(),
4885          VDecl->isInitCapture() ? diag::err_init_capture_deduction_failure
4886                                 : diag::err_auto_var_deduction_failure)
4887       << VDecl->getDeclName() << VDecl->getType() << Init->getType()
4888       << Init->getSourceRange();
4889 }
4890 
4891 bool Sema::DeduceReturnType(FunctionDecl *FD, SourceLocation Loc,
4892                             bool Diagnose) {
4893   assert(FD->getReturnType()->isUndeducedType());
4894 
4895   // For a lambda's conversion operator, deduce any 'auto' or 'decltype(auto)'
4896   // within the return type from the call operator's type.
4897   if (isLambdaConversionOperator(FD)) {
4898     CXXRecordDecl *Lambda = cast<CXXMethodDecl>(FD)->getParent();
4899     FunctionDecl *CallOp = Lambda->getLambdaCallOperator();
4900 
4901     // For a generic lambda, instantiate the call operator if needed.
4902     if (auto *Args = FD->getTemplateSpecializationArgs()) {
4903       CallOp = InstantiateFunctionDeclaration(
4904           CallOp->getDescribedFunctionTemplate(), Args, Loc);
4905       if (!CallOp || CallOp->isInvalidDecl())
4906         return true;
4907 
4908       // We might need to deduce the return type by instantiating the definition
4909       // of the operator() function.
4910       if (CallOp->getReturnType()->isUndeducedType()) {
4911         runWithSufficientStackSpace(Loc, [&] {
4912           InstantiateFunctionDefinition(Loc, CallOp);
4913         });
4914       }
4915     }
4916 
4917     if (CallOp->isInvalidDecl())
4918       return true;
4919     assert(!CallOp->getReturnType()->isUndeducedType() &&
4920            "failed to deduce lambda return type");
4921 
4922     // Build the new return type from scratch.
4923     QualType RetType = getLambdaConversionFunctionResultType(
4924         CallOp->getType()->castAs<FunctionProtoType>());
4925     if (FD->getReturnType()->getAs<PointerType>())
4926       RetType = Context.getPointerType(RetType);
4927     else {
4928       assert(FD->getReturnType()->getAs<BlockPointerType>());
4929       RetType = Context.getBlockPointerType(RetType);
4930     }
4931     Context.adjustDeducedFunctionResultType(FD, RetType);
4932     return false;
4933   }
4934 
4935   if (FD->getTemplateInstantiationPattern()) {
4936     runWithSufficientStackSpace(Loc, [&] {
4937       InstantiateFunctionDefinition(Loc, FD);
4938     });
4939   }
4940 
4941   bool StillUndeduced = FD->getReturnType()->isUndeducedType();
4942   if (StillUndeduced && Diagnose && !FD->isInvalidDecl()) {
4943     Diag(Loc, diag::err_auto_fn_used_before_defined) << FD;
4944     Diag(FD->getLocation(), diag::note_callee_decl) << FD;
4945   }
4946 
4947   return StillUndeduced;
4948 }
4949 
4950 /// If this is a non-static member function,
4951 static void
4952 AddImplicitObjectParameterType(ASTContext &Context,
4953                                CXXMethodDecl *Method,
4954                                SmallVectorImpl<QualType> &ArgTypes) {
4955   // C++11 [temp.func.order]p3:
4956   //   [...] The new parameter is of type "reference to cv A," where cv are
4957   //   the cv-qualifiers of the function template (if any) and A is
4958   //   the class of which the function template is a member.
4959   //
4960   // The standard doesn't say explicitly, but we pick the appropriate kind of
4961   // reference type based on [over.match.funcs]p4.
4962   QualType ArgTy = Context.getTypeDeclType(Method->getParent());
4963   ArgTy = Context.getQualifiedType(ArgTy, Method->getMethodQualifiers());
4964   if (Method->getRefQualifier() == RQ_RValue)
4965     ArgTy = Context.getRValueReferenceType(ArgTy);
4966   else
4967     ArgTy = Context.getLValueReferenceType(ArgTy);
4968   ArgTypes.push_back(ArgTy);
4969 }
4970 
4971 /// Determine whether the function template \p FT1 is at least as
4972 /// specialized as \p FT2.
4973 static bool isAtLeastAsSpecializedAs(Sema &S,
4974                                      SourceLocation Loc,
4975                                      FunctionTemplateDecl *FT1,
4976                                      FunctionTemplateDecl *FT2,
4977                                      TemplatePartialOrderingContext TPOC,
4978                                      unsigned NumCallArguments1,
4979                                      bool Reversed) {
4980   assert(!Reversed || TPOC == TPOC_Call);
4981 
4982   FunctionDecl *FD1 = FT1->getTemplatedDecl();
4983   FunctionDecl *FD2 = FT2->getTemplatedDecl();
4984   const FunctionProtoType *Proto1 = FD1->getType()->getAs<FunctionProtoType>();
4985   const FunctionProtoType *Proto2 = FD2->getType()->getAs<FunctionProtoType>();
4986 
4987   assert(Proto1 && Proto2 && "Function templates must have prototypes");
4988   TemplateParameterList *TemplateParams = FT2->getTemplateParameters();
4989   SmallVector<DeducedTemplateArgument, 4> Deduced;
4990   Deduced.resize(TemplateParams->size());
4991 
4992   // C++0x [temp.deduct.partial]p3:
4993   //   The types used to determine the ordering depend on the context in which
4994   //   the partial ordering is done:
4995   TemplateDeductionInfo Info(Loc);
4996   SmallVector<QualType, 4> Args2;
4997   switch (TPOC) {
4998   case TPOC_Call: {
4999     //   - In the context of a function call, the function parameter types are
5000     //     used.
5001     CXXMethodDecl *Method1 = dyn_cast<CXXMethodDecl>(FD1);
5002     CXXMethodDecl *Method2 = dyn_cast<CXXMethodDecl>(FD2);
5003 
5004     // C++11 [temp.func.order]p3:
5005     //   [...] If only one of the function templates is a non-static
5006     //   member, that function template is considered to have a new
5007     //   first parameter inserted in its function parameter list. The
5008     //   new parameter is of type "reference to cv A," where cv are
5009     //   the cv-qualifiers of the function template (if any) and A is
5010     //   the class of which the function template is a member.
5011     //
5012     // Note that we interpret this to mean "if one of the function
5013     // templates is a non-static member and the other is a non-member";
5014     // otherwise, the ordering rules for static functions against non-static
5015     // functions don't make any sense.
5016     //
5017     // C++98/03 doesn't have this provision but we've extended DR532 to cover
5018     // it as wording was broken prior to it.
5019     SmallVector<QualType, 4> Args1;
5020 
5021     unsigned NumComparedArguments = NumCallArguments1;
5022 
5023     if (!Method2 && Method1 && !Method1->isStatic()) {
5024       // Compare 'this' from Method1 against first parameter from Method2.
5025       AddImplicitObjectParameterType(S.Context, Method1, Args1);
5026       ++NumComparedArguments;
5027     } else if (!Method1 && Method2 && !Method2->isStatic()) {
5028       // Compare 'this' from Method2 against first parameter from Method1.
5029       AddImplicitObjectParameterType(S.Context, Method2, Args2);
5030     } else if (Method1 && Method2 && Reversed) {
5031       // Compare 'this' from Method1 against second parameter from Method2
5032       // and 'this' from Method2 against second parameter from Method1.
5033       AddImplicitObjectParameterType(S.Context, Method1, Args1);
5034       AddImplicitObjectParameterType(S.Context, Method2, Args2);
5035       ++NumComparedArguments;
5036     }
5037 
5038     Args1.insert(Args1.end(), Proto1->param_type_begin(),
5039                  Proto1->param_type_end());
5040     Args2.insert(Args2.end(), Proto2->param_type_begin(),
5041                  Proto2->param_type_end());
5042 
5043     // C++ [temp.func.order]p5:
5044     //   The presence of unused ellipsis and default arguments has no effect on
5045     //   the partial ordering of function templates.
5046     if (Args1.size() > NumComparedArguments)
5047       Args1.resize(NumComparedArguments);
5048     if (Args2.size() > NumComparedArguments)
5049       Args2.resize(NumComparedArguments);
5050     if (Reversed)
5051       std::reverse(Args2.begin(), Args2.end());
5052     if (DeduceTemplateArguments(S, TemplateParams, Args2.data(), Args2.size(),
5053                                 Args1.data(), Args1.size(), Info, Deduced,
5054                                 TDF_None, /*PartialOrdering=*/true))
5055       return false;
5056 
5057     break;
5058   }
5059 
5060   case TPOC_Conversion:
5061     //   - In the context of a call to a conversion operator, the return types
5062     //     of the conversion function templates are used.
5063     if (DeduceTemplateArgumentsByTypeMatch(
5064             S, TemplateParams, Proto2->getReturnType(), Proto1->getReturnType(),
5065             Info, Deduced, TDF_None,
5066             /*PartialOrdering=*/true))
5067       return false;
5068     break;
5069 
5070   case TPOC_Other:
5071     //   - In other contexts (14.6.6.2) the function template's function type
5072     //     is used.
5073     if (DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
5074                                            FD2->getType(), FD1->getType(),
5075                                            Info, Deduced, TDF_None,
5076                                            /*PartialOrdering=*/true))
5077       return false;
5078     break;
5079   }
5080 
5081   // C++0x [temp.deduct.partial]p11:
5082   //   In most cases, all template parameters must have values in order for
5083   //   deduction to succeed, but for partial ordering purposes a template
5084   //   parameter may remain without a value provided it is not used in the
5085   //   types being used for partial ordering. [ Note: a template parameter used
5086   //   in a non-deduced context is considered used. -end note]
5087   unsigned ArgIdx = 0, NumArgs = Deduced.size();
5088   for (; ArgIdx != NumArgs; ++ArgIdx)
5089     if (Deduced[ArgIdx].isNull())
5090       break;
5091 
5092   // FIXME: We fail to implement [temp.deduct.type]p1 along this path. We need
5093   // to substitute the deduced arguments back into the template and check that
5094   // we get the right type.
5095 
5096   if (ArgIdx == NumArgs) {
5097     // All template arguments were deduced. FT1 is at least as specialized
5098     // as FT2.
5099     return true;
5100   }
5101 
5102   // Figure out which template parameters were used.
5103   llvm::SmallBitVector UsedParameters(TemplateParams->size());
5104   switch (TPOC) {
5105   case TPOC_Call:
5106     for (unsigned I = 0, N = Args2.size(); I != N; ++I)
5107       ::MarkUsedTemplateParameters(S.Context, Args2[I], false,
5108                                    TemplateParams->getDepth(),
5109                                    UsedParameters);
5110     break;
5111 
5112   case TPOC_Conversion:
5113     ::MarkUsedTemplateParameters(S.Context, Proto2->getReturnType(), false,
5114                                  TemplateParams->getDepth(), UsedParameters);
5115     break;
5116 
5117   case TPOC_Other:
5118     ::MarkUsedTemplateParameters(S.Context, FD2->getType(), false,
5119                                  TemplateParams->getDepth(),
5120                                  UsedParameters);
5121     break;
5122   }
5123 
5124   for (; ArgIdx != NumArgs; ++ArgIdx)
5125     // If this argument had no value deduced but was used in one of the types
5126     // used for partial ordering, then deduction fails.
5127     if (Deduced[ArgIdx].isNull() && UsedParameters[ArgIdx])
5128       return false;
5129 
5130   return true;
5131 }
5132 
5133 /// Determine whether this a function template whose parameter-type-list
5134 /// ends with a function parameter pack.
5135 static bool isVariadicFunctionTemplate(FunctionTemplateDecl *FunTmpl) {
5136   FunctionDecl *Function = FunTmpl->getTemplatedDecl();
5137   unsigned NumParams = Function->getNumParams();
5138   if (NumParams == 0)
5139     return false;
5140 
5141   ParmVarDecl *Last = Function->getParamDecl(NumParams - 1);
5142   if (!Last->isParameterPack())
5143     return false;
5144 
5145   // Make sure that no previous parameter is a parameter pack.
5146   while (--NumParams > 0) {
5147     if (Function->getParamDecl(NumParams - 1)->isParameterPack())
5148       return false;
5149   }
5150 
5151   return true;
5152 }
5153 
5154 /// Returns the more specialized function template according
5155 /// to the rules of function template partial ordering (C++ [temp.func.order]).
5156 ///
5157 /// \param FT1 the first function template
5158 ///
5159 /// \param FT2 the second function template
5160 ///
5161 /// \param TPOC the context in which we are performing partial ordering of
5162 /// function templates.
5163 ///
5164 /// \param NumCallArguments1 The number of arguments in the call to FT1, used
5165 /// only when \c TPOC is \c TPOC_Call.
5166 ///
5167 /// \param NumCallArguments2 The number of arguments in the call to FT2, used
5168 /// only when \c TPOC is \c TPOC_Call.
5169 ///
5170 /// \param Reversed If \c true, exactly one of FT1 and FT2 is an overload
5171 /// candidate with a reversed parameter order. In this case, the corresponding
5172 /// P/A pairs between FT1 and FT2 are reversed.
5173 ///
5174 /// \returns the more specialized function template. If neither
5175 /// template is more specialized, returns NULL.
5176 FunctionTemplateDecl *
5177 Sema::getMoreSpecializedTemplate(FunctionTemplateDecl *FT1,
5178                                  FunctionTemplateDecl *FT2,
5179                                  SourceLocation Loc,
5180                                  TemplatePartialOrderingContext TPOC,
5181                                  unsigned NumCallArguments1,
5182                                  unsigned NumCallArguments2,
5183                                  bool Reversed) {
5184 
5185   auto JudgeByConstraints = [&] () -> FunctionTemplateDecl * {
5186     llvm::SmallVector<const Expr *, 3> AC1, AC2;
5187     FT1->getAssociatedConstraints(AC1);
5188     FT2->getAssociatedConstraints(AC2);
5189     bool AtLeastAsConstrained1, AtLeastAsConstrained2;
5190     if (IsAtLeastAsConstrained(FT1, AC1, FT2, AC2, AtLeastAsConstrained1))
5191       return nullptr;
5192     if (IsAtLeastAsConstrained(FT2, AC2, FT1, AC1, AtLeastAsConstrained2))
5193       return nullptr;
5194     if (AtLeastAsConstrained1 == AtLeastAsConstrained2)
5195       return nullptr;
5196     return AtLeastAsConstrained1 ? FT1 : FT2;
5197   };
5198 
5199   bool Better1 = isAtLeastAsSpecializedAs(*this, Loc, FT1, FT2, TPOC,
5200                                           NumCallArguments1, Reversed);
5201   bool Better2 = isAtLeastAsSpecializedAs(*this, Loc, FT2, FT1, TPOC,
5202                                           NumCallArguments2, Reversed);
5203 
5204   if (Better1 != Better2) // We have a clear winner
5205     return Better1 ? FT1 : FT2;
5206 
5207   if (!Better1 && !Better2) // Neither is better than the other
5208     return JudgeByConstraints();
5209 
5210   // FIXME: This mimics what GCC implements, but doesn't match up with the
5211   // proposed resolution for core issue 692. This area needs to be sorted out,
5212   // but for now we attempt to maintain compatibility.
5213   bool Variadic1 = isVariadicFunctionTemplate(FT1);
5214   bool Variadic2 = isVariadicFunctionTemplate(FT2);
5215   if (Variadic1 != Variadic2)
5216     return Variadic1? FT2 : FT1;
5217 
5218   return JudgeByConstraints();
5219 }
5220 
5221 /// Determine if the two templates are equivalent.
5222 static bool isSameTemplate(TemplateDecl *T1, TemplateDecl *T2) {
5223   if (T1 == T2)
5224     return true;
5225 
5226   if (!T1 || !T2)
5227     return false;
5228 
5229   return T1->getCanonicalDecl() == T2->getCanonicalDecl();
5230 }
5231 
5232 /// Retrieve the most specialized of the given function template
5233 /// specializations.
5234 ///
5235 /// \param SpecBegin the start iterator of the function template
5236 /// specializations that we will be comparing.
5237 ///
5238 /// \param SpecEnd the end iterator of the function template
5239 /// specializations, paired with \p SpecBegin.
5240 ///
5241 /// \param Loc the location where the ambiguity or no-specializations
5242 /// diagnostic should occur.
5243 ///
5244 /// \param NoneDiag partial diagnostic used to diagnose cases where there are
5245 /// no matching candidates.
5246 ///
5247 /// \param AmbigDiag partial diagnostic used to diagnose an ambiguity, if one
5248 /// occurs.
5249 ///
5250 /// \param CandidateDiag partial diagnostic used for each function template
5251 /// specialization that is a candidate in the ambiguous ordering. One parameter
5252 /// in this diagnostic should be unbound, which will correspond to the string
5253 /// describing the template arguments for the function template specialization.
5254 ///
5255 /// \returns the most specialized function template specialization, if
5256 /// found. Otherwise, returns SpecEnd.
5257 UnresolvedSetIterator Sema::getMostSpecialized(
5258     UnresolvedSetIterator SpecBegin, UnresolvedSetIterator SpecEnd,
5259     TemplateSpecCandidateSet &FailedCandidates,
5260     SourceLocation Loc, const PartialDiagnostic &NoneDiag,
5261     const PartialDiagnostic &AmbigDiag, const PartialDiagnostic &CandidateDiag,
5262     bool Complain, QualType TargetType) {
5263   if (SpecBegin == SpecEnd) {
5264     if (Complain) {
5265       Diag(Loc, NoneDiag);
5266       FailedCandidates.NoteCandidates(*this, Loc);
5267     }
5268     return SpecEnd;
5269   }
5270 
5271   if (SpecBegin + 1 == SpecEnd)
5272     return SpecBegin;
5273 
5274   // Find the function template that is better than all of the templates it
5275   // has been compared to.
5276   UnresolvedSetIterator Best = SpecBegin;
5277   FunctionTemplateDecl *BestTemplate
5278     = cast<FunctionDecl>(*Best)->getPrimaryTemplate();
5279   assert(BestTemplate && "Not a function template specialization?");
5280   for (UnresolvedSetIterator I = SpecBegin + 1; I != SpecEnd; ++I) {
5281     FunctionTemplateDecl *Challenger
5282       = cast<FunctionDecl>(*I)->getPrimaryTemplate();
5283     assert(Challenger && "Not a function template specialization?");
5284     if (isSameTemplate(getMoreSpecializedTemplate(BestTemplate, Challenger,
5285                                                   Loc, TPOC_Other, 0, 0),
5286                        Challenger)) {
5287       Best = I;
5288       BestTemplate = Challenger;
5289     }
5290   }
5291 
5292   // Make sure that the "best" function template is more specialized than all
5293   // of the others.
5294   bool Ambiguous = false;
5295   for (UnresolvedSetIterator I = SpecBegin; I != SpecEnd; ++I) {
5296     FunctionTemplateDecl *Challenger
5297       = cast<FunctionDecl>(*I)->getPrimaryTemplate();
5298     if (I != Best &&
5299         !isSameTemplate(getMoreSpecializedTemplate(BestTemplate, Challenger,
5300                                                    Loc, TPOC_Other, 0, 0),
5301                         BestTemplate)) {
5302       Ambiguous = true;
5303       break;
5304     }
5305   }
5306 
5307   if (!Ambiguous) {
5308     // We found an answer. Return it.
5309     return Best;
5310   }
5311 
5312   // Diagnose the ambiguity.
5313   if (Complain) {
5314     Diag(Loc, AmbigDiag);
5315 
5316     // FIXME: Can we order the candidates in some sane way?
5317     for (UnresolvedSetIterator I = SpecBegin; I != SpecEnd; ++I) {
5318       PartialDiagnostic PD = CandidateDiag;
5319       const auto *FD = cast<FunctionDecl>(*I);
5320       PD << FD << getTemplateArgumentBindingsText(
5321                       FD->getPrimaryTemplate()->getTemplateParameters(),
5322                       *FD->getTemplateSpecializationArgs());
5323       if (!TargetType.isNull())
5324         HandleFunctionTypeMismatch(PD, FD->getType(), TargetType);
5325       Diag((*I)->getLocation(), PD);
5326     }
5327   }
5328 
5329   return SpecEnd;
5330 }
5331 
5332 /// Determine whether one partial specialization, P1, is at least as
5333 /// specialized than another, P2.
5334 ///
5335 /// \tparam TemplateLikeDecl The kind of P2, which must be a
5336 /// TemplateDecl or {Class,Var}TemplatePartialSpecializationDecl.
5337 /// \param T1 The injected-class-name of P1 (faked for a variable template).
5338 /// \param T2 The injected-class-name of P2 (faked for a variable template).
5339 template<typename TemplateLikeDecl>
5340 static bool isAtLeastAsSpecializedAs(Sema &S, QualType T1, QualType T2,
5341                                      TemplateLikeDecl *P2,
5342                                      TemplateDeductionInfo &Info) {
5343   // C++ [temp.class.order]p1:
5344   //   For two class template partial specializations, the first is at least as
5345   //   specialized as the second if, given the following rewrite to two
5346   //   function templates, the first function template is at least as
5347   //   specialized as the second according to the ordering rules for function
5348   //   templates (14.6.6.2):
5349   //     - the first function template has the same template parameters as the
5350   //       first partial specialization and has a single function parameter
5351   //       whose type is a class template specialization with the template
5352   //       arguments of the first partial specialization, and
5353   //     - the second function template has the same template parameters as the
5354   //       second partial specialization and has a single function parameter
5355   //       whose type is a class template specialization with the template
5356   //       arguments of the second partial specialization.
5357   //
5358   // Rather than synthesize function templates, we merely perform the
5359   // equivalent partial ordering by performing deduction directly on
5360   // the template arguments of the class template partial
5361   // specializations. This computation is slightly simpler than the
5362   // general problem of function template partial ordering, because
5363   // class template partial specializations are more constrained. We
5364   // know that every template parameter is deducible from the class
5365   // template partial specialization's template arguments, for
5366   // example.
5367   SmallVector<DeducedTemplateArgument, 4> Deduced;
5368 
5369   // Determine whether P1 is at least as specialized as P2.
5370   Deduced.resize(P2->getTemplateParameters()->size());
5371   if (DeduceTemplateArgumentsByTypeMatch(S, P2->getTemplateParameters(),
5372                                          T2, T1, Info, Deduced, TDF_None,
5373                                          /*PartialOrdering=*/true))
5374     return false;
5375 
5376   SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(),
5377                                                Deduced.end());
5378   Sema::InstantiatingTemplate Inst(S, Info.getLocation(), P2, DeducedArgs,
5379                                    Info);
5380   auto *TST1 = T1->castAs<TemplateSpecializationType>();
5381   if (FinishTemplateArgumentDeduction(
5382           S, P2, /*IsPartialOrdering=*/true,
5383           TemplateArgumentList(TemplateArgumentList::OnStack,
5384                                TST1->template_arguments()),
5385           Deduced, Info))
5386     return false;
5387 
5388   return true;
5389 }
5390 
5391 /// Returns the more specialized class template partial specialization
5392 /// according to the rules of partial ordering of class template partial
5393 /// specializations (C++ [temp.class.order]).
5394 ///
5395 /// \param PS1 the first class template partial specialization
5396 ///
5397 /// \param PS2 the second class template partial specialization
5398 ///
5399 /// \returns the more specialized class template partial specialization. If
5400 /// neither partial specialization is more specialized, returns NULL.
5401 ClassTemplatePartialSpecializationDecl *
5402 Sema::getMoreSpecializedPartialSpecialization(
5403                                   ClassTemplatePartialSpecializationDecl *PS1,
5404                                   ClassTemplatePartialSpecializationDecl *PS2,
5405                                               SourceLocation Loc) {
5406   QualType PT1 = PS1->getInjectedSpecializationType();
5407   QualType PT2 = PS2->getInjectedSpecializationType();
5408 
5409   TemplateDeductionInfo Info(Loc);
5410   bool Better1 = isAtLeastAsSpecializedAs(*this, PT1, PT2, PS2, Info);
5411   bool Better2 = isAtLeastAsSpecializedAs(*this, PT2, PT1, PS1, Info);
5412 
5413   if (!Better1 && !Better2)
5414       return nullptr;
5415   if (Better1 && Better2) {
5416     llvm::SmallVector<const Expr *, 3> AC1, AC2;
5417     PS1->getAssociatedConstraints(AC1);
5418     PS2->getAssociatedConstraints(AC2);
5419     bool AtLeastAsConstrained1, AtLeastAsConstrained2;
5420     if (IsAtLeastAsConstrained(PS1, AC1, PS2, AC2, AtLeastAsConstrained1))
5421       return nullptr;
5422     if (IsAtLeastAsConstrained(PS2, AC2, PS1, AC1, AtLeastAsConstrained2))
5423       return nullptr;
5424     if (AtLeastAsConstrained1 == AtLeastAsConstrained2)
5425       return nullptr;
5426     return AtLeastAsConstrained1 ? PS1 : PS2;
5427   }
5428 
5429   return Better1 ? PS1 : PS2;
5430 }
5431 
5432 bool Sema::isMoreSpecializedThanPrimary(
5433     ClassTemplatePartialSpecializationDecl *Spec, TemplateDeductionInfo &Info) {
5434   ClassTemplateDecl *Primary = Spec->getSpecializedTemplate();
5435   QualType PrimaryT = Primary->getInjectedClassNameSpecialization();
5436   QualType PartialT = Spec->getInjectedSpecializationType();
5437   if (!isAtLeastAsSpecializedAs(*this, PartialT, PrimaryT, Primary, Info))
5438     return false;
5439   if (!isAtLeastAsSpecializedAs(*this, PrimaryT, PartialT, Spec, Info))
5440     return true;
5441   Info.clearSFINAEDiagnostic();
5442   llvm::SmallVector<const Expr *, 3> PrimaryAC, SpecAC;
5443   Primary->getAssociatedConstraints(PrimaryAC);
5444   Spec->getAssociatedConstraints(SpecAC);
5445   bool AtLeastAsConstrainedPrimary, AtLeastAsConstrainedSpec;
5446   if (IsAtLeastAsConstrained(Spec, SpecAC, Primary, PrimaryAC,
5447                              AtLeastAsConstrainedSpec))
5448     return false;
5449   if (!AtLeastAsConstrainedSpec)
5450     return false;
5451   if (IsAtLeastAsConstrained(Primary, PrimaryAC, Spec, SpecAC,
5452                              AtLeastAsConstrainedPrimary))
5453     return false;
5454   return !AtLeastAsConstrainedPrimary;
5455 }
5456 
5457 VarTemplatePartialSpecializationDecl *
5458 Sema::getMoreSpecializedPartialSpecialization(
5459     VarTemplatePartialSpecializationDecl *PS1,
5460     VarTemplatePartialSpecializationDecl *PS2, SourceLocation Loc) {
5461   // Pretend the variable template specializations are class template
5462   // specializations and form a fake injected class name type for comparison.
5463   assert(PS1->getSpecializedTemplate() == PS2->getSpecializedTemplate() &&
5464          "the partial specializations being compared should specialize"
5465          " the same template.");
5466   TemplateName Name(PS1->getSpecializedTemplate());
5467   TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
5468   QualType PT1 = Context.getTemplateSpecializationType(
5469       CanonTemplate, PS1->getTemplateArgs().asArray());
5470   QualType PT2 = Context.getTemplateSpecializationType(
5471       CanonTemplate, PS2->getTemplateArgs().asArray());
5472 
5473   TemplateDeductionInfo Info(Loc);
5474   bool Better1 = isAtLeastAsSpecializedAs(*this, PT1, PT2, PS2, Info);
5475   bool Better2 = isAtLeastAsSpecializedAs(*this, PT2, PT1, PS1, Info);
5476 
5477   if (!Better1 && !Better2)
5478     return nullptr;
5479   if (Better1 && Better2) {
5480     llvm::SmallVector<const Expr *, 3> AC1, AC2;
5481     PS1->getAssociatedConstraints(AC1);
5482     PS2->getAssociatedConstraints(AC2);
5483     bool AtLeastAsConstrained1, AtLeastAsConstrained2;
5484     if (IsAtLeastAsConstrained(PS1, AC1, PS2, AC2, AtLeastAsConstrained1))
5485       return nullptr;
5486     if (IsAtLeastAsConstrained(PS2, AC2, PS1, AC1, AtLeastAsConstrained2))
5487       return nullptr;
5488     if (AtLeastAsConstrained1 == AtLeastAsConstrained2)
5489       return nullptr;
5490     return AtLeastAsConstrained1 ? PS1 : PS2;
5491   }
5492 
5493   return Better1 ? PS1 : PS2;
5494 }
5495 
5496 bool Sema::isMoreSpecializedThanPrimary(
5497     VarTemplatePartialSpecializationDecl *Spec, TemplateDeductionInfo &Info) {
5498   TemplateDecl *Primary = Spec->getSpecializedTemplate();
5499   // FIXME: Cache the injected template arguments rather than recomputing
5500   // them for each partial specialization.
5501   SmallVector<TemplateArgument, 8> PrimaryArgs;
5502   Context.getInjectedTemplateArgs(Primary->getTemplateParameters(),
5503                                   PrimaryArgs);
5504 
5505   TemplateName CanonTemplate =
5506       Context.getCanonicalTemplateName(TemplateName(Primary));
5507   QualType PrimaryT = Context.getTemplateSpecializationType(
5508       CanonTemplate, PrimaryArgs);
5509   QualType PartialT = Context.getTemplateSpecializationType(
5510       CanonTemplate, Spec->getTemplateArgs().asArray());
5511 
5512   if (!isAtLeastAsSpecializedAs(*this, PartialT, PrimaryT, Primary, Info))
5513     return false;
5514   if (!isAtLeastAsSpecializedAs(*this, PrimaryT, PartialT, Spec, Info))
5515     return true;
5516   Info.clearSFINAEDiagnostic();
5517   llvm::SmallVector<const Expr *, 3> PrimaryAC, SpecAC;
5518   Primary->getAssociatedConstraints(PrimaryAC);
5519   Spec->getAssociatedConstraints(SpecAC);
5520   bool AtLeastAsConstrainedPrimary, AtLeastAsConstrainedSpec;
5521   if (IsAtLeastAsConstrained(Spec, SpecAC, Primary, PrimaryAC,
5522                              AtLeastAsConstrainedSpec))
5523     return false;
5524   if (!AtLeastAsConstrainedSpec)
5525     return false;
5526   if (IsAtLeastAsConstrained(Primary, PrimaryAC, Spec, SpecAC,
5527                              AtLeastAsConstrainedPrimary))
5528     return false;
5529   return !AtLeastAsConstrainedPrimary;
5530 }
5531 
5532 bool Sema::isTemplateTemplateParameterAtLeastAsSpecializedAs(
5533      TemplateParameterList *P, TemplateDecl *AArg, SourceLocation Loc) {
5534   // C++1z [temp.arg.template]p4: (DR 150)
5535   //   A template template-parameter P is at least as specialized as a
5536   //   template template-argument A if, given the following rewrite to two
5537   //   function templates...
5538 
5539   // Rather than synthesize function templates, we merely perform the
5540   // equivalent partial ordering by performing deduction directly on
5541   // the template parameter lists of the template template parameters.
5542   //
5543   //   Given an invented class template X with the template parameter list of
5544   //   A (including default arguments):
5545   TemplateName X = Context.getCanonicalTemplateName(TemplateName(AArg));
5546   TemplateParameterList *A = AArg->getTemplateParameters();
5547 
5548   //    - Each function template has a single function parameter whose type is
5549   //      a specialization of X with template arguments corresponding to the
5550   //      template parameters from the respective function template
5551   SmallVector<TemplateArgument, 8> AArgs;
5552   Context.getInjectedTemplateArgs(A, AArgs);
5553 
5554   // Check P's arguments against A's parameter list. This will fill in default
5555   // template arguments as needed. AArgs are already correct by construction.
5556   // We can't just use CheckTemplateIdType because that will expand alias
5557   // templates.
5558   SmallVector<TemplateArgument, 4> PArgs;
5559   {
5560     SFINAETrap Trap(*this);
5561 
5562     Context.getInjectedTemplateArgs(P, PArgs);
5563     TemplateArgumentListInfo PArgList(P->getLAngleLoc(),
5564                                       P->getRAngleLoc());
5565     for (unsigned I = 0, N = P->size(); I != N; ++I) {
5566       // Unwrap packs that getInjectedTemplateArgs wrapped around pack
5567       // expansions, to form an "as written" argument list.
5568       TemplateArgument Arg = PArgs[I];
5569       if (Arg.getKind() == TemplateArgument::Pack) {
5570         assert(Arg.pack_size() == 1 && Arg.pack_begin()->isPackExpansion());
5571         Arg = *Arg.pack_begin();
5572       }
5573       PArgList.addArgument(getTrivialTemplateArgumentLoc(
5574           Arg, QualType(), P->getParam(I)->getLocation()));
5575     }
5576     PArgs.clear();
5577 
5578     // C++1z [temp.arg.template]p3:
5579     //   If the rewrite produces an invalid type, then P is not at least as
5580     //   specialized as A.
5581     if (CheckTemplateArgumentList(AArg, Loc, PArgList, false, PArgs) ||
5582         Trap.hasErrorOccurred())
5583       return false;
5584   }
5585 
5586   QualType AType = Context.getTemplateSpecializationType(X, AArgs);
5587   QualType PType = Context.getTemplateSpecializationType(X, PArgs);
5588 
5589   //   ... the function template corresponding to P is at least as specialized
5590   //   as the function template corresponding to A according to the partial
5591   //   ordering rules for function templates.
5592   TemplateDeductionInfo Info(Loc, A->getDepth());
5593   return isAtLeastAsSpecializedAs(*this, PType, AType, AArg, Info);
5594 }
5595 
5596 namespace {
5597 struct MarkUsedTemplateParameterVisitor :
5598     RecursiveASTVisitor<MarkUsedTemplateParameterVisitor> {
5599   llvm::SmallBitVector &Used;
5600   unsigned Depth;
5601 
5602   MarkUsedTemplateParameterVisitor(llvm::SmallBitVector &Used,
5603                                    unsigned Depth)
5604       : Used(Used), Depth(Depth) { }
5605 
5606   bool VisitTemplateTypeParmType(TemplateTypeParmType *T) {
5607     if (T->getDepth() == Depth)
5608       Used[T->getIndex()] = true;
5609     return true;
5610   }
5611 
5612   bool TraverseTemplateName(TemplateName Template) {
5613     if (auto *TTP =
5614             dyn_cast<TemplateTemplateParmDecl>(Template.getAsTemplateDecl()))
5615       if (TTP->getDepth() == Depth)
5616         Used[TTP->getIndex()] = true;
5617     RecursiveASTVisitor<MarkUsedTemplateParameterVisitor>::
5618         TraverseTemplateName(Template);
5619     return true;
5620   }
5621 
5622   bool VisitDeclRefExpr(DeclRefExpr *E) {
5623     if (auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(E->getDecl()))
5624       if (NTTP->getDepth() == Depth)
5625         Used[NTTP->getIndex()] = true;
5626     return true;
5627   }
5628 };
5629 }
5630 
5631 /// Mark the template parameters that are used by the given
5632 /// expression.
5633 static void
5634 MarkUsedTemplateParameters(ASTContext &Ctx,
5635                            const Expr *E,
5636                            bool OnlyDeduced,
5637                            unsigned Depth,
5638                            llvm::SmallBitVector &Used) {
5639   if (!OnlyDeduced) {
5640     MarkUsedTemplateParameterVisitor(Used, Depth)
5641         .TraverseStmt(const_cast<Expr *>(E));
5642     return;
5643   }
5644 
5645   // We can deduce from a pack expansion.
5646   if (const PackExpansionExpr *Expansion = dyn_cast<PackExpansionExpr>(E))
5647     E = Expansion->getPattern();
5648 
5649   // Skip through any implicit casts we added while type-checking, and any
5650   // substitutions performed by template alias expansion.
5651   while (true) {
5652     if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
5653       E = ICE->getSubExpr();
5654     else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(E))
5655       E = CE->getSubExpr();
5656     else if (const SubstNonTypeTemplateParmExpr *Subst =
5657                dyn_cast<SubstNonTypeTemplateParmExpr>(E))
5658       E = Subst->getReplacement();
5659     else
5660       break;
5661   }
5662 
5663   const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
5664   if (!DRE)
5665     return;
5666 
5667   const NonTypeTemplateParmDecl *NTTP
5668     = dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
5669   if (!NTTP)
5670     return;
5671 
5672   if (NTTP->getDepth() == Depth)
5673     Used[NTTP->getIndex()] = true;
5674 
5675   // In C++17 mode, additional arguments may be deduced from the type of a
5676   // non-type argument.
5677   if (Ctx.getLangOpts().CPlusPlus17)
5678     MarkUsedTemplateParameters(Ctx, NTTP->getType(), OnlyDeduced, Depth, Used);
5679 }
5680 
5681 /// Mark the template parameters that are used by the given
5682 /// nested name specifier.
5683 static void
5684 MarkUsedTemplateParameters(ASTContext &Ctx,
5685                            NestedNameSpecifier *NNS,
5686                            bool OnlyDeduced,
5687                            unsigned Depth,
5688                            llvm::SmallBitVector &Used) {
5689   if (!NNS)
5690     return;
5691 
5692   MarkUsedTemplateParameters(Ctx, NNS->getPrefix(), OnlyDeduced, Depth,
5693                              Used);
5694   MarkUsedTemplateParameters(Ctx, QualType(NNS->getAsType(), 0),
5695                              OnlyDeduced, Depth, Used);
5696 }
5697 
5698 /// Mark the template parameters that are used by the given
5699 /// template name.
5700 static void
5701 MarkUsedTemplateParameters(ASTContext &Ctx,
5702                            TemplateName Name,
5703                            bool OnlyDeduced,
5704                            unsigned Depth,
5705                            llvm::SmallBitVector &Used) {
5706   if (TemplateDecl *Template = Name.getAsTemplateDecl()) {
5707     if (TemplateTemplateParmDecl *TTP
5708           = dyn_cast<TemplateTemplateParmDecl>(Template)) {
5709       if (TTP->getDepth() == Depth)
5710         Used[TTP->getIndex()] = true;
5711     }
5712     return;
5713   }
5714 
5715   if (QualifiedTemplateName *QTN = Name.getAsQualifiedTemplateName())
5716     MarkUsedTemplateParameters(Ctx, QTN->getQualifier(), OnlyDeduced,
5717                                Depth, Used);
5718   if (DependentTemplateName *DTN = Name.getAsDependentTemplateName())
5719     MarkUsedTemplateParameters(Ctx, DTN->getQualifier(), OnlyDeduced,
5720                                Depth, Used);
5721 }
5722 
5723 /// Mark the template parameters that are used by the given
5724 /// type.
5725 static void
5726 MarkUsedTemplateParameters(ASTContext &Ctx, QualType T,
5727                            bool OnlyDeduced,
5728                            unsigned Depth,
5729                            llvm::SmallBitVector &Used) {
5730   if (T.isNull())
5731     return;
5732 
5733   // Non-dependent types have nothing deducible
5734   if (!T->isDependentType())
5735     return;
5736 
5737   T = Ctx.getCanonicalType(T);
5738   switch (T->getTypeClass()) {
5739   case Type::Pointer:
5740     MarkUsedTemplateParameters(Ctx,
5741                                cast<PointerType>(T)->getPointeeType(),
5742                                OnlyDeduced,
5743                                Depth,
5744                                Used);
5745     break;
5746 
5747   case Type::BlockPointer:
5748     MarkUsedTemplateParameters(Ctx,
5749                                cast<BlockPointerType>(T)->getPointeeType(),
5750                                OnlyDeduced,
5751                                Depth,
5752                                Used);
5753     break;
5754 
5755   case Type::LValueReference:
5756   case Type::RValueReference:
5757     MarkUsedTemplateParameters(Ctx,
5758                                cast<ReferenceType>(T)->getPointeeType(),
5759                                OnlyDeduced,
5760                                Depth,
5761                                Used);
5762     break;
5763 
5764   case Type::MemberPointer: {
5765     const MemberPointerType *MemPtr = cast<MemberPointerType>(T.getTypePtr());
5766     MarkUsedTemplateParameters(Ctx, MemPtr->getPointeeType(), OnlyDeduced,
5767                                Depth, Used);
5768     MarkUsedTemplateParameters(Ctx, QualType(MemPtr->getClass(), 0),
5769                                OnlyDeduced, Depth, Used);
5770     break;
5771   }
5772 
5773   case Type::DependentSizedArray:
5774     MarkUsedTemplateParameters(Ctx,
5775                                cast<DependentSizedArrayType>(T)->getSizeExpr(),
5776                                OnlyDeduced, Depth, Used);
5777     // Fall through to check the element type
5778     LLVM_FALLTHROUGH;
5779 
5780   case Type::ConstantArray:
5781   case Type::IncompleteArray:
5782     MarkUsedTemplateParameters(Ctx,
5783                                cast<ArrayType>(T)->getElementType(),
5784                                OnlyDeduced, Depth, Used);
5785     break;
5786 
5787   case Type::Vector:
5788   case Type::ExtVector:
5789     MarkUsedTemplateParameters(Ctx,
5790                                cast<VectorType>(T)->getElementType(),
5791                                OnlyDeduced, Depth, Used);
5792     break;
5793 
5794   case Type::DependentVector: {
5795     const auto *VecType = cast<DependentVectorType>(T);
5796     MarkUsedTemplateParameters(Ctx, VecType->getElementType(), OnlyDeduced,
5797                                Depth, Used);
5798     MarkUsedTemplateParameters(Ctx, VecType->getSizeExpr(), OnlyDeduced, Depth,
5799                                Used);
5800     break;
5801   }
5802   case Type::DependentSizedExtVector: {
5803     const DependentSizedExtVectorType *VecType
5804       = cast<DependentSizedExtVectorType>(T);
5805     MarkUsedTemplateParameters(Ctx, VecType->getElementType(), OnlyDeduced,
5806                                Depth, Used);
5807     MarkUsedTemplateParameters(Ctx, VecType->getSizeExpr(), OnlyDeduced,
5808                                Depth, Used);
5809     break;
5810   }
5811 
5812   case Type::DependentAddressSpace: {
5813     const DependentAddressSpaceType *DependentASType =
5814         cast<DependentAddressSpaceType>(T);
5815     MarkUsedTemplateParameters(Ctx, DependentASType->getPointeeType(),
5816                                OnlyDeduced, Depth, Used);
5817     MarkUsedTemplateParameters(Ctx,
5818                                DependentASType->getAddrSpaceExpr(),
5819                                OnlyDeduced, Depth, Used);
5820     break;
5821   }
5822 
5823   case Type::ConstantMatrix: {
5824     const ConstantMatrixType *MatType = cast<ConstantMatrixType>(T);
5825     MarkUsedTemplateParameters(Ctx, MatType->getElementType(), OnlyDeduced,
5826                                Depth, Used);
5827     break;
5828   }
5829 
5830   case Type::DependentSizedMatrix: {
5831     const DependentSizedMatrixType *MatType = cast<DependentSizedMatrixType>(T);
5832     MarkUsedTemplateParameters(Ctx, MatType->getElementType(), OnlyDeduced,
5833                                Depth, Used);
5834     MarkUsedTemplateParameters(Ctx, MatType->getRowExpr(), OnlyDeduced, Depth,
5835                                Used);
5836     MarkUsedTemplateParameters(Ctx, MatType->getColumnExpr(), OnlyDeduced,
5837                                Depth, Used);
5838     break;
5839   }
5840 
5841   case Type::FunctionProto: {
5842     const FunctionProtoType *Proto = cast<FunctionProtoType>(T);
5843     MarkUsedTemplateParameters(Ctx, Proto->getReturnType(), OnlyDeduced, Depth,
5844                                Used);
5845     for (unsigned I = 0, N = Proto->getNumParams(); I != N; ++I) {
5846       // C++17 [temp.deduct.type]p5:
5847       //   The non-deduced contexts are: [...]
5848       //   -- A function parameter pack that does not occur at the end of the
5849       //      parameter-declaration-list.
5850       if (!OnlyDeduced || I + 1 == N ||
5851           !Proto->getParamType(I)->getAs<PackExpansionType>()) {
5852         MarkUsedTemplateParameters(Ctx, Proto->getParamType(I), OnlyDeduced,
5853                                    Depth, Used);
5854       } else {
5855         // FIXME: C++17 [temp.deduct.call]p1:
5856         //   When a function parameter pack appears in a non-deduced context,
5857         //   the type of that pack is never deduced.
5858         //
5859         // We should also track a set of "never deduced" parameters, and
5860         // subtract that from the list of deduced parameters after marking.
5861       }
5862     }
5863     if (auto *E = Proto->getNoexceptExpr())
5864       MarkUsedTemplateParameters(Ctx, E, OnlyDeduced, Depth, Used);
5865     break;
5866   }
5867 
5868   case Type::TemplateTypeParm: {
5869     const TemplateTypeParmType *TTP = cast<TemplateTypeParmType>(T);
5870     if (TTP->getDepth() == Depth)
5871       Used[TTP->getIndex()] = true;
5872     break;
5873   }
5874 
5875   case Type::SubstTemplateTypeParmPack: {
5876     const SubstTemplateTypeParmPackType *Subst
5877       = cast<SubstTemplateTypeParmPackType>(T);
5878     MarkUsedTemplateParameters(Ctx,
5879                                QualType(Subst->getReplacedParameter(), 0),
5880                                OnlyDeduced, Depth, Used);
5881     MarkUsedTemplateParameters(Ctx, Subst->getArgumentPack(),
5882                                OnlyDeduced, Depth, Used);
5883     break;
5884   }
5885 
5886   case Type::InjectedClassName:
5887     T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
5888     LLVM_FALLTHROUGH;
5889 
5890   case Type::TemplateSpecialization: {
5891     const TemplateSpecializationType *Spec
5892       = cast<TemplateSpecializationType>(T);
5893     MarkUsedTemplateParameters(Ctx, Spec->getTemplateName(), OnlyDeduced,
5894                                Depth, Used);
5895 
5896     // C++0x [temp.deduct.type]p9:
5897     //   If the template argument list of P contains a pack expansion that is
5898     //   not the last template argument, the entire template argument list is a
5899     //   non-deduced context.
5900     if (OnlyDeduced &&
5901         hasPackExpansionBeforeEnd(Spec->template_arguments()))
5902       break;
5903 
5904     for (unsigned I = 0, N = Spec->getNumArgs(); I != N; ++I)
5905       MarkUsedTemplateParameters(Ctx, Spec->getArg(I), OnlyDeduced, Depth,
5906                                  Used);
5907     break;
5908   }
5909 
5910   case Type::Complex:
5911     if (!OnlyDeduced)
5912       MarkUsedTemplateParameters(Ctx,
5913                                  cast<ComplexType>(T)->getElementType(),
5914                                  OnlyDeduced, Depth, Used);
5915     break;
5916 
5917   case Type::Atomic:
5918     if (!OnlyDeduced)
5919       MarkUsedTemplateParameters(Ctx,
5920                                  cast<AtomicType>(T)->getValueType(),
5921                                  OnlyDeduced, Depth, Used);
5922     break;
5923 
5924   case Type::DependentName:
5925     if (!OnlyDeduced)
5926       MarkUsedTemplateParameters(Ctx,
5927                                  cast<DependentNameType>(T)->getQualifier(),
5928                                  OnlyDeduced, Depth, Used);
5929     break;
5930 
5931   case Type::DependentTemplateSpecialization: {
5932     // C++14 [temp.deduct.type]p5:
5933     //   The non-deduced contexts are:
5934     //     -- The nested-name-specifier of a type that was specified using a
5935     //        qualified-id
5936     //
5937     // C++14 [temp.deduct.type]p6:
5938     //   When a type name is specified in a way that includes a non-deduced
5939     //   context, all of the types that comprise that type name are also
5940     //   non-deduced.
5941     if (OnlyDeduced)
5942       break;
5943 
5944     const DependentTemplateSpecializationType *Spec
5945       = cast<DependentTemplateSpecializationType>(T);
5946 
5947     MarkUsedTemplateParameters(Ctx, Spec->getQualifier(),
5948                                OnlyDeduced, Depth, Used);
5949 
5950     for (unsigned I = 0, N = Spec->getNumArgs(); I != N; ++I)
5951       MarkUsedTemplateParameters(Ctx, Spec->getArg(I), OnlyDeduced, Depth,
5952                                  Used);
5953     break;
5954   }
5955 
5956   case Type::TypeOf:
5957     if (!OnlyDeduced)
5958       MarkUsedTemplateParameters(Ctx,
5959                                  cast<TypeOfType>(T)->getUnderlyingType(),
5960                                  OnlyDeduced, Depth, Used);
5961     break;
5962 
5963   case Type::TypeOfExpr:
5964     if (!OnlyDeduced)
5965       MarkUsedTemplateParameters(Ctx,
5966                                  cast<TypeOfExprType>(T)->getUnderlyingExpr(),
5967                                  OnlyDeduced, Depth, Used);
5968     break;
5969 
5970   case Type::Decltype:
5971     if (!OnlyDeduced)
5972       MarkUsedTemplateParameters(Ctx,
5973                                  cast<DecltypeType>(T)->getUnderlyingExpr(),
5974                                  OnlyDeduced, Depth, Used);
5975     break;
5976 
5977   case Type::UnaryTransform:
5978     if (!OnlyDeduced)
5979       MarkUsedTemplateParameters(Ctx,
5980                                  cast<UnaryTransformType>(T)->getUnderlyingType(),
5981                                  OnlyDeduced, Depth, Used);
5982     break;
5983 
5984   case Type::PackExpansion:
5985     MarkUsedTemplateParameters(Ctx,
5986                                cast<PackExpansionType>(T)->getPattern(),
5987                                OnlyDeduced, Depth, Used);
5988     break;
5989 
5990   case Type::Auto:
5991   case Type::DeducedTemplateSpecialization:
5992     MarkUsedTemplateParameters(Ctx,
5993                                cast<DeducedType>(T)->getDeducedType(),
5994                                OnlyDeduced, Depth, Used);
5995     break;
5996   case Type::DependentExtInt:
5997     MarkUsedTemplateParameters(Ctx,
5998                                cast<DependentExtIntType>(T)->getNumBitsExpr(),
5999                                OnlyDeduced, Depth, Used);
6000     break;
6001 
6002   // None of these types have any template parameters in them.
6003   case Type::Builtin:
6004   case Type::VariableArray:
6005   case Type::FunctionNoProto:
6006   case Type::Record:
6007   case Type::Enum:
6008   case Type::ObjCInterface:
6009   case Type::ObjCObject:
6010   case Type::ObjCObjectPointer:
6011   case Type::UnresolvedUsing:
6012   case Type::Pipe:
6013   case Type::ExtInt:
6014 #define TYPE(Class, Base)
6015 #define ABSTRACT_TYPE(Class, Base)
6016 #define DEPENDENT_TYPE(Class, Base)
6017 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
6018 #include "clang/AST/TypeNodes.inc"
6019     break;
6020   }
6021 }
6022 
6023 /// Mark the template parameters that are used by this
6024 /// template argument.
6025 static void
6026 MarkUsedTemplateParameters(ASTContext &Ctx,
6027                            const TemplateArgument &TemplateArg,
6028                            bool OnlyDeduced,
6029                            unsigned Depth,
6030                            llvm::SmallBitVector &Used) {
6031   switch (TemplateArg.getKind()) {
6032   case TemplateArgument::Null:
6033   case TemplateArgument::Integral:
6034   case TemplateArgument::Declaration:
6035     break;
6036 
6037   case TemplateArgument::NullPtr:
6038     MarkUsedTemplateParameters(Ctx, TemplateArg.getNullPtrType(), OnlyDeduced,
6039                                Depth, Used);
6040     break;
6041 
6042   case TemplateArgument::Type:
6043     MarkUsedTemplateParameters(Ctx, TemplateArg.getAsType(), OnlyDeduced,
6044                                Depth, Used);
6045     break;
6046 
6047   case TemplateArgument::Template:
6048   case TemplateArgument::TemplateExpansion:
6049     MarkUsedTemplateParameters(Ctx,
6050                                TemplateArg.getAsTemplateOrTemplatePattern(),
6051                                OnlyDeduced, Depth, Used);
6052     break;
6053 
6054   case TemplateArgument::Expression:
6055     MarkUsedTemplateParameters(Ctx, TemplateArg.getAsExpr(), OnlyDeduced,
6056                                Depth, Used);
6057     break;
6058 
6059   case TemplateArgument::Pack:
6060     for (const auto &P : TemplateArg.pack_elements())
6061       MarkUsedTemplateParameters(Ctx, P, OnlyDeduced, Depth, Used);
6062     break;
6063   }
6064 }
6065 
6066 /// Mark which template parameters are used in a given expression.
6067 ///
6068 /// \param E the expression from which template parameters will be deduced.
6069 ///
6070 /// \param Used a bit vector whose elements will be set to \c true
6071 /// to indicate when the corresponding template parameter will be
6072 /// deduced.
6073 void
6074 Sema::MarkUsedTemplateParameters(const Expr *E, bool OnlyDeduced,
6075                                  unsigned Depth,
6076                                  llvm::SmallBitVector &Used) {
6077   ::MarkUsedTemplateParameters(Context, E, OnlyDeduced, Depth, Used);
6078 }
6079 
6080 /// Mark which template parameters can be deduced from a given
6081 /// template argument list.
6082 ///
6083 /// \param TemplateArgs the template argument list from which template
6084 /// parameters will be deduced.
6085 ///
6086 /// \param Used a bit vector whose elements will be set to \c true
6087 /// to indicate when the corresponding template parameter will be
6088 /// deduced.
6089 void
6090 Sema::MarkUsedTemplateParameters(const TemplateArgumentList &TemplateArgs,
6091                                  bool OnlyDeduced, unsigned Depth,
6092                                  llvm::SmallBitVector &Used) {
6093   // C++0x [temp.deduct.type]p9:
6094   //   If the template argument list of P contains a pack expansion that is not
6095   //   the last template argument, the entire template argument list is a
6096   //   non-deduced context.
6097   if (OnlyDeduced &&
6098       hasPackExpansionBeforeEnd(TemplateArgs.asArray()))
6099     return;
6100 
6101   for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
6102     ::MarkUsedTemplateParameters(Context, TemplateArgs[I], OnlyDeduced,
6103                                  Depth, Used);
6104 }
6105 
6106 /// Marks all of the template parameters that will be deduced by a
6107 /// call to the given function template.
6108 void Sema::MarkDeducedTemplateParameters(
6109     ASTContext &Ctx, const FunctionTemplateDecl *FunctionTemplate,
6110     llvm::SmallBitVector &Deduced) {
6111   TemplateParameterList *TemplateParams
6112     = FunctionTemplate->getTemplateParameters();
6113   Deduced.clear();
6114   Deduced.resize(TemplateParams->size());
6115 
6116   FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
6117   for (unsigned I = 0, N = Function->getNumParams(); I != N; ++I)
6118     ::MarkUsedTemplateParameters(Ctx, Function->getParamDecl(I)->getType(),
6119                                  true, TemplateParams->getDepth(), Deduced);
6120 }
6121 
6122 bool hasDeducibleTemplateParameters(Sema &S,
6123                                     FunctionTemplateDecl *FunctionTemplate,
6124                                     QualType T) {
6125   if (!T->isDependentType())
6126     return false;
6127 
6128   TemplateParameterList *TemplateParams
6129     = FunctionTemplate->getTemplateParameters();
6130   llvm::SmallBitVector Deduced(TemplateParams->size());
6131   ::MarkUsedTemplateParameters(S.Context, T, true, TemplateParams->getDepth(),
6132                                Deduced);
6133 
6134   return Deduced.any();
6135 }
6136