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