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