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