blob: 256bb7c3951bfe4771b6ced1e8603f69c4468438 [file] [log] [blame]
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001//===------- 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
John McCall19c1bfd2010-08-25 05:32:35 +000013#include "clang/Sema/TemplateDeduction.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000014#include "TreeTransform.h"
Douglas Gregor55ca8f62009-06-04 00:03:07 +000015#include "clang/AST/ASTContext.h"
Faisal Vali571df122013-09-29 08:45:24 +000016#include "clang/AST/ASTLambda.h"
John McCallde6836a2010-08-24 07:21:54 +000017#include "clang/AST/DeclObjC.h"
Douglas Gregor55ca8f62009-06-04 00:03:07 +000018#include "clang/AST/DeclTemplate.h"
Douglas Gregor55ca8f62009-06-04 00:03:07 +000019#include "clang/AST/Expr.h"
20#include "clang/AST/ExprCXX.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000021#include "clang/AST/StmtVisitor.h"
22#include "clang/Sema/DeclSpec.h"
23#include "clang/Sema/Sema.h"
24#include "clang/Sema/Template.h"
Benjamin Kramere0513cb2012-01-30 16:17:39 +000025#include "llvm/ADT/SmallBitVector.h"
Douglas Gregor0ff7d922009-09-14 18:39:43 +000026#include <algorithm>
Douglas Gregorcf0b47d2009-06-26 23:10:12 +000027
28namespace clang {
John McCall19c1bfd2010-08-25 05:32:35 +000029 using namespace sema;
Douglas Gregorcf0b47d2009-06-26 23:10:12 +000030 /// \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
Douglas Gregorfc516c92009-06-26 23:27:24 +000047 /// deduction from a template-id of a derived class of the argument type.
Douglas Gregor406f6342009-09-14 20:00:47 +000048 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.
Douglas Gregor85f240c2011-01-25 17:19:08 +000052 TDF_SkipNonDependent = 0x08,
53 /// \brief Whether we are performing template argument deduction for
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +000054 /// parameters and arguments in a top-level template argument
Douglas Gregor19a41f12013-04-17 08:45:07 +000055 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
Douglas Gregorcf0b47d2009-06-26 23:10:12 +000060 };
61}
62
Douglas Gregor55ca8f62009-06-04 00:03:07 +000063using namespace clang;
64
Douglas Gregor0a29a052010-03-26 05:50:28 +000065/// \brief Compare two APSInts, extending and switching the sign as
66/// necessary to compare their values regardless of underlying type.
67static bool hasSameExtendedValue(llvm::APSInt X, llvm::APSInt Y) {
68 if (Y.getBitWidth() > X.getBitWidth())
Jay Foad6d4db0c2010-12-07 08:25:34 +000069 X = X.extend(Y.getBitWidth());
Douglas Gregor0a29a052010-03-26 05:50:28 +000070 else if (Y.getBitWidth() < X.getBitWidth())
Jay Foad6d4db0c2010-12-07 08:25:34 +000071 Y = Y.extend(X.getBitWidth());
Douglas Gregor0a29a052010-03-26 05:50:28 +000072
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
Douglas Gregor181aa4a2009-06-12 18:26:56 +000086static Sema::TemplateDeductionResult
Chandler Carruthc1263112010-02-07 21:33:28 +000087DeduceTemplateArguments(Sema &S,
Douglas Gregor181aa4a2009-06-12 18:26:56 +000088 TemplateParameterList *TemplateParams,
89 const TemplateArgument &Param,
Douglas Gregor2fcb8632011-01-11 22:21:24 +000090 TemplateArgument Arg,
John McCall19c1bfd2010-08-25 05:32:35 +000091 TemplateDeductionInfo &Info,
Craig Topper79653572013-07-08 04:13:06 +000092 SmallVectorImpl<DeducedTemplateArgument> &Deduced);
Douglas Gregor4fbe3e32009-06-09 16:35:58 +000093
Douglas Gregor63814022011-01-21 17:29:42 +000094/// \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.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +000097enum DeductionQualifierComparison {
98 NeitherMoreQualified = 0,
99 ParamMoreQualified,
100 ArgMoreQualified
Douglas Gregorb837ea42011-01-11 17:34:58 +0000101};
102
Douglas Gregor63814022011-01-21 17:29:42 +0000103/// \brief Stores the result of comparing two reference parameters while
104/// performing template argument deduction for partial ordering of function
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000105/// templates.
Douglas Gregor63814022011-01-21 17:29:42 +0000106struct 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;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000111
Douglas Gregor63814022011-01-21 17:29:42 +0000112 /// \brief Whether the parameter or argument (or neither) is more qualified.
113 DeductionQualifierComparison Qualifiers;
114};
115
116
Douglas Gregorb837ea42011-01-11 17:34:58 +0000117
Douglas Gregor7baabef2010-12-22 18:17:10 +0000118static Sema::TemplateDeductionResult
Sebastian Redlfb0b1f12012-01-17 22:49:52 +0000119DeduceTemplateArgumentsByTypeMatch(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> *
Douglas Gregor63814022011-01-21 17:29:42 +0000129 RefParamComparisons = 0);
Douglas Gregor5499af42011-01-05 23:12:31 +0000130
131static Sema::TemplateDeductionResult
132DeduceTemplateArguments(Sema &S,
133 TemplateParameterList *TemplateParams,
Douglas Gregor7baabef2010-12-22 18:17:10 +0000134 const TemplateArgument *Params, unsigned NumParams,
135 const TemplateArgument *Args, unsigned NumArgs,
136 TemplateDeductionInfo &Info,
Richard Smith16b65392012-12-06 06:44:44 +0000137 SmallVectorImpl<DeducedTemplateArgument> &Deduced);
Douglas Gregor7baabef2010-12-22 18:17:10 +0000138
Douglas Gregorb7ae10f2009-06-05 00:53:49 +0000139/// \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.
142static NonTypeTemplateParmDecl *getDeducedParameterFromExpr(Expr *E) {
Richard Smith7ebb07c2012-07-08 04:37:51 +0000143 // 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 }
Mike Stump11289f42009-09-09 15:08:12 +0000154
Douglas Gregorb7ae10f2009-06-05 00:53:49 +0000155 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
156 return dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
Mike Stump11289f42009-09-09 15:08:12 +0000157
Douglas Gregorb7ae10f2009-06-05 00:53:49 +0000158 return 0;
159}
160
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000161/// \brief Determine whether two declaration pointers refer to the same
162/// declaration.
163static bool isSameDeclaration(Decl *X, Decl *Y) {
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000164 if (NamedDecl *NX = dyn_cast<NamedDecl>(X))
165 X = NX->getUnderlyingDecl();
166 if (NamedDecl *NY = dyn_cast<NamedDecl>(Y))
167 Y = NY->getUnderlyingDecl();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000168
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000169 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.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000176static DeducedTemplateArgument
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000177checkDeducedTemplateArguments(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())
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000184 return X;
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000185
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;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000195
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000196 return DeducedTemplateArgument();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000197
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000198 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 &&
Benjamin Kramer6003ad52012-06-07 15:09:51 +0000205 hasSameExtendedValue(X.getAsIntegral(), Y.getAsIntegral())))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000206 return DeducedTemplateArgument(X,
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000207 X.wasDeducedFromArrayBound() &&
208 Y.wasDeducedFromArrayBound());
209
210 // All other combinations are incompatible.
211 return DeducedTemplateArgument();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000212
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000213 case TemplateArgument::Template:
214 if (Y.getKind() == TemplateArgument::Template &&
215 Context.hasSameTemplateName(X.getAsTemplate(), Y.getAsTemplate()))
216 return X;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000217
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000218 // All other combinations are incompatible.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000219 return DeducedTemplateArgument();
Douglas Gregore4ff4b52011-01-05 18:58:31 +0000220
221 case TemplateArgument::TemplateExpansion:
222 if (Y.getKind() == TemplateArgument::TemplateExpansion &&
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000223 Context.hasSameTemplateName(X.getAsTemplateOrTemplatePattern(),
Douglas Gregore4ff4b52011-01-05 18:58:31 +0000224 Y.getAsTemplateOrTemplatePattern()))
225 return X;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000226
Douglas Gregore4ff4b52011-01-05 18:58:31 +0000227 // All other combinations are incompatible.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000228 return DeducedTemplateArgument();
Douglas Gregore4ff4b52011-01-05 18:58:31 +0000229
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000230 case TemplateArgument::Expression:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000231 // 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
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000233 // or declaration.
234 if (Y.getKind() == TemplateArgument::Integral ||
235 Y.getKind() == TemplateArgument::Declaration)
236 return DeducedTemplateArgument(Y, X.wasDeducedFromArrayBound() &&
237 Y.wasDeducedFromArrayBound());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000238
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000239 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 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000247
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000248 // All other combinations are incompatible.
249 return DeducedTemplateArgument();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000250
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000251 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;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000256
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000257 // If we deduced a declaration and an integral constant, keep the
258 // integral constant.
259 if (Y.getKind() == TemplateArgument::Integral)
260 return Y;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000261
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000262 // If we deduced two declarations, make sure they they refer to the
263 // same declaration.
264 if (Y.getKind() == TemplateArgument::Declaration &&
Eli Friedmanb826a002012-09-26 02:36:12 +0000265 isSameDeclaration(X.getAsDecl(), Y.getAsDecl()) &&
266 X.isDeclForReferenceParam() == Y.isDeclForReferenceParam())
267 return X;
268
269 // All other combinations are incompatible.
270 return DeducedTemplateArgument();
271
272 case TemplateArgument::NullPtr:
273 // If we deduced a null pointer and a dependent expression, keep the
274 // null pointer.
275 if (Y.getKind() == TemplateArgument::Expression)
276 return X;
277
278 // If we deduced a null pointer and an integral constant, keep the
279 // integral constant.
280 if (Y.getKind() == TemplateArgument::Integral)
281 return Y;
282
283 // If we deduced two null pointers, make sure they have the same type.
284 if (Y.getKind() == TemplateArgument::NullPtr &&
285 Context.hasSameType(X.getNullPtrType(), Y.getNullPtrType()))
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000286 return X;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000287
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000288 // All other combinations are incompatible.
289 return DeducedTemplateArgument();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000290
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000291 case TemplateArgument::Pack:
292 if (Y.getKind() != TemplateArgument::Pack ||
293 X.pack_size() != Y.pack_size())
294 return DeducedTemplateArgument();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000295
296 for (TemplateArgument::pack_iterator XA = X.pack_begin(),
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000297 XAEnd = X.pack_end(),
298 YA = Y.pack_begin();
299 XA != XAEnd; ++XA, ++YA) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000300 if (checkDeducedTemplateArguments(Context,
301 DeducedTemplateArgument(*XA, X.wasDeducedFromArrayBound()),
Douglas Gregorf491ee22011-01-05 21:00:53 +0000302 DeducedTemplateArgument(*YA, Y.wasDeducedFromArrayBound()))
303 .isNull())
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000304 return DeducedTemplateArgument();
305 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000306
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000307 return X;
308 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000309
David Blaikiee4d798f2012-01-20 21:50:17 +0000310 llvm_unreachable("Invalid TemplateArgument Kind!");
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000311}
312
Mike Stump11289f42009-09-09 15:08:12 +0000313/// \brief Deduce the value of the given non-type template parameter
Douglas Gregorb7ae10f2009-06-05 00:53:49 +0000314/// from the given constant.
Douglas Gregor181aa4a2009-06-12 18:26:56 +0000315static Sema::TemplateDeductionResult
Chandler Carruthc1263112010-02-07 21:33:28 +0000316DeduceNonTypeTemplateArgument(Sema &S,
Mike Stump11289f42009-09-09 15:08:12 +0000317 NonTypeTemplateParmDecl *NTTP,
Douglas Gregor0a29a052010-03-26 05:50:28 +0000318 llvm::APSInt Value, QualType ValueType,
Douglas Gregord5cb1dd2010-03-28 02:42:43 +0000319 bool DeducedFromArrayBound,
John McCall19c1bfd2010-08-25 05:32:35 +0000320 TemplateDeductionInfo &Info,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000321 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
Mike Stump11289f42009-09-09 15:08:12 +0000322 assert(NTTP->getDepth() == 0 &&
Douglas Gregorb7ae10f2009-06-05 00:53:49 +0000323 "Cannot deduce non-type template argument with depth > 0");
Mike Stump11289f42009-09-09 15:08:12 +0000324
Benjamin Kramer6003ad52012-06-07 15:09:51 +0000325 DeducedTemplateArgument NewDeduced(S.Context, Value, ValueType,
326 DeducedFromArrayBound);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000327 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context,
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000328 Deduced[NTTP->getIndex()],
329 NewDeduced);
330 if (Result.isNull()) {
Douglas Gregor181aa4a2009-06-12 18:26:56 +0000331 Info.Param = NTTP;
332 Info.FirstArg = Deduced[NTTP->getIndex()];
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000333 Info.SecondArg = NewDeduced;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000334 return Sema::TDK_Inconsistent;
Douglas Gregor181aa4a2009-06-12 18:26:56 +0000335 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000336
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000337 Deduced[NTTP->getIndex()] = Result;
Douglas Gregor181aa4a2009-06-12 18:26:56 +0000338 return Sema::TDK_Success;
Douglas Gregorb7ae10f2009-06-05 00:53:49 +0000339}
340
Mike Stump11289f42009-09-09 15:08:12 +0000341/// \brief Deduce the value of the given non-type template parameter
Douglas Gregorb7ae10f2009-06-05 00:53:49 +0000342/// from the given type- or value-dependent expression.
343///
344/// \returns true if deduction succeeded, false otherwise.
Douglas Gregor181aa4a2009-06-12 18:26:56 +0000345static Sema::TemplateDeductionResult
Chandler Carruthc1263112010-02-07 21:33:28 +0000346DeduceNonTypeTemplateArgument(Sema &S,
Douglas Gregor181aa4a2009-06-12 18:26:56 +0000347 NonTypeTemplateParmDecl *NTTP,
348 Expr *Value,
John McCall19c1bfd2010-08-25 05:32:35 +0000349 TemplateDeductionInfo &Info,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000350 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
Mike Stump11289f42009-09-09 15:08:12 +0000351 assert(NTTP->getDepth() == 0 &&
Douglas Gregorb7ae10f2009-06-05 00:53:49 +0000352 "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.");
Mike Stump11289f42009-09-09 15:08:12 +0000355
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000356 DeducedTemplateArgument NewDeduced(Value);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000357 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context,
358 Deduced[NTTP->getIndex()],
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000359 NewDeduced);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000360
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000361 if (Result.isNull()) {
362 Info.Param = NTTP;
363 Info.FirstArg = Deduced[NTTP->getIndex()];
364 Info.SecondArg = NewDeduced;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000365 return Sema::TDK_Inconsistent;
Douglas Gregorb7ae10f2009-06-05 00:53:49 +0000366 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000367
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000368 Deduced[NTTP->getIndex()] = Result;
Douglas Gregor181aa4a2009-06-12 18:26:56 +0000369 return Sema::TDK_Success;
Douglas Gregorb7ae10f2009-06-05 00:53:49 +0000370}
371
Douglas Gregor2bb756a2009-11-13 23:45:44 +0000372/// \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.
376static Sema::TemplateDeductionResult
Chandler Carruthc1263112010-02-07 21:33:28 +0000377DeduceNonTypeTemplateArgument(Sema &S,
Craig Topperc1bbe8d2013-07-08 04:16:49 +0000378 NonTypeTemplateParmDecl *NTTP,
379 ValueDecl *D,
380 TemplateDeductionInfo &Info,
381 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
Douglas Gregor2bb756a2009-11-13 23:45:44 +0000382 assert(NTTP->getDepth() == 0 &&
383 "Cannot deduce non-type template argument with depth > 0");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000384
Eli Friedmanb826a002012-09-26 02:36:12 +0000385 D = D ? cast<ValueDecl>(D->getCanonicalDecl()) : 0;
386 TemplateArgument New(D, NTTP->getType()->isReferenceType());
387 DeducedTemplateArgument NewDeduced(New);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000388 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context,
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000389 Deduced[NTTP->getIndex()],
390 NewDeduced);
391 if (Result.isNull()) {
392 Info.Param = NTTP;
393 Info.FirstArg = Deduced[NTTP->getIndex()];
394 Info.SecondArg = NewDeduced;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000395 return Sema::TDK_Inconsistent;
Douglas Gregor2bb756a2009-11-13 23:45:44 +0000396 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000397
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000398 Deduced[NTTP->getIndex()] = Result;
Douglas Gregor2bb756a2009-11-13 23:45:44 +0000399 return Sema::TDK_Success;
400}
401
Douglas Gregor181aa4a2009-06-12 18:26:56 +0000402static Sema::TemplateDeductionResult
Chandler Carruthc1263112010-02-07 21:33:28 +0000403DeduceTemplateArguments(Sema &S,
Douglas Gregoradee3e32009-11-11 23:06:43 +0000404 TemplateParameterList *TemplateParams,
Douglas Gregor181aa4a2009-06-12 18:26:56 +0000405 TemplateName Param,
406 TemplateName Arg,
John McCall19c1bfd2010-08-25 05:32:35 +0000407 TemplateDeductionInfo &Info,
Craig Topperc1bbe8d2013-07-08 04:16:49 +0000408 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
Douglas Gregor4fbe3e32009-06-09 16:35:58 +0000409 TemplateDecl *ParamDecl = Param.getAsTemplateDecl();
Douglas Gregoradee3e32009-11-11 23:06:43 +0000410 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 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000415
Douglas Gregoradee3e32009-11-11 23:06:43 +0000416 if (TemplateTemplateParmDecl *TempParam
417 = dyn_cast<TemplateTemplateParmDecl>(ParamDecl)) {
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000418 DeducedTemplateArgument NewDeduced(S.Context.getCanonicalTemplateName(Arg));
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000419 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context,
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000420 Deduced[TempParam->getIndex()],
421 NewDeduced);
422 if (Result.isNull()) {
423 Info.Param = TempParam;
424 Info.FirstArg = Deduced[TempParam->getIndex()];
425 Info.SecondArg = NewDeduced;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000426 return Sema::TDK_Inconsistent;
Douglas Gregoradee3e32009-11-11 23:06:43 +0000427 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000428
Douglas Gregor7f8e7682010-12-22 23:09:49 +0000429 Deduced[TempParam->getIndex()] = Result;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000430 return Sema::TDK_Success;
Douglas Gregor181aa4a2009-06-12 18:26:56 +0000431 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000432
Douglas Gregoradee3e32009-11-11 23:06:43 +0000433 // Verify that the two template names are equivalent.
Chandler Carruthc1263112010-02-07 21:33:28 +0000434 if (S.Context.hasSameTemplateName(Param, Arg))
Douglas Gregoradee3e32009-11-11 23:06:43 +0000435 return Sema::TDK_Success;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000436
Douglas Gregoradee3e32009-11-11 23:06:43 +0000437 // Mismatch of non-dependent template parameter to argument.
438 Info.FirstArg = TemplateArgument(Param);
439 Info.SecondArg = TemplateArgument(Arg);
440 return Sema::TDK_NonDeducedMismatch;
Douglas Gregor4fbe3e32009-06-09 16:35:58 +0000441}
442
Mike Stump11289f42009-09-09 15:08:12 +0000443/// \brief Deduce the template arguments by comparing the template parameter
Douglas Gregore81f3e72009-07-07 23:09:34 +0000444/// type (which is a template-id) with the template argument type.
445///
Chandler Carruthc1263112010-02-07 21:33:28 +0000446/// \param S the Sema
Douglas Gregore81f3e72009-07-07 23:09:34 +0000447///
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.
461static Sema::TemplateDeductionResult
Chandler Carruthc1263112010-02-07 21:33:28 +0000462DeduceTemplateArguments(Sema &S,
Douglas Gregore81f3e72009-07-07 23:09:34 +0000463 TemplateParameterList *TemplateParams,
464 const TemplateSpecializationType *Param,
465 QualType Arg,
John McCall19c1bfd2010-08-25 05:32:35 +0000466 TemplateDeductionInfo &Info,
Craig Topper79653572013-07-08 04:13:06 +0000467 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
John McCallb692a092009-10-22 20:10:53 +0000468 assert(Arg.isCanonical() && "Argument type must be canonical");
Mike Stump11289f42009-09-09 15:08:12 +0000469
Douglas Gregore81f3e72009-07-07 23:09:34 +0000470 // Check whether the template argument is a dependent template-id.
Mike Stump11289f42009-09-09 15:08:12 +0000471 if (const TemplateSpecializationType *SpecArg
Douglas Gregore81f3e72009-07-07 23:09:34 +0000472 = dyn_cast<TemplateSpecializationType>(Arg)) {
473 // Perform template argument deduction for the template name.
474 if (Sema::TemplateDeductionResult Result
Chandler Carruthc1263112010-02-07 21:33:28 +0000475 = DeduceTemplateArguments(S, TemplateParams,
Douglas Gregore81f3e72009-07-07 23:09:34 +0000476 Param->getTemplateName(),
477 SpecArg->getTemplateName(),
478 Info, Deduced))
479 return Result;
Mike Stump11289f42009-09-09 15:08:12 +0000480
Mike Stump11289f42009-09-09 15:08:12 +0000481
Douglas Gregore81f3e72009-07-07 23:09:34 +0000482 // Perform template argument deduction on each template
Douglas Gregord80ea202010-12-22 18:55:49 +0000483 // argument. Ignore any missing/extra arguments, since they could be
484 // filled in by default arguments.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000485 return DeduceTemplateArguments(S, TemplateParams,
486 Param->getArgs(), Param->getNumArgs(),
Douglas Gregord80ea202010-12-22 18:55:49 +0000487 SpecArg->getArgs(), SpecArg->getNumArgs(),
Richard Smith16b65392012-12-06 06:44:44 +0000488 Info, Deduced);
Douglas Gregore81f3e72009-07-07 23:09:34 +0000489 }
Mike Stump11289f42009-09-09 15:08:12 +0000490
Douglas Gregore81f3e72009-07-07 23:09:34 +0000491 // 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);
Richard Smith44ecdbd2013-01-31 05:19:49 +0000495 if (!RecordArg) {
496 Info.FirstArg = TemplateArgument(QualType(Param, 0));
497 Info.SecondArg = TemplateArgument(Arg);
Douglas Gregore81f3e72009-07-07 23:09:34 +0000498 return Sema::TDK_NonDeducedMismatch;
Richard Smith44ecdbd2013-01-31 05:19:49 +0000499 }
Mike Stump11289f42009-09-09 15:08:12 +0000500
501 ClassTemplateSpecializationDecl *SpecArg
Douglas Gregore81f3e72009-07-07 23:09:34 +0000502 = dyn_cast<ClassTemplateSpecializationDecl>(RecordArg->getDecl());
Richard Smith44ecdbd2013-01-31 05:19:49 +0000503 if (!SpecArg) {
504 Info.FirstArg = TemplateArgument(QualType(Param, 0));
505 Info.SecondArg = TemplateArgument(Arg);
Douglas Gregore81f3e72009-07-07 23:09:34 +0000506 return Sema::TDK_NonDeducedMismatch;
Richard Smith44ecdbd2013-01-31 05:19:49 +0000507 }
Mike Stump11289f42009-09-09 15:08:12 +0000508
Douglas Gregore81f3e72009-07-07 23:09:34 +0000509 // Perform template argument deduction for the template name.
510 if (Sema::TemplateDeductionResult Result
Chandler Carruthc1263112010-02-07 21:33:28 +0000511 = DeduceTemplateArguments(S,
Douglas Gregoradee3e32009-11-11 23:06:43 +0000512 TemplateParams,
Douglas Gregore81f3e72009-07-07 23:09:34 +0000513 Param->getTemplateName(),
514 TemplateName(SpecArg->getSpecializedTemplate()),
515 Info, Deduced))
516 return Result;
Mike Stump11289f42009-09-09 15:08:12 +0000517
Douglas Gregor7baabef2010-12-22 18:17:10 +0000518 // Perform template argument deduction for the template arguments.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000519 return DeduceTemplateArguments(S, TemplateParams,
Douglas Gregor7baabef2010-12-22 18:17:10 +0000520 Param->getArgs(), Param->getNumArgs(),
521 SpecArg->getTemplateArgs().data(),
522 SpecArg->getTemplateArgs().size(),
523 Info, Deduced);
Douglas Gregore81f3e72009-07-07 23:09:34 +0000524}
525
John McCall08569062010-08-28 22:14:41 +0000526/// \brief Determines whether the given type is an opaque type that
527/// might be more qualified when instantiated.
528static 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:
John McCall6c9dd522011-01-18 07:41:22 +0000535 case Type::TemplateTypeParm:
John McCall08569062010-08-28 22:14:41 +0000536 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
Douglas Gregora8bac7f2011-01-10 07:32:04 +0000550/// \brief Retrieve the depth and index of a template parameter.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000551static std::pair<unsigned, unsigned>
Douglas Gregora8bac7f2011-01-10 07:32:04 +0000552getDepthAndIndex(NamedDecl *ND) {
Douglas Gregor5499af42011-01-05 23:12:31 +0000553 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(ND))
554 return std::make_pair(TTP->getDepth(), TTP->getIndex());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000555
Douglas Gregor5499af42011-01-05 23:12:31 +0000556 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND))
557 return std::make_pair(NTTP->getDepth(), NTTP->getIndex());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000558
Douglas Gregor5499af42011-01-05 23:12:31 +0000559 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(ND);
560 return std::make_pair(TTP->getDepth(), TTP->getIndex());
561}
562
Douglas Gregora8bac7f2011-01-10 07:32:04 +0000563/// \brief Retrieve the depth and index of an unexpanded parameter pack.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000564static std::pair<unsigned, unsigned>
Douglas Gregora8bac7f2011-01-10 07:32:04 +0000565getDepthAndIndex(UnexpandedParameterPack UPP) {
566 if (const TemplateTypeParmType *TTP
567 = UPP.first.dyn_cast<const TemplateTypeParmType *>())
568 return std::make_pair(TTP->getDepth(), TTP->getIndex());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000569
Douglas Gregora8bac7f2011-01-10 07:32:04 +0000570 return getDepthAndIndex(UPP.first.get<NamedDecl *>());
571}
572
Douglas Gregor5499af42011-01-05 23:12:31 +0000573/// \brief Helper function to build a TemplateParameter when we don't
574/// know its type statically.
575static TemplateParameter makeTemplateParameter(Decl *D) {
576 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(D))
577 return TemplateParameter(TTP);
Craig Topper4b482ee2013-07-08 04:24:47 +0000578 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D))
Douglas Gregor5499af42011-01-05 23:12:31 +0000579 return TemplateParameter(NTTP);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000580
Douglas Gregor5499af42011-01-05 23:12:31 +0000581 return TemplateParameter(cast<TemplateTemplateParmDecl>(D));
582}
583
Craig Topper0a4e1f52013-07-08 04:44:01 +0000584typedef SmallVector<SmallVector<DeducedTemplateArgument, 4>, 2>
585 NewlyDeducedPacksType;
586
Douglas Gregora8bd0d92011-01-10 17:35:05 +0000587/// \brief Prepare to perform template argument deduction for all of the
588/// arguments in a set of argument packs.
Craig Topper0a4e1f52013-07-08 04:44:01 +0000589static void
590PrepareArgumentPackDeduction(Sema &S,
591 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
592 ArrayRef<unsigned> PackIndices,
593 SmallVectorImpl<DeducedTemplateArgument> &SavedPacks,
594 NewlyDeducedPacksType &NewlyDeducedPacks) {
Douglas Gregora8bd0d92011-01-10 17:35:05 +0000595 // Save the deduced template arguments for each parameter pack expanded
596 // by this pack expansion, then clear out the deduction.
597 for (unsigned I = 0, N = PackIndices.size(); I != N; ++I) {
598 // Save the previously-deduced argument pack, then clear it out so that we
599 // can deduce a new argument pack.
600 SavedPacks[I] = Deduced[PackIndices[I]];
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000601 Deduced[PackIndices[I]] = TemplateArgument();
602
Richard Smith802c4b72012-08-23 06:16:52 +0000603 if (!S.CurrentInstantiationScope)
604 continue;
605
Richard Smith1fde8ec2012-09-07 02:06:42 +0000606 // If the template argument pack was explicitly specified, add that to
Douglas Gregora8bd0d92011-01-10 17:35:05 +0000607 // the set of deduced arguments.
608 const TemplateArgument *ExplicitArgs;
609 unsigned NumExplicitArgs;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000610 if (NamedDecl *PartiallySubstitutedPack
Douglas Gregora8bd0d92011-01-10 17:35:05 +0000611 = S.CurrentInstantiationScope->getPartiallySubstitutedPack(
612 &ExplicitArgs,
613 &NumExplicitArgs)) {
614 if (getDepthAndIndex(PartiallySubstitutedPack).second == PackIndices[I])
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000615 NewlyDeducedPacks[I].append(ExplicitArgs,
Douglas Gregora8bd0d92011-01-10 17:35:05 +0000616 ExplicitArgs + NumExplicitArgs);
617 }
618 }
619}
620
Douglas Gregorb94a6172011-01-10 17:53:52 +0000621/// \brief Finish template argument deduction for a set of argument packs,
622/// producing the argument packs and checking for consistency with prior
623/// deductions.
624static Sema::TemplateDeductionResult
625FinishArgumentPackDeduction(Sema &S,
Craig Topper0a4e1f52013-07-08 04:44:01 +0000626 TemplateParameterList *TemplateParams,
627 bool HasAnyArguments,
628 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
629 ArrayRef<unsigned> PackIndices,
630 SmallVectorImpl<DeducedTemplateArgument> &SavedPacks,
631 NewlyDeducedPacksType &NewlyDeducedPacks,
632 TemplateDeductionInfo &Info) {
Douglas Gregorb94a6172011-01-10 17:53:52 +0000633 // Build argument packs for each of the parameter packs expanded by this
634 // pack expansion.
635 for (unsigned I = 0, N = PackIndices.size(); I != N; ++I) {
636 if (HasAnyArguments && NewlyDeducedPacks[I].empty()) {
637 // We were not able to deduce anything for this parameter pack,
638 // so just restore the saved argument pack.
639 Deduced[PackIndices[I]] = SavedPacks[I];
640 continue;
641 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000642
Douglas Gregorb94a6172011-01-10 17:53:52 +0000643 DeducedTemplateArgument NewPack;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000644
Douglas Gregorb94a6172011-01-10 17:53:52 +0000645 if (NewlyDeducedPacks[I].empty()) {
646 // If we deduced an empty argument pack, create it now.
Eli Friedmanb826a002012-09-26 02:36:12 +0000647 NewPack = DeducedTemplateArgument(TemplateArgument::getEmptyPack());
Douglas Gregorb94a6172011-01-10 17:53:52 +0000648 } else {
649 TemplateArgument *ArgumentPack
Douglas Gregor74c6d192011-01-11 23:09:57 +0000650 = new (S.Context) TemplateArgument [NewlyDeducedPacks[I].size()];
Douglas Gregorb94a6172011-01-10 17:53:52 +0000651 std::copy(NewlyDeducedPacks[I].begin(), NewlyDeducedPacks[I].end(),
652 ArgumentPack);
653 NewPack
Douglas Gregor74c6d192011-01-11 23:09:57 +0000654 = DeducedTemplateArgument(TemplateArgument(ArgumentPack,
655 NewlyDeducedPacks[I].size()),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000656 NewlyDeducedPacks[I][0].wasDeducedFromArrayBound());
Douglas Gregorb94a6172011-01-10 17:53:52 +0000657 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000658
Douglas Gregorb94a6172011-01-10 17:53:52 +0000659 DeducedTemplateArgument Result
660 = checkDeducedTemplateArguments(S.Context, SavedPacks[I], NewPack);
661 if (Result.isNull()) {
662 Info.Param
663 = makeTemplateParameter(TemplateParams->getParam(PackIndices[I]));
664 Info.FirstArg = SavedPacks[I];
665 Info.SecondArg = NewPack;
666 return Sema::TDK_Inconsistent;
667 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000668
Douglas Gregorb94a6172011-01-10 17:53:52 +0000669 Deduced[PackIndices[I]] = Result;
670 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000671
Douglas Gregorb94a6172011-01-10 17:53:52 +0000672 return Sema::TDK_Success;
673}
674
Douglas Gregor5499af42011-01-05 23:12:31 +0000675/// \brief Deduce the template arguments by comparing the list of parameter
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000676/// types to the list of argument types, as in the parameter-type-lists of
677/// function types (C++ [temp.deduct.type]p10).
Douglas Gregor5499af42011-01-05 23:12:31 +0000678///
679/// \param S The semantic analysis object within which we are deducing
680///
681/// \param TemplateParams The template parameters that we are deducing
682///
683/// \param Params The list of parameter types
684///
685/// \param NumParams The number of types in \c Params
686///
687/// \param Args The list of argument types
688///
689/// \param NumArgs The number of types in \c Args
690///
691/// \param Info information about the template argument deduction itself
692///
693/// \param Deduced the deduced template arguments
694///
695/// \param TDF bitwise OR of the TemplateDeductionFlags bits that describe
696/// how template argument deduction is performed.
697///
Douglas Gregorb837ea42011-01-11 17:34:58 +0000698/// \param PartialOrdering If true, we are performing template argument
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000699/// deduction for during partial ordering for a call
Douglas Gregorb837ea42011-01-11 17:34:58 +0000700/// (C++0x [temp.deduct.partial]).
701///
Douglas Gregor63814022011-01-21 17:29:42 +0000702/// \param RefParamComparisons If we're performing template argument deduction
Douglas Gregorb837ea42011-01-11 17:34:58 +0000703/// in the context of partial ordering, the set of qualifier comparisons.
704///
Douglas Gregor5499af42011-01-05 23:12:31 +0000705/// \returns the result of template argument deduction so far. Note that a
706/// "success" result means that template argument deduction has not yet failed,
707/// but it may still fail, later, for other reasons.
708static Sema::TemplateDeductionResult
709DeduceTemplateArguments(Sema &S,
710 TemplateParameterList *TemplateParams,
711 const QualType *Params, unsigned NumParams,
712 const QualType *Args, unsigned NumArgs,
713 TemplateDeductionInfo &Info,
Craig Topperc1bbe8d2013-07-08 04:16:49 +0000714 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
Douglas Gregorb837ea42011-01-11 17:34:58 +0000715 unsigned TDF,
716 bool PartialOrdering = false,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000717 SmallVectorImpl<RefParamPartialOrderingComparison> *
Douglas Gregor63814022011-01-21 17:29:42 +0000718 RefParamComparisons = 0) {
Douglas Gregor86bea352011-01-05 23:23:17 +0000719 // Fast-path check to see if we have too many/too few arguments.
720 if (NumParams != NumArgs &&
721 !(NumParams && isa<PackExpansionType>(Params[NumParams - 1])) &&
722 !(NumArgs && isa<PackExpansionType>(Args[NumArgs - 1])))
Richard Smith44ecdbd2013-01-31 05:19:49 +0000723 return Sema::TDK_MiscellaneousDeductionFailure;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000724
Douglas Gregor5499af42011-01-05 23:12:31 +0000725 // C++0x [temp.deduct.type]p10:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000726 // Similarly, if P has a form that contains (T), then each parameter type
727 // Pi of the respective parameter-type- list of P is compared with the
728 // corresponding parameter type Ai of the corresponding parameter-type-list
729 // of A. [...]
Douglas Gregor5499af42011-01-05 23:12:31 +0000730 unsigned ArgIdx = 0, ParamIdx = 0;
731 for (; ParamIdx != NumParams; ++ParamIdx) {
732 // Check argument types.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000733 const PackExpansionType *Expansion
Douglas Gregor5499af42011-01-05 23:12:31 +0000734 = dyn_cast<PackExpansionType>(Params[ParamIdx]);
735 if (!Expansion) {
736 // Simple case: compare the parameter and argument types at this point.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000737
Douglas Gregor5499af42011-01-05 23:12:31 +0000738 // Make sure we have an argument.
739 if (ArgIdx >= NumArgs)
Richard Smith44ecdbd2013-01-31 05:19:49 +0000740 return Sema::TDK_MiscellaneousDeductionFailure;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000741
Douglas Gregor2fcb8632011-01-11 22:21:24 +0000742 if (isa<PackExpansionType>(Args[ArgIdx])) {
743 // C++0x [temp.deduct.type]p22:
744 // If the original function parameter associated with A is a function
745 // parameter pack and the function parameter associated with P is not
746 // a function parameter pack, then template argument deduction fails.
Richard Smith44ecdbd2013-01-31 05:19:49 +0000747 return Sema::TDK_MiscellaneousDeductionFailure;
Douglas Gregor2fcb8632011-01-11 22:21:24 +0000748 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000749
Douglas Gregor5499af42011-01-05 23:12:31 +0000750 if (Sema::TemplateDeductionResult Result
Sebastian Redlfb0b1f12012-01-17 22:49:52 +0000751 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
752 Params[ParamIdx], Args[ArgIdx],
753 Info, Deduced, TDF,
754 PartialOrdering,
755 RefParamComparisons))
Douglas Gregor5499af42011-01-05 23:12:31 +0000756 return Result;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000757
Douglas Gregor5499af42011-01-05 23:12:31 +0000758 ++ArgIdx;
759 continue;
760 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000761
Douglas Gregor0dd423e2011-01-11 01:52:23 +0000762 // C++0x [temp.deduct.type]p5:
763 // The non-deduced contexts are:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000764 // - A function parameter pack that does not occur at the end of the
Douglas Gregor0dd423e2011-01-11 01:52:23 +0000765 // parameter-declaration-clause.
766 if (ParamIdx + 1 < NumParams)
767 return Sema::TDK_Success;
768
Douglas Gregor5499af42011-01-05 23:12:31 +0000769 // C++0x [temp.deduct.type]p10:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000770 // If the parameter-declaration corresponding to Pi is a function
Douglas Gregor5499af42011-01-05 23:12:31 +0000771 // parameter pack, then the type of its declarator- id is compared with
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000772 // each remaining parameter type in the parameter-type-list of A. Each
Douglas Gregor5499af42011-01-05 23:12:31 +0000773 // comparison deduces template arguments for subsequent positions in the
774 // template parameter packs expanded by the function parameter pack.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000775
Douglas Gregor5499af42011-01-05 23:12:31 +0000776 // Compute the set of template parameter indices that correspond to
777 // parameter packs expanded by the pack expansion.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000778 SmallVector<unsigned, 2> PackIndices;
Douglas Gregor5499af42011-01-05 23:12:31 +0000779 QualType Pattern = Expansion->getPattern();
780 {
Benjamin Kramere0513cb2012-01-30 16:17:39 +0000781 llvm::SmallBitVector SawIndices(TemplateParams->size());
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000782 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor5499af42011-01-05 23:12:31 +0000783 S.collectUnexpandedParameterPacks(Pattern, Unexpanded);
784 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) {
785 unsigned Depth, Index;
786 llvm::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]);
787 if (Depth == 0 && !SawIndices[Index]) {
788 SawIndices[Index] = true;
789 PackIndices.push_back(Index);
790 }
791 }
792 }
793 assert(!PackIndices.empty() && "Pack expansion without unexpanded packs?");
794
Douglas Gregora8bac7f2011-01-10 07:32:04 +0000795 // Keep track of the deduced template arguments for each parameter pack
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000796 // expanded by this pack expansion (the outer index) and for each
Douglas Gregora8bac7f2011-01-10 07:32:04 +0000797 // template argument (the inner SmallVectors).
Craig Topper0a4e1f52013-07-08 04:44:01 +0000798 NewlyDeducedPacksType NewlyDeducedPacks(PackIndices.size());
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000799 SmallVector<DeducedTemplateArgument, 2>
Douglas Gregora8bd0d92011-01-10 17:35:05 +0000800 SavedPacks(PackIndices.size());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000801 PrepareArgumentPackDeduction(S, Deduced, PackIndices, SavedPacks,
Douglas Gregora8bd0d92011-01-10 17:35:05 +0000802 NewlyDeducedPacks);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000803
Douglas Gregor5499af42011-01-05 23:12:31 +0000804 bool HasAnyArguments = false;
805 for (; ArgIdx < NumArgs; ++ArgIdx) {
806 HasAnyArguments = true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000807
Douglas Gregor5499af42011-01-05 23:12:31 +0000808 // Deduce template arguments from the pattern.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000809 if (Sema::TemplateDeductionResult Result
Sebastian Redlfb0b1f12012-01-17 22:49:52 +0000810 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, Pattern,
811 Args[ArgIdx], Info, Deduced,
812 TDF, PartialOrdering,
813 RefParamComparisons))
Douglas Gregor5499af42011-01-05 23:12:31 +0000814 return Result;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000815
Douglas Gregor5499af42011-01-05 23:12:31 +0000816 // Capture the deduced template arguments for each parameter pack expanded
817 // by this pack expansion, add them to the list of arguments we've deduced
818 // for that pack, then clear out the deduced argument.
819 for (unsigned I = 0, N = PackIndices.size(); I != N; ++I) {
820 DeducedTemplateArgument &DeducedArg = Deduced[PackIndices[I]];
821 if (!DeducedArg.isNull()) {
822 NewlyDeducedPacks[I].push_back(DeducedArg);
823 DeducedArg = DeducedTemplateArgument();
824 }
825 }
826 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000827
Douglas Gregor5499af42011-01-05 23:12:31 +0000828 // Build argument packs for each of the parameter packs expanded by this
829 // pack expansion.
Douglas Gregorb94a6172011-01-10 17:53:52 +0000830 if (Sema::TemplateDeductionResult Result
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000831 = FinishArgumentPackDeduction(S, TemplateParams, HasAnyArguments,
Douglas Gregorb94a6172011-01-10 17:53:52 +0000832 Deduced, PackIndices, SavedPacks,
833 NewlyDeducedPacks, Info))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000834 return Result;
Douglas Gregor5499af42011-01-05 23:12:31 +0000835 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000836
Douglas Gregor5499af42011-01-05 23:12:31 +0000837 // Make sure we don't have any extra arguments.
838 if (ArgIdx < NumArgs)
Richard Smith44ecdbd2013-01-31 05:19:49 +0000839 return Sema::TDK_MiscellaneousDeductionFailure;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000840
Douglas Gregor5499af42011-01-05 23:12:31 +0000841 return Sema::TDK_Success;
842}
843
Douglas Gregor1d684c22011-04-28 00:56:09 +0000844/// \brief Determine whether the parameter has qualifiers that are either
845/// inconsistent with or a superset of the argument's qualifiers.
846static bool hasInconsistentOrSupersetQualifiersOf(QualType ParamType,
847 QualType ArgType) {
848 Qualifiers ParamQs = ParamType.getQualifiers();
849 Qualifiers ArgQs = ArgType.getQualifiers();
850
851 if (ParamQs == ArgQs)
852 return false;
853
854 // Mismatched (but not missing) Objective-C GC attributes.
855 if (ParamQs.getObjCGCAttr() != ArgQs.getObjCGCAttr() &&
856 ParamQs.hasObjCGCAttr())
857 return true;
858
859 // Mismatched (but not missing) address spaces.
860 if (ParamQs.getAddressSpace() != ArgQs.getAddressSpace() &&
861 ParamQs.hasAddressSpace())
862 return true;
863
John McCall31168b02011-06-15 23:02:42 +0000864 // Mismatched (but not missing) Objective-C lifetime qualifiers.
865 if (ParamQs.getObjCLifetime() != ArgQs.getObjCLifetime() &&
866 ParamQs.hasObjCLifetime())
867 return true;
868
Douglas Gregor1d684c22011-04-28 00:56:09 +0000869 // CVR qualifier superset.
870 return (ParamQs.getCVRQualifiers() != ArgQs.getCVRQualifiers()) &&
871 ((ParamQs.getCVRQualifiers() | ArgQs.getCVRQualifiers())
872 == ParamQs.getCVRQualifiers());
873}
874
Douglas Gregor19a41f12013-04-17 08:45:07 +0000875/// \brief Compare types for equality with respect to possibly compatible
876/// function types (noreturn adjustment, implicit calling conventions). If any
877/// of parameter and argument is not a function, just perform type comparison.
878///
879/// \param Param the template parameter type.
880///
881/// \param Arg the argument type.
882bool Sema::isSameOrCompatibleFunctionType(CanQualType Param,
883 CanQualType Arg) {
884 const FunctionType *ParamFunction = Param->getAs<FunctionType>(),
885 *ArgFunction = Arg->getAs<FunctionType>();
886
887 // Just compare if not functions.
888 if (!ParamFunction || !ArgFunction)
889 return Param == Arg;
890
891 // Noreturn adjustment.
892 QualType AdjustedParam;
893 if (IsNoReturnConversion(Param, Arg, AdjustedParam))
894 return Arg == Context.getCanonicalType(AdjustedParam);
895
896 // FIXME: Compatible calling conventions.
897
898 return Param == Arg;
899}
900
Douglas Gregorcceb9752009-06-26 18:27:22 +0000901/// \brief Deduce the template arguments by comparing the parameter type and
902/// the argument type (C++ [temp.deduct.type]).
903///
Chandler Carruthc1263112010-02-07 21:33:28 +0000904/// \param S the semantic analysis object within which we are deducing
Douglas Gregorcceb9752009-06-26 18:27:22 +0000905///
906/// \param TemplateParams the template parameters that we are deducing
907///
908/// \param ParamIn the parameter type
909///
910/// \param ArgIn the argument type
911///
912/// \param Info information about the template argument deduction itself
913///
914/// \param Deduced the deduced template arguments
915///
Douglas Gregorcf0b47d2009-06-26 23:10:12 +0000916/// \param TDF bitwise OR of the TemplateDeductionFlags bits that describe
Mike Stump11289f42009-09-09 15:08:12 +0000917/// how template argument deduction is performed.
Douglas Gregorcceb9752009-06-26 18:27:22 +0000918///
Douglas Gregorb837ea42011-01-11 17:34:58 +0000919/// \param PartialOrdering Whether we're performing template argument deduction
920/// in the context of partial ordering (C++0x [temp.deduct.partial]).
921///
Douglas Gregor63814022011-01-21 17:29:42 +0000922/// \param RefParamComparisons If we're performing template argument deduction
Douglas Gregorb837ea42011-01-11 17:34:58 +0000923/// in the context of partial ordering, the set of qualifier comparisons.
924///
Douglas Gregorcceb9752009-06-26 18:27:22 +0000925/// \returns the result of template argument deduction so far. Note that a
926/// "success" result means that template argument deduction has not yet failed,
927/// but it may still fail, later, for other reasons.
Douglas Gregor181aa4a2009-06-12 18:26:56 +0000928static Sema::TemplateDeductionResult
Sebastian Redlfb0b1f12012-01-17 22:49:52 +0000929DeduceTemplateArgumentsByTypeMatch(Sema &S,
930 TemplateParameterList *TemplateParams,
931 QualType ParamIn, QualType ArgIn,
932 TemplateDeductionInfo &Info,
933 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
934 unsigned TDF,
935 bool PartialOrdering,
936 SmallVectorImpl<RefParamPartialOrderingComparison> *
937 RefParamComparisons) {
Douglas Gregor55ca8f62009-06-04 00:03:07 +0000938 // We only want to look at the canonical types, since typedefs and
939 // sugar are not part of template argument deduction.
Chandler Carruthc1263112010-02-07 21:33:28 +0000940 QualType Param = S.Context.getCanonicalType(ParamIn);
941 QualType Arg = S.Context.getCanonicalType(ArgIn);
Douglas Gregor55ca8f62009-06-04 00:03:07 +0000942
Douglas Gregor2fcb8632011-01-11 22:21:24 +0000943 // If the argument type is a pack expansion, look at its pattern.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000944 // This isn't explicitly called out
Douglas Gregor2fcb8632011-01-11 22:21:24 +0000945 if (const PackExpansionType *ArgExpansion
946 = dyn_cast<PackExpansionType>(Arg))
947 Arg = ArgExpansion->getPattern();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000948
Douglas Gregorb837ea42011-01-11 17:34:58 +0000949 if (PartialOrdering) {
950 // C++0x [temp.deduct.partial]p5:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000951 // Before the partial ordering is done, certain transformations are
952 // performed on the types used for partial ordering:
953 // - If P is a reference type, P is replaced by the type referred to.
Douglas Gregorb837ea42011-01-11 17:34:58 +0000954 const ReferenceType *ParamRef = Param->getAs<ReferenceType>();
955 if (ParamRef)
956 Param = ParamRef->getPointeeType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000957
Douglas Gregorb837ea42011-01-11 17:34:58 +0000958 // - If A is a reference type, A is replaced by the type referred to.
959 const ReferenceType *ArgRef = Arg->getAs<ReferenceType>();
960 if (ArgRef)
961 Arg = ArgRef->getPointeeType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000962
Douglas Gregor63814022011-01-21 17:29:42 +0000963 if (RefParamComparisons && ParamRef && ArgRef) {
Douglas Gregorb837ea42011-01-11 17:34:58 +0000964 // C++0x [temp.deduct.partial]p6:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000965 // If both P and A were reference types (before being replaced with the
966 // type referred to above), determine which of the two types (if any) is
Douglas Gregorb837ea42011-01-11 17:34:58 +0000967 // more cv-qualified than the other; otherwise the types are considered
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000968 // to be equally cv-qualified for partial ordering purposes. The result
Douglas Gregorb837ea42011-01-11 17:34:58 +0000969 // of this determination will be used below.
970 //
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000971 // We save this information for later, using it only when deduction
Douglas Gregorb837ea42011-01-11 17:34:58 +0000972 // succeeds in both directions.
Douglas Gregor63814022011-01-21 17:29:42 +0000973 RefParamPartialOrderingComparison Comparison;
974 Comparison.ParamIsRvalueRef = ParamRef->getAs<RValueReferenceType>();
975 Comparison.ArgIsRvalueRef = ArgRef->getAs<RValueReferenceType>();
976 Comparison.Qualifiers = NeitherMoreQualified;
Douglas Gregor85894a82011-04-30 17:07:52 +0000977
978 Qualifiers ParamQuals = Param.getQualifiers();
979 Qualifiers ArgQuals = Arg.getQualifiers();
980 if (ParamQuals.isStrictSupersetOf(ArgQuals))
Douglas Gregor63814022011-01-21 17:29:42 +0000981 Comparison.Qualifiers = ParamMoreQualified;
Douglas Gregor85894a82011-04-30 17:07:52 +0000982 else if (ArgQuals.isStrictSupersetOf(ParamQuals))
Douglas Gregor63814022011-01-21 17:29:42 +0000983 Comparison.Qualifiers = ArgMoreQualified;
Douglas Gregor6beabee2014-01-02 19:42:02 +0000984 else if (ArgQuals.getObjCLifetime() != ParamQuals.getObjCLifetime() &&
985 ArgQuals.withoutObjCLifetime()
986 == ParamQuals.withoutObjCLifetime()) {
987 // Prefer binding to non-__unsafe_autoretained parameters.
988 if (ArgQuals.getObjCLifetime() == Qualifiers::OCL_ExplicitNone &&
989 ParamQuals.getObjCLifetime())
990 Comparison.Qualifiers = ParamMoreQualified;
991 else if (ParamQuals.getObjCLifetime() == Qualifiers::OCL_ExplicitNone &&
992 ArgQuals.getObjCLifetime())
993 Comparison.Qualifiers = ArgMoreQualified;
994 }
Douglas Gregor63814022011-01-21 17:29:42 +0000995 RefParamComparisons->push_back(Comparison);
Douglas Gregorb837ea42011-01-11 17:34:58 +0000996 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000997
Douglas Gregorb837ea42011-01-11 17:34:58 +0000998 // C++0x [temp.deduct.partial]p7:
999 // Remove any top-level cv-qualifiers:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001000 // - If P is a cv-qualified type, P is replaced by the cv-unqualified
Douglas Gregorb837ea42011-01-11 17:34:58 +00001001 // version of P.
1002 Param = Param.getUnqualifiedType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001003 // - If A is a cv-qualified type, A is replaced by the cv-unqualified
Douglas Gregorb837ea42011-01-11 17:34:58 +00001004 // version of A.
1005 Arg = Arg.getUnqualifiedType();
1006 } else {
1007 // C++0x [temp.deduct.call]p4 bullet 1:
1008 // - If the original P is a reference type, the deduced A (i.e., the type
1009 // referred to by the reference) can be more cv-qualified than the
1010 // transformed A.
1011 if (TDF & TDF_ParamWithReferenceType) {
1012 Qualifiers Quals;
1013 QualType UnqualParam = S.Context.getUnqualifiedArrayType(Param, Quals);
1014 Quals.setCVRQualifiers(Quals.getCVRQualifiers() &
John McCall6c9dd522011-01-18 07:41:22 +00001015 Arg.getCVRQualifiers());
Douglas Gregorb837ea42011-01-11 17:34:58 +00001016 Param = S.Context.getQualifiedType(UnqualParam, Quals);
1017 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001018
Douglas Gregor85f240c2011-01-25 17:19:08 +00001019 if ((TDF & TDF_TopLevelParameterTypeList) && !Param->isFunctionType()) {
1020 // C++0x [temp.deduct.type]p10:
1021 // If P and A are function types that originated from deduction when
1022 // taking the address of a function template (14.8.2.2) or when deducing
1023 // template arguments from a function declaration (14.8.2.6) and Pi and
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001024 // Ai are parameters of the top-level parameter-type-list of P and A,
1025 // respectively, Pi is adjusted if it is an rvalue reference to a
1026 // cv-unqualified template parameter and Ai is an lvalue reference, in
1027 // which case the type of Pi is changed to be the template parameter
Douglas Gregor85f240c2011-01-25 17:19:08 +00001028 // type (i.e., T&& is changed to simply T). [ Note: As a result, when
1029 // Pi is T&& and Ai is X&, the adjusted Pi will be T, causing T to be
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00001030 // deduced as X&. - end note ]
Douglas Gregor85f240c2011-01-25 17:19:08 +00001031 TDF &= ~TDF_TopLevelParameterTypeList;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001032
Douglas Gregor85f240c2011-01-25 17:19:08 +00001033 if (const RValueReferenceType *ParamRef
1034 = Param->getAs<RValueReferenceType>()) {
1035 if (isa<TemplateTypeParmType>(ParamRef->getPointeeType()) &&
1036 !ParamRef->getPointeeType().getQualifiers())
1037 if (Arg->isLValueReferenceType())
1038 Param = ParamRef->getPointeeType();
1039 }
1040 }
Douglas Gregorcceb9752009-06-26 18:27:22 +00001041 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001042
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001043 // C++ [temp.deduct.type]p9:
Mike Stump11289f42009-09-09 15:08:12 +00001044 // A template type argument T, a template template argument TT or a
1045 // template non-type argument i can be deduced if P and A have one of
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001046 // the following forms:
1047 //
1048 // T
1049 // cv-list T
Mike Stump11289f42009-09-09 15:08:12 +00001050 if (const TemplateTypeParmType *TemplateTypeParm
John McCall9dd450b2009-09-21 23:43:11 +00001051 = Param->getAs<TemplateTypeParmType>()) {
Douglas Gregor4ea5dec2011-09-22 15:57:07 +00001052 // Just skip any attempts to deduce from a placeholder type.
1053 if (Arg->isPlaceholderType())
1054 return Sema::TDK_Success;
1055
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001056 unsigned Index = TemplateTypeParm->getIndex();
Douglas Gregord6605db2009-07-22 21:30:48 +00001057 bool RecanonicalizeArg = false;
Mike Stump11289f42009-09-09 15:08:12 +00001058
Douglas Gregor60454822009-07-22 20:02:25 +00001059 // If the argument type is an array type, move the qualifiers up to the
1060 // top level, so they can be matched with the qualifiers on the parameter.
Douglas Gregord6605db2009-07-22 21:30:48 +00001061 if (isa<ArrayType>(Arg)) {
John McCall8ccfcb52009-09-24 19:53:00 +00001062 Qualifiers Quals;
Chandler Carruthc1263112010-02-07 21:33:28 +00001063 Arg = S.Context.getUnqualifiedArrayType(Arg, Quals);
John McCall8ccfcb52009-09-24 19:53:00 +00001064 if (Quals) {
Chandler Carruthc1263112010-02-07 21:33:28 +00001065 Arg = S.Context.getQualifiedType(Arg, Quals);
Douglas Gregord6605db2009-07-22 21:30:48 +00001066 RecanonicalizeArg = true;
1067 }
1068 }
Mike Stump11289f42009-09-09 15:08:12 +00001069
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001070 // The argument type can not be less qualified than the parameter
1071 // type.
Douglas Gregor1d684c22011-04-28 00:56:09 +00001072 if (!(TDF & TDF_IgnoreQualifiers) &&
1073 hasInconsistentOrSupersetQualifiersOf(Param, Arg)) {
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001074 Info.Param = cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index));
John McCall42d7d192010-08-05 09:05:08 +00001075 Info.FirstArg = TemplateArgument(Param);
John McCall0ad16662009-10-29 08:12:44 +00001076 Info.SecondArg = TemplateArgument(Arg);
John McCall42d7d192010-08-05 09:05:08 +00001077 return Sema::TDK_Underqualified;
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001078 }
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001079
1080 assert(TemplateTypeParm->getDepth() == 0 && "Can't deduce with depth > 0");
Chandler Carruthc1263112010-02-07 21:33:28 +00001081 assert(Arg != S.Context.OverloadTy && "Unresolved overloaded function");
John McCall8ccfcb52009-09-24 19:53:00 +00001082 QualType DeducedType = Arg;
John McCall717d9b02010-12-10 11:01:00 +00001083
Douglas Gregor1d684c22011-04-28 00:56:09 +00001084 // Remove any qualifiers on the parameter from the deduced type.
1085 // We checked the qualifiers for consistency above.
1086 Qualifiers DeducedQs = DeducedType.getQualifiers();
1087 Qualifiers ParamQs = Param.getQualifiers();
1088 DeducedQs.removeCVRQualifiers(ParamQs.getCVRQualifiers());
1089 if (ParamQs.hasObjCGCAttr())
1090 DeducedQs.removeObjCGCAttr();
1091 if (ParamQs.hasAddressSpace())
1092 DeducedQs.removeAddressSpace();
John McCall31168b02011-06-15 23:02:42 +00001093 if (ParamQs.hasObjCLifetime())
1094 DeducedQs.removeObjCLifetime();
Douglas Gregore46db902011-06-17 22:11:49 +00001095
1096 // Objective-C ARC:
Douglas Gregora4f2b432011-07-26 14:53:44 +00001097 // If template deduction would produce a lifetime qualifier on a type
1098 // that is not a lifetime type, template argument deduction fails.
1099 if (ParamQs.hasObjCLifetime() && !DeducedType->isObjCLifetimeType() &&
1100 !DeducedType->isDependentType()) {
1101 Info.Param = cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index));
1102 Info.FirstArg = TemplateArgument(Param);
1103 Info.SecondArg = TemplateArgument(Arg);
1104 return Sema::TDK_Underqualified;
1105 }
1106
1107 // Objective-C ARC:
Douglas Gregore46db902011-06-17 22:11:49 +00001108 // If template deduction would produce an argument type with lifetime type
1109 // but no lifetime qualifier, the __strong lifetime qualifier is inferred.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001110 if (S.getLangOpts().ObjCAutoRefCount &&
Douglas Gregore46db902011-06-17 22:11:49 +00001111 DeducedType->isObjCLifetimeType() &&
1112 !DeducedQs.hasObjCLifetime())
1113 DeducedQs.setObjCLifetime(Qualifiers::OCL_Strong);
1114
Douglas Gregor1d684c22011-04-28 00:56:09 +00001115 DeducedType = S.Context.getQualifiedType(DeducedType.getUnqualifiedType(),
1116 DeducedQs);
1117
Douglas Gregord6605db2009-07-22 21:30:48 +00001118 if (RecanonicalizeArg)
Chandler Carruthc1263112010-02-07 21:33:28 +00001119 DeducedType = S.Context.getCanonicalType(DeducedType);
Mike Stump11289f42009-09-09 15:08:12 +00001120
Douglas Gregor7f8e7682010-12-22 23:09:49 +00001121 DeducedTemplateArgument NewDeduced(DeducedType);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001122 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context,
Douglas Gregor7f8e7682010-12-22 23:09:49 +00001123 Deduced[Index],
1124 NewDeduced);
1125 if (Result.isNull()) {
1126 Info.Param = cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index));
1127 Info.FirstArg = Deduced[Index];
1128 Info.SecondArg = NewDeduced;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001129 return Sema::TDK_Inconsistent;
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001130 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001131
Douglas Gregor7f8e7682010-12-22 23:09:49 +00001132 Deduced[Index] = Result;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001133 return Sema::TDK_Success;
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001134 }
1135
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001136 // Set up the template argument deduction information for a failure.
John McCall0ad16662009-10-29 08:12:44 +00001137 Info.FirstArg = TemplateArgument(ParamIn);
1138 Info.SecondArg = TemplateArgument(ArgIn);
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001139
Douglas Gregorfb322d82011-01-14 05:11:40 +00001140 // If the parameter is an already-substituted template parameter
1141 // pack, do nothing: we don't know which of its arguments to look
1142 // at, so we have to wait until all of the parameter packs in this
1143 // expansion have arguments.
1144 if (isa<SubstTemplateTypeParmPackType>(Param))
1145 return Sema::TDK_Success;
1146
Douglas Gregorcf0b47d2009-06-26 23:10:12 +00001147 // Check the cv-qualifiers on the parameter and argument types.
Douglas Gregor19a41f12013-04-17 08:45:07 +00001148 CanQualType CanParam = S.Context.getCanonicalType(Param);
1149 CanQualType CanArg = S.Context.getCanonicalType(Arg);
Douglas Gregorcf0b47d2009-06-26 23:10:12 +00001150 if (!(TDF & TDF_IgnoreQualifiers)) {
1151 if (TDF & TDF_ParamWithReferenceType) {
Douglas Gregor1d684c22011-04-28 00:56:09 +00001152 if (hasInconsistentOrSupersetQualifiersOf(Param, Arg))
Douglas Gregorcf0b47d2009-06-26 23:10:12 +00001153 return Sema::TDK_NonDeducedMismatch;
John McCall08569062010-08-28 22:14:41 +00001154 } else if (!IsPossiblyOpaquelyQualifiedType(Param)) {
Douglas Gregorcf0b47d2009-06-26 23:10:12 +00001155 if (Param.getCVRQualifiers() != Arg.getCVRQualifiers())
Mike Stump11289f42009-09-09 15:08:12 +00001156 return Sema::TDK_NonDeducedMismatch;
Douglas Gregorcf0b47d2009-06-26 23:10:12 +00001157 }
Douglas Gregor194ea692012-03-11 03:29:50 +00001158
1159 // If the parameter type is not dependent, there is nothing to deduce.
1160 if (!Param->isDependentType()) {
Douglas Gregor19a41f12013-04-17 08:45:07 +00001161 if (!(TDF & TDF_SkipNonDependent)) {
1162 bool NonDeduced = (TDF & TDF_InOverloadResolution)?
1163 !S.isSameOrCompatibleFunctionType(CanParam, CanArg) :
1164 Param != Arg;
1165 if (NonDeduced) {
1166 return Sema::TDK_NonDeducedMismatch;
1167 }
1168 }
Douglas Gregor194ea692012-03-11 03:29:50 +00001169 return Sema::TDK_Success;
1170 }
Douglas Gregor19a41f12013-04-17 08:45:07 +00001171 } else if (!Param->isDependentType()) {
1172 CanQualType ParamUnqualType = CanParam.getUnqualifiedType(),
1173 ArgUnqualType = CanArg.getUnqualifiedType();
1174 bool Success = (TDF & TDF_InOverloadResolution)?
1175 S.isSameOrCompatibleFunctionType(ParamUnqualType,
1176 ArgUnqualType) :
1177 ParamUnqualType == ArgUnqualType;
1178 if (Success)
1179 return Sema::TDK_Success;
Douglas Gregorcf0b47d2009-06-26 23:10:12 +00001180 }
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001181
Douglas Gregor5cdac0a2009-06-04 00:21:18 +00001182 switch (Param->getTypeClass()) {
Douglas Gregor39c02722011-06-15 16:02:29 +00001183 // Non-canonical types cannot appear here.
1184#define NON_CANONICAL_TYPE(Class, Base) \
1185 case Type::Class: llvm_unreachable("deducing non-canonical type: " #Class);
1186#define TYPE(Class, Base)
1187#include "clang/AST/TypeNodes.def"
1188
1189 case Type::TemplateTypeParm:
1190 case Type::SubstTemplateTypeParmPack:
1191 llvm_unreachable("Type nodes handled above");
Douglas Gregor194ea692012-03-11 03:29:50 +00001192
1193 // These types cannot be dependent, so simply check whether the types are
1194 // the same.
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001195 case Type::Builtin:
Douglas Gregor39c02722011-06-15 16:02:29 +00001196 case Type::VariableArray:
1197 case Type::Vector:
1198 case Type::FunctionNoProto:
1199 case Type::Record:
1200 case Type::Enum:
1201 case Type::ObjCObject:
1202 case Type::ObjCInterface:
Douglas Gregor194ea692012-03-11 03:29:50 +00001203 case Type::ObjCObjectPointer: {
1204 if (TDF & TDF_SkipNonDependent)
1205 return Sema::TDK_Success;
1206
1207 if (TDF & TDF_IgnoreQualifiers) {
1208 Param = Param.getUnqualifiedType();
1209 Arg = Arg.getUnqualifiedType();
1210 }
1211
1212 return Param == Arg? Sema::TDK_Success : Sema::TDK_NonDeducedMismatch;
1213 }
1214
Douglas Gregor39c02722011-06-15 16:02:29 +00001215 // _Complex T [placeholder extension]
1216 case Type::Complex:
1217 if (const ComplexType *ComplexArg = Arg->getAs<ComplexType>())
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001218 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
Douglas Gregor39c02722011-06-15 16:02:29 +00001219 cast<ComplexType>(Param)->getElementType(),
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001220 ComplexArg->getElementType(),
1221 Info, Deduced, TDF);
Douglas Gregor39c02722011-06-15 16:02:29 +00001222
1223 return Sema::TDK_NonDeducedMismatch;
Eli Friedman0dfb8892011-10-06 23:00:33 +00001224
1225 // _Atomic T [extension]
1226 case Type::Atomic:
1227 if (const AtomicType *AtomicArg = Arg->getAs<AtomicType>())
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001228 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
Eli Friedman0dfb8892011-10-06 23:00:33 +00001229 cast<AtomicType>(Param)->getValueType(),
1230 AtomicArg->getValueType(),
1231 Info, Deduced, TDF);
1232
1233 return Sema::TDK_NonDeducedMismatch;
1234
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001235 // T *
Douglas Gregor5cdac0a2009-06-04 00:21:18 +00001236 case Type::Pointer: {
John McCallbb4ea812010-05-13 07:48:05 +00001237 QualType PointeeType;
1238 if (const PointerType *PointerArg = Arg->getAs<PointerType>()) {
1239 PointeeType = PointerArg->getPointeeType();
1240 } else if (const ObjCObjectPointerType *PointerArg
1241 = Arg->getAs<ObjCObjectPointerType>()) {
1242 PointeeType = PointerArg->getPointeeType();
1243 } else {
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001244 return Sema::TDK_NonDeducedMismatch;
John McCallbb4ea812010-05-13 07:48:05 +00001245 }
Mike Stump11289f42009-09-09 15:08:12 +00001246
Douglas Gregorfc516c92009-06-26 23:27:24 +00001247 unsigned SubTDF = TDF & (TDF_IgnoreQualifiers | TDF_DerivedClass);
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001248 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1249 cast<PointerType>(Param)->getPointeeType(),
John McCallbb4ea812010-05-13 07:48:05 +00001250 PointeeType,
Douglas Gregorfc516c92009-06-26 23:27:24 +00001251 Info, Deduced, SubTDF);
Douglas Gregor5cdac0a2009-06-04 00:21:18 +00001252 }
Mike Stump11289f42009-09-09 15:08:12 +00001253
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001254 // T &
Douglas Gregor5cdac0a2009-06-04 00:21:18 +00001255 case Type::LValueReference: {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001256 const LValueReferenceType *ReferenceArg = Arg->getAs<LValueReferenceType>();
Douglas Gregor5cdac0a2009-06-04 00:21:18 +00001257 if (!ReferenceArg)
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001258 return Sema::TDK_NonDeducedMismatch;
Mike Stump11289f42009-09-09 15:08:12 +00001259
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001260 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
Douglas Gregor5cdac0a2009-06-04 00:21:18 +00001261 cast<LValueReferenceType>(Param)->getPointeeType(),
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001262 ReferenceArg->getPointeeType(), Info, Deduced, 0);
Douglas Gregor5cdac0a2009-06-04 00:21:18 +00001263 }
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001264
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001265 // T && [C++0x]
Douglas Gregor5cdac0a2009-06-04 00:21:18 +00001266 case Type::RValueReference: {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001267 const RValueReferenceType *ReferenceArg = Arg->getAs<RValueReferenceType>();
Douglas Gregor5cdac0a2009-06-04 00:21:18 +00001268 if (!ReferenceArg)
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001269 return Sema::TDK_NonDeducedMismatch;
Mike Stump11289f42009-09-09 15:08:12 +00001270
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001271 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1272 cast<RValueReferenceType>(Param)->getPointeeType(),
1273 ReferenceArg->getPointeeType(),
1274 Info, Deduced, 0);
Douglas Gregor5cdac0a2009-06-04 00:21:18 +00001275 }
Mike Stump11289f42009-09-09 15:08:12 +00001276
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001277 // T [] (implied, but not stated explicitly)
Anders Carlsson35533d12009-06-04 04:11:30 +00001278 case Type::IncompleteArray: {
Mike Stump11289f42009-09-09 15:08:12 +00001279 const IncompleteArrayType *IncompleteArrayArg =
Chandler Carruthc1263112010-02-07 21:33:28 +00001280 S.Context.getAsIncompleteArrayType(Arg);
Anders Carlsson35533d12009-06-04 04:11:30 +00001281 if (!IncompleteArrayArg)
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001282 return Sema::TDK_NonDeducedMismatch;
Mike Stump11289f42009-09-09 15:08:12 +00001283
John McCallf7332682010-08-19 00:20:19 +00001284 unsigned SubTDF = TDF & TDF_IgnoreQualifiers;
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001285 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1286 S.Context.getAsIncompleteArrayType(Param)->getElementType(),
1287 IncompleteArrayArg->getElementType(),
1288 Info, Deduced, SubTDF);
Anders Carlsson35533d12009-06-04 04:11:30 +00001289 }
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001290
1291 // T [integer-constant]
Anders Carlsson35533d12009-06-04 04:11:30 +00001292 case Type::ConstantArray: {
Mike Stump11289f42009-09-09 15:08:12 +00001293 const ConstantArrayType *ConstantArrayArg =
Chandler Carruthc1263112010-02-07 21:33:28 +00001294 S.Context.getAsConstantArrayType(Arg);
Anders Carlsson35533d12009-06-04 04:11:30 +00001295 if (!ConstantArrayArg)
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001296 return Sema::TDK_NonDeducedMismatch;
Mike Stump11289f42009-09-09 15:08:12 +00001297
1298 const ConstantArrayType *ConstantArrayParm =
Chandler Carruthc1263112010-02-07 21:33:28 +00001299 S.Context.getAsConstantArrayType(Param);
Anders Carlsson35533d12009-06-04 04:11:30 +00001300 if (ConstantArrayArg->getSize() != ConstantArrayParm->getSize())
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001301 return Sema::TDK_NonDeducedMismatch;
Mike Stump11289f42009-09-09 15:08:12 +00001302
John McCallf7332682010-08-19 00:20:19 +00001303 unsigned SubTDF = TDF & TDF_IgnoreQualifiers;
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001304 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1305 ConstantArrayParm->getElementType(),
1306 ConstantArrayArg->getElementType(),
1307 Info, Deduced, SubTDF);
Anders Carlsson35533d12009-06-04 04:11:30 +00001308 }
1309
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001310 // type [i]
1311 case Type::DependentSizedArray: {
Chandler Carruthc1263112010-02-07 21:33:28 +00001312 const ArrayType *ArrayArg = S.Context.getAsArrayType(Arg);
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001313 if (!ArrayArg)
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001314 return Sema::TDK_NonDeducedMismatch;
Mike Stump11289f42009-09-09 15:08:12 +00001315
John McCallf7332682010-08-19 00:20:19 +00001316 unsigned SubTDF = TDF & TDF_IgnoreQualifiers;
1317
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001318 // Check the element type of the arrays
1319 const DependentSizedArrayType *DependentArrayParm
Chandler Carruthc1263112010-02-07 21:33:28 +00001320 = S.Context.getAsDependentSizedArrayType(Param);
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001321 if (Sema::TemplateDeductionResult Result
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001322 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1323 DependentArrayParm->getElementType(),
1324 ArrayArg->getElementType(),
1325 Info, Deduced, SubTDF))
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001326 return Result;
Mike Stump11289f42009-09-09 15:08:12 +00001327
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001328 // Determine the array bound is something we can deduce.
Mike Stump11289f42009-09-09 15:08:12 +00001329 NonTypeTemplateParmDecl *NTTP
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001330 = getDeducedParameterFromExpr(DependentArrayParm->getSizeExpr());
1331 if (!NTTP)
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001332 return Sema::TDK_Success;
Mike Stump11289f42009-09-09 15:08:12 +00001333
1334 // We can perform template argument deduction for the given non-type
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001335 // template parameter.
Mike Stump11289f42009-09-09 15:08:12 +00001336 assert(NTTP->getDepth() == 0 &&
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001337 "Cannot deduce non-type template argument at depth > 0");
Mike Stump11289f42009-09-09 15:08:12 +00001338 if (const ConstantArrayType *ConstantArrayArg
Anders Carlsson3a106e02009-06-16 22:44:31 +00001339 = dyn_cast<ConstantArrayType>(ArrayArg)) {
1340 llvm::APSInt Size(ConstantArrayArg->getSize());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001341 return DeduceNonTypeTemplateArgument(S, NTTP, Size,
Douglas Gregor0a29a052010-03-26 05:50:28 +00001342 S.Context.getSizeType(),
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00001343 /*ArrayBound=*/true,
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001344 Info, Deduced);
Anders Carlsson3a106e02009-06-16 22:44:31 +00001345 }
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001346 if (const DependentSizedArrayType *DependentArrayArg
1347 = dyn_cast<DependentSizedArrayType>(ArrayArg))
Douglas Gregor7a49ead2010-12-22 23:15:38 +00001348 if (DependentArrayArg->getSizeExpr())
1349 return DeduceNonTypeTemplateArgument(S, NTTP,
1350 DependentArrayArg->getSizeExpr(),
1351 Info, Deduced);
Mike Stump11289f42009-09-09 15:08:12 +00001352
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001353 // Incomplete type does not match a dependently-sized array type
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001354 return Sema::TDK_NonDeducedMismatch;
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001355 }
Mike Stump11289f42009-09-09 15:08:12 +00001356
1357 // type(*)(T)
1358 // T(*)()
1359 // T(*)(T)
Anders Carlsson2128ec72009-06-08 15:19:08 +00001360 case Type::FunctionProto: {
Douglas Gregor85f240c2011-01-25 17:19:08 +00001361 unsigned SubTDF = TDF & TDF_TopLevelParameterTypeList;
Mike Stump11289f42009-09-09 15:08:12 +00001362 const FunctionProtoType *FunctionProtoArg =
Anders Carlsson2128ec72009-06-08 15:19:08 +00001363 dyn_cast<FunctionProtoType>(Arg);
1364 if (!FunctionProtoArg)
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001365 return Sema::TDK_NonDeducedMismatch;
Mike Stump11289f42009-09-09 15:08:12 +00001366
1367 const FunctionProtoType *FunctionProtoParam =
Anders Carlsson2128ec72009-06-08 15:19:08 +00001368 cast<FunctionProtoType>(Param);
Anders Carlsson096e6ee2009-06-08 19:22:23 +00001369
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001370 if (FunctionProtoParam->getTypeQuals()
Douglas Gregor54e462a2011-01-26 16:50:54 +00001371 != FunctionProtoArg->getTypeQuals() ||
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001372 FunctionProtoParam->getRefQualifier()
Douglas Gregor54e462a2011-01-26 16:50:54 +00001373 != FunctionProtoArg->getRefQualifier() ||
1374 FunctionProtoParam->isVariadic() != FunctionProtoArg->isVariadic())
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001375 return Sema::TDK_NonDeducedMismatch;
Anders Carlsson096e6ee2009-06-08 19:22:23 +00001376
Anders Carlsson2128ec72009-06-08 15:19:08 +00001377 // Check return types.
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001378 if (Sema::TemplateDeductionResult Result
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001379 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1380 FunctionProtoParam->getResultType(),
1381 FunctionProtoArg->getResultType(),
1382 Info, Deduced, 0))
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001383 return Result;
Mike Stump11289f42009-09-09 15:08:12 +00001384
Alp Toker9cacbab2014-01-20 20:26:09 +00001385 return DeduceTemplateArguments(
1386 S, TemplateParams, FunctionProtoParam->param_type_begin(),
1387 FunctionProtoParam->getNumParams(),
1388 FunctionProtoArg->param_type_begin(),
1389 FunctionProtoArg->getNumParams(), Info, Deduced, SubTDF);
Anders Carlsson2128ec72009-06-08 15:19:08 +00001390 }
Mike Stump11289f42009-09-09 15:08:12 +00001391
John McCalle78aac42010-03-10 03:28:59 +00001392 case Type::InjectedClassName: {
1393 // Treat a template's injected-class-name as if the template
1394 // specialization type had been used.
John McCall2408e322010-04-27 00:57:59 +00001395 Param = cast<InjectedClassNameType>(Param)
1396 ->getInjectedSpecializationType();
John McCalle78aac42010-03-10 03:28:59 +00001397 assert(isa<TemplateSpecializationType>(Param) &&
1398 "injected class name is not a template specialization type");
1399 // fall through
1400 }
1401
Douglas Gregor705c9002009-06-26 20:57:09 +00001402 // template-name<T> (where template-name refers to a class template)
Douglas Gregor4fbe3e32009-06-09 16:35:58 +00001403 // template-name<i>
Douglas Gregoradee3e32009-11-11 23:06:43 +00001404 // TT<T>
1405 // TT<i>
1406 // TT<>
Douglas Gregor4fbe3e32009-06-09 16:35:58 +00001407 case Type::TemplateSpecialization: {
1408 const TemplateSpecializationType *SpecParam
1409 = cast<TemplateSpecializationType>(Param);
Mike Stump11289f42009-09-09 15:08:12 +00001410
Douglas Gregore81f3e72009-07-07 23:09:34 +00001411 // Try to deduce template arguments from the template-id.
1412 Sema::TemplateDeductionResult Result
Chandler Carruthc1263112010-02-07 21:33:28 +00001413 = DeduceTemplateArguments(S, TemplateParams, SpecParam, Arg,
Douglas Gregore81f3e72009-07-07 23:09:34 +00001414 Info, Deduced);
Mike Stump11289f42009-09-09 15:08:12 +00001415
Douglas Gregor42909752009-09-30 22:13:51 +00001416 if (Result && (TDF & TDF_DerivedClass)) {
Douglas Gregore81f3e72009-07-07 23:09:34 +00001417 // C++ [temp.deduct.call]p3b3:
1418 // If P is a class, and P has the form template-id, then A can be a
1419 // derived class of the deduced A. Likewise, if P is a pointer to a
Mike Stump11289f42009-09-09 15:08:12 +00001420 // class of the form template-id, A can be a pointer to a derived
Douglas Gregore81f3e72009-07-07 23:09:34 +00001421 // class pointed to by the deduced A.
1422 //
1423 // More importantly:
Mike Stump11289f42009-09-09 15:08:12 +00001424 // These alternatives are considered only if type deduction would
Douglas Gregore81f3e72009-07-07 23:09:34 +00001425 // otherwise fail.
Chandler Carruthc1263112010-02-07 21:33:28 +00001426 if (const RecordType *RecordT = Arg->getAs<RecordType>()) {
1427 // We cannot inspect base classes as part of deduction when the type
1428 // is incomplete, so either instantiate any templates necessary to
1429 // complete the type, or skip over it if it cannot be completed.
John McCallbc077cf2010-02-08 23:07:23 +00001430 if (S.RequireCompleteType(Info.getLocation(), Arg, 0))
Chandler Carruthc1263112010-02-07 21:33:28 +00001431 return Result;
1432
Douglas Gregore81f3e72009-07-07 23:09:34 +00001433 // Use data recursion to crawl through the list of base classes.
Mike Stump11289f42009-09-09 15:08:12 +00001434 // Visited contains the set of nodes we have already visited, while
Douglas Gregore81f3e72009-07-07 23:09:34 +00001435 // ToVisit is our stack of records that we still need to visit.
1436 llvm::SmallPtrSet<const RecordType *, 8> Visited;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001437 SmallVector<const RecordType *, 8> ToVisit;
Douglas Gregore81f3e72009-07-07 23:09:34 +00001438 ToVisit.push_back(RecordT);
1439 bool Successful = false;
Benjamin Kramer4d08ccb2012-01-20 16:39:18 +00001440 SmallVector<DeducedTemplateArgument, 8> DeducedOrig(Deduced.begin(),
1441 Deduced.end());
Douglas Gregore81f3e72009-07-07 23:09:34 +00001442 while (!ToVisit.empty()) {
1443 // Retrieve the next class in the inheritance hierarchy.
Robert Wilhelm25284cc2013-08-23 16:11:15 +00001444 const RecordType *NextT = ToVisit.pop_back_val();
Mike Stump11289f42009-09-09 15:08:12 +00001445
Douglas Gregore81f3e72009-07-07 23:09:34 +00001446 // If we have already seen this type, skip it.
1447 if (!Visited.insert(NextT))
1448 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001449
Douglas Gregore81f3e72009-07-07 23:09:34 +00001450 // If this is a base class, try to perform template argument
1451 // deduction from it.
1452 if (NextT != RecordT) {
Richard Trieu23bafad2012-11-07 21:17:13 +00001453 TemplateDeductionInfo BaseInfo(Info.getLocation());
Douglas Gregore81f3e72009-07-07 23:09:34 +00001454 Sema::TemplateDeductionResult BaseResult
Chandler Carruthc1263112010-02-07 21:33:28 +00001455 = DeduceTemplateArguments(S, TemplateParams, SpecParam,
Richard Trieu23bafad2012-11-07 21:17:13 +00001456 QualType(NextT, 0), BaseInfo,
1457 Deduced);
Mike Stump11289f42009-09-09 15:08:12 +00001458
Douglas Gregore81f3e72009-07-07 23:09:34 +00001459 // If template argument deduction for this base was successful,
Douglas Gregore0f7a8a2010-11-02 00:02:34 +00001460 // note that we had some success. Otherwise, ignore any deductions
1461 // from this base class.
1462 if (BaseResult == Sema::TDK_Success) {
Douglas Gregore81f3e72009-07-07 23:09:34 +00001463 Successful = true;
Benjamin Kramer4d08ccb2012-01-20 16:39:18 +00001464 DeducedOrig.clear();
1465 DeducedOrig.append(Deduced.begin(), Deduced.end());
Richard Trieu23bafad2012-11-07 21:17:13 +00001466 Info.Param = BaseInfo.Param;
1467 Info.FirstArg = BaseInfo.FirstArg;
1468 Info.SecondArg = BaseInfo.SecondArg;
Douglas Gregore0f7a8a2010-11-02 00:02:34 +00001469 }
1470 else
1471 Deduced = DeducedOrig;
Douglas Gregore81f3e72009-07-07 23:09:34 +00001472 }
Mike Stump11289f42009-09-09 15:08:12 +00001473
Douglas Gregore81f3e72009-07-07 23:09:34 +00001474 // Visit base classes
1475 CXXRecordDecl *Next = cast<CXXRecordDecl>(NextT->getDecl());
1476 for (CXXRecordDecl::base_class_iterator Base = Next->bases_begin(),
1477 BaseEnd = Next->bases_end();
Sebastian Redl1054fae2009-10-25 17:03:50 +00001478 Base != BaseEnd; ++Base) {
Mike Stump11289f42009-09-09 15:08:12 +00001479 assert(Base->getType()->isRecordType() &&
Douglas Gregore81f3e72009-07-07 23:09:34 +00001480 "Base class that isn't a record?");
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001481 ToVisit.push_back(Base->getType()->getAs<RecordType>());
Douglas Gregore81f3e72009-07-07 23:09:34 +00001482 }
1483 }
Mike Stump11289f42009-09-09 15:08:12 +00001484
Douglas Gregore81f3e72009-07-07 23:09:34 +00001485 if (Successful)
1486 return Sema::TDK_Success;
1487 }
Mike Stump11289f42009-09-09 15:08:12 +00001488
Douglas Gregore81f3e72009-07-07 23:09:34 +00001489 }
Mike Stump11289f42009-09-09 15:08:12 +00001490
Douglas Gregore81f3e72009-07-07 23:09:34 +00001491 return Result;
Douglas Gregor4fbe3e32009-06-09 16:35:58 +00001492 }
1493
Douglas Gregor637d9982009-06-10 23:47:09 +00001494 // T type::*
1495 // T T::*
1496 // T (type::*)()
1497 // type (T::*)()
1498 // type (type::*)(T)
1499 // type (T::*)(T)
1500 // T (type::*)(T)
1501 // T (T::*)()
1502 // T (T::*)(T)
1503 case Type::MemberPointer: {
1504 const MemberPointerType *MemPtrParam = cast<MemberPointerType>(Param);
1505 const MemberPointerType *MemPtrArg = dyn_cast<MemberPointerType>(Arg);
1506 if (!MemPtrArg)
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001507 return Sema::TDK_NonDeducedMismatch;
Douglas Gregor637d9982009-06-10 23:47:09 +00001508
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001509 if (Sema::TemplateDeductionResult Result
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001510 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1511 MemPtrParam->getPointeeType(),
1512 MemPtrArg->getPointeeType(),
1513 Info, Deduced,
1514 TDF & TDF_IgnoreQualifiers))
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001515 return Result;
1516
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001517 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1518 QualType(MemPtrParam->getClass(), 0),
1519 QualType(MemPtrArg->getClass(), 0),
Douglas Gregor194ea692012-03-11 03:29:50 +00001520 Info, Deduced,
1521 TDF & TDF_IgnoreQualifiers);
Douglas Gregor637d9982009-06-10 23:47:09 +00001522 }
1523
Anders Carlsson15f1dd12009-06-12 22:56:54 +00001524 // (clang extension)
1525 //
Mike Stump11289f42009-09-09 15:08:12 +00001526 // type(^)(T)
1527 // T(^)()
1528 // T(^)(T)
Anders Carlssona767eee2009-06-12 16:23:10 +00001529 case Type::BlockPointer: {
1530 const BlockPointerType *BlockPtrParam = cast<BlockPointerType>(Param);
1531 const BlockPointerType *BlockPtrArg = dyn_cast<BlockPointerType>(Arg);
Mike Stump11289f42009-09-09 15:08:12 +00001532
Anders Carlssona767eee2009-06-12 16:23:10 +00001533 if (!BlockPtrArg)
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001534 return Sema::TDK_NonDeducedMismatch;
Mike Stump11289f42009-09-09 15:08:12 +00001535
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001536 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1537 BlockPtrParam->getPointeeType(),
1538 BlockPtrArg->getPointeeType(),
1539 Info, Deduced, 0);
Anders Carlssona767eee2009-06-12 16:23:10 +00001540 }
1541
Douglas Gregor39c02722011-06-15 16:02:29 +00001542 // (clang extension)
1543 //
1544 // T __attribute__(((ext_vector_type(<integral constant>))))
1545 case Type::ExtVector: {
1546 const ExtVectorType *VectorParam = cast<ExtVectorType>(Param);
1547 if (const ExtVectorType *VectorArg = dyn_cast<ExtVectorType>(Arg)) {
1548 // Make sure that the vectors have the same number of elements.
1549 if (VectorParam->getNumElements() != VectorArg->getNumElements())
1550 return Sema::TDK_NonDeducedMismatch;
1551
1552 // Perform deduction on the element types.
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001553 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1554 VectorParam->getElementType(),
1555 VectorArg->getElementType(),
1556 Info, Deduced, TDF);
Douglas Gregor39c02722011-06-15 16:02:29 +00001557 }
1558
1559 if (const DependentSizedExtVectorType *VectorArg
1560 = dyn_cast<DependentSizedExtVectorType>(Arg)) {
1561 // We can't check the number of elements, since the argument has a
1562 // dependent number of elements. This can only occur during partial
1563 // ordering.
1564
1565 // Perform deduction on the element types.
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001566 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1567 VectorParam->getElementType(),
1568 VectorArg->getElementType(),
1569 Info, Deduced, TDF);
Douglas Gregor39c02722011-06-15 16:02:29 +00001570 }
1571
1572 return Sema::TDK_NonDeducedMismatch;
1573 }
1574
1575 // (clang extension)
1576 //
1577 // T __attribute__(((ext_vector_type(N))))
1578 case Type::DependentSizedExtVector: {
1579 const DependentSizedExtVectorType *VectorParam
1580 = cast<DependentSizedExtVectorType>(Param);
1581
1582 if (const ExtVectorType *VectorArg = dyn_cast<ExtVectorType>(Arg)) {
1583 // Perform deduction on the element types.
1584 if (Sema::TemplateDeductionResult Result
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001585 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1586 VectorParam->getElementType(),
1587 VectorArg->getElementType(),
1588 Info, Deduced, TDF))
Douglas Gregor39c02722011-06-15 16:02:29 +00001589 return Result;
1590
1591 // Perform deduction on the vector size, if we can.
1592 NonTypeTemplateParmDecl *NTTP
1593 = getDeducedParameterFromExpr(VectorParam->getSizeExpr());
1594 if (!NTTP)
1595 return Sema::TDK_Success;
1596
1597 llvm::APSInt ArgSize(S.Context.getTypeSize(S.Context.IntTy), false);
1598 ArgSize = VectorArg->getNumElements();
1599 return DeduceNonTypeTemplateArgument(S, NTTP, ArgSize, S.Context.IntTy,
1600 false, Info, Deduced);
1601 }
1602
1603 if (const DependentSizedExtVectorType *VectorArg
1604 = dyn_cast<DependentSizedExtVectorType>(Arg)) {
1605 // Perform deduction on the element types.
1606 if (Sema::TemplateDeductionResult Result
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001607 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1608 VectorParam->getElementType(),
1609 VectorArg->getElementType(),
1610 Info, Deduced, TDF))
Douglas Gregor39c02722011-06-15 16:02:29 +00001611 return Result;
1612
1613 // Perform deduction on the vector size, if we can.
1614 NonTypeTemplateParmDecl *NTTP
1615 = getDeducedParameterFromExpr(VectorParam->getSizeExpr());
1616 if (!NTTP)
1617 return Sema::TDK_Success;
1618
1619 return DeduceNonTypeTemplateArgument(S, NTTP, VectorArg->getSizeExpr(),
1620 Info, Deduced);
1621 }
1622
1623 return Sema::TDK_NonDeducedMismatch;
1624 }
1625
Douglas Gregor637d9982009-06-10 23:47:09 +00001626 case Type::TypeOfExpr:
1627 case Type::TypeOf:
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +00001628 case Type::DependentName:
Douglas Gregor39c02722011-06-15 16:02:29 +00001629 case Type::UnresolvedUsing:
1630 case Type::Decltype:
1631 case Type::UnaryTransform:
1632 case Type::Auto:
1633 case Type::DependentTemplateSpecialization:
1634 case Type::PackExpansion:
Douglas Gregor637d9982009-06-10 23:47:09 +00001635 // No template argument deduction for these types
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001636 return Sema::TDK_Success;
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001637 }
1638
David Blaikiee4d798f2012-01-20 21:50:17 +00001639 llvm_unreachable("Invalid Type Class!");
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001640}
1641
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001642static Sema::TemplateDeductionResult
Chandler Carruthc1263112010-02-07 21:33:28 +00001643DeduceTemplateArguments(Sema &S,
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001644 TemplateParameterList *TemplateParams,
1645 const TemplateArgument &Param,
Douglas Gregor2fcb8632011-01-11 22:21:24 +00001646 TemplateArgument Arg,
John McCall19c1bfd2010-08-25 05:32:35 +00001647 TemplateDeductionInfo &Info,
Craig Topper79653572013-07-08 04:13:06 +00001648 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
Douglas Gregor2fcb8632011-01-11 22:21:24 +00001649 // If the template argument is a pack expansion, perform template argument
1650 // deduction against the pattern of that expansion. This only occurs during
1651 // partial ordering.
1652 if (Arg.isPackExpansion())
1653 Arg = Arg.getPackExpansionPattern();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001654
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001655 switch (Param.getKind()) {
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001656 case TemplateArgument::Null:
David Blaikie83d382b2011-09-23 05:06:16 +00001657 llvm_unreachable("Null template argument in parameter list");
Mike Stump11289f42009-09-09 15:08:12 +00001658
1659 case TemplateArgument::Type:
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001660 if (Arg.getKind() == TemplateArgument::Type)
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00001661 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1662 Param.getAsType(),
1663 Arg.getAsType(),
1664 Info, Deduced, 0);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001665 Info.FirstArg = Param;
1666 Info.SecondArg = Arg;
1667 return Sema::TDK_NonDeducedMismatch;
Douglas Gregore4ff4b52011-01-05 18:58:31 +00001668
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001669 case TemplateArgument::Template:
Douglas Gregoradee3e32009-11-11 23:06:43 +00001670 if (Arg.getKind() == TemplateArgument::Template)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001671 return DeduceTemplateArguments(S, TemplateParams,
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001672 Param.getAsTemplate(),
Douglas Gregoradee3e32009-11-11 23:06:43 +00001673 Arg.getAsTemplate(), Info, Deduced);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001674 Info.FirstArg = Param;
1675 Info.SecondArg = Arg;
1676 return Sema::TDK_NonDeducedMismatch;
Douglas Gregore4ff4b52011-01-05 18:58:31 +00001677
1678 case TemplateArgument::TemplateExpansion:
1679 llvm_unreachable("caller should handle pack expansions");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001680
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001681 case TemplateArgument::Declaration:
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001682 if (Arg.getKind() == TemplateArgument::Declaration &&
Eli Friedmanb826a002012-09-26 02:36:12 +00001683 isSameDeclaration(Param.getAsDecl(), Arg.getAsDecl()) &&
1684 Param.isDeclForReferenceParam() == Arg.isDeclForReferenceParam())
1685 return Sema::TDK_Success;
1686
1687 Info.FirstArg = Param;
1688 Info.SecondArg = Arg;
1689 return Sema::TDK_NonDeducedMismatch;
1690
1691 case TemplateArgument::NullPtr:
1692 if (Arg.getKind() == TemplateArgument::NullPtr &&
1693 S.Context.hasSameType(Param.getNullPtrType(), Arg.getNullPtrType()))
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001694 return Sema::TDK_Success;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001695
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001696 Info.FirstArg = Param;
1697 Info.SecondArg = Arg;
1698 return Sema::TDK_NonDeducedMismatch;
Mike Stump11289f42009-09-09 15:08:12 +00001699
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001700 case TemplateArgument::Integral:
1701 if (Arg.getKind() == TemplateArgument::Integral) {
Benjamin Kramer6003ad52012-06-07 15:09:51 +00001702 if (hasSameExtendedValue(Param.getAsIntegral(), Arg.getAsIntegral()))
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001703 return Sema::TDK_Success;
1704
1705 Info.FirstArg = Param;
1706 Info.SecondArg = Arg;
1707 return Sema::TDK_NonDeducedMismatch;
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001708 }
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001709
1710 if (Arg.getKind() == TemplateArgument::Expression) {
1711 Info.FirstArg = Param;
1712 Info.SecondArg = Arg;
1713 return Sema::TDK_NonDeducedMismatch;
1714 }
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001715
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001716 Info.FirstArg = Param;
1717 Info.SecondArg = Arg;
1718 return Sema::TDK_NonDeducedMismatch;
Mike Stump11289f42009-09-09 15:08:12 +00001719
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001720 case TemplateArgument::Expression: {
Mike Stump11289f42009-09-09 15:08:12 +00001721 if (NonTypeTemplateParmDecl *NTTP
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001722 = getDeducedParameterFromExpr(Param.getAsExpr())) {
1723 if (Arg.getKind() == TemplateArgument::Integral)
Chandler Carruthc1263112010-02-07 21:33:28 +00001724 return DeduceNonTypeTemplateArgument(S, NTTP,
Benjamin Kramer6003ad52012-06-07 15:09:51 +00001725 Arg.getAsIntegral(),
Douglas Gregor0a29a052010-03-26 05:50:28 +00001726 Arg.getIntegralType(),
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00001727 /*ArrayBound=*/false,
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001728 Info, Deduced);
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001729 if (Arg.getKind() == TemplateArgument::Expression)
Chandler Carruthc1263112010-02-07 21:33:28 +00001730 return DeduceNonTypeTemplateArgument(S, NTTP, Arg.getAsExpr(),
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001731 Info, Deduced);
Douglas Gregor2bb756a2009-11-13 23:45:44 +00001732 if (Arg.getKind() == TemplateArgument::Declaration)
Chandler Carruthc1263112010-02-07 21:33:28 +00001733 return DeduceNonTypeTemplateArgument(S, NTTP, Arg.getAsDecl(),
Douglas Gregor2bb756a2009-11-13 23:45:44 +00001734 Info, Deduced);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001735
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001736 Info.FirstArg = Param;
1737 Info.SecondArg = Arg;
1738 return Sema::TDK_NonDeducedMismatch;
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001739 }
Mike Stump11289f42009-09-09 15:08:12 +00001740
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001741 // Can't deduce anything, but that's okay.
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001742 return Sema::TDK_Success;
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001743 }
Anders Carlssonbc343912009-06-15 17:04:53 +00001744 case TemplateArgument::Pack:
Douglas Gregor7baabef2010-12-22 18:17:10 +00001745 llvm_unreachable("Argument packs should be expanded by the caller!");
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00001746 }
Mike Stump11289f42009-09-09 15:08:12 +00001747
David Blaikiee4d798f2012-01-20 21:50:17 +00001748 llvm_unreachable("Invalid TemplateArgument Kind!");
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001749}
1750
Douglas Gregor7baabef2010-12-22 18:17:10 +00001751/// \brief Determine whether there is a template argument to be used for
1752/// deduction.
1753///
1754/// This routine "expands" argument packs in-place, overriding its input
1755/// parameters so that \c Args[ArgIdx] will be the available template argument.
1756///
1757/// \returns true if there is another template argument (which will be at
1758/// \c Args[ArgIdx]), false otherwise.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001759static bool hasTemplateArgumentForDeduction(const TemplateArgument *&Args,
Douglas Gregor7baabef2010-12-22 18:17:10 +00001760 unsigned &ArgIdx,
1761 unsigned &NumArgs) {
1762 if (ArgIdx == NumArgs)
1763 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001764
Douglas Gregor7baabef2010-12-22 18:17:10 +00001765 const TemplateArgument &Arg = Args[ArgIdx];
1766 if (Arg.getKind() != TemplateArgument::Pack)
1767 return true;
1768
1769 assert(ArgIdx == NumArgs - 1 && "Pack not at the end of argument list?");
1770 Args = Arg.pack_begin();
1771 NumArgs = Arg.pack_size();
1772 ArgIdx = 0;
1773 return ArgIdx < NumArgs;
1774}
1775
Douglas Gregord0ad2942010-12-23 01:24:45 +00001776/// \brief Determine whether the given set of template arguments has a pack
1777/// expansion that is not the last template argument.
1778static bool hasPackExpansionBeforeEnd(const TemplateArgument *Args,
1779 unsigned NumArgs) {
1780 unsigned ArgIdx = 0;
1781 while (ArgIdx < NumArgs) {
1782 const TemplateArgument &Arg = Args[ArgIdx];
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001783
Douglas Gregord0ad2942010-12-23 01:24:45 +00001784 // Unwrap argument packs.
1785 if (Args[ArgIdx].getKind() == TemplateArgument::Pack) {
1786 Args = Arg.pack_begin();
1787 NumArgs = Arg.pack_size();
1788 ArgIdx = 0;
1789 continue;
1790 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001791
Douglas Gregord0ad2942010-12-23 01:24:45 +00001792 ++ArgIdx;
1793 if (ArgIdx == NumArgs)
1794 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001795
Douglas Gregord0ad2942010-12-23 01:24:45 +00001796 if (Arg.isPackExpansion())
1797 return true;
1798 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001799
Douglas Gregord0ad2942010-12-23 01:24:45 +00001800 return false;
1801}
1802
Douglas Gregor7baabef2010-12-22 18:17:10 +00001803static Sema::TemplateDeductionResult
1804DeduceTemplateArguments(Sema &S,
1805 TemplateParameterList *TemplateParams,
1806 const TemplateArgument *Params, unsigned NumParams,
1807 const TemplateArgument *Args, unsigned NumArgs,
1808 TemplateDeductionInfo &Info,
Richard Smith16b65392012-12-06 06:44:44 +00001809 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001810 // C++0x [temp.deduct.type]p9:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001811 // If the template argument list of P contains a pack expansion that is not
1812 // the last template argument, the entire template argument list is a
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001813 // non-deduced context.
Douglas Gregord0ad2942010-12-23 01:24:45 +00001814 if (hasPackExpansionBeforeEnd(Params, NumParams))
1815 return Sema::TDK_Success;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001816
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001817 // C++0x [temp.deduct.type]p9:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001818 // If P has a form that contains <T> or <i>, then each argument Pi of the
1819 // respective template argument list P is compared with the corresponding
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001820 // argument Ai of the corresponding template argument list of A.
Douglas Gregor7baabef2010-12-22 18:17:10 +00001821 unsigned ArgIdx = 0, ParamIdx = 0;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001822 for (; hasTemplateArgumentForDeduction(Params, ParamIdx, NumParams);
Douglas Gregor7baabef2010-12-22 18:17:10 +00001823 ++ParamIdx) {
1824 if (!Params[ParamIdx].isPackExpansion()) {
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001825 // The simple case: deduce template arguments by matching Pi and Ai.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001826
Douglas Gregor7baabef2010-12-22 18:17:10 +00001827 // Check whether we have enough arguments.
1828 if (!hasTemplateArgumentForDeduction(Args, ArgIdx, NumArgs))
Richard Smith16b65392012-12-06 06:44:44 +00001829 return Sema::TDK_Success;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001830
Douglas Gregor2fcb8632011-01-11 22:21:24 +00001831 if (Args[ArgIdx].isPackExpansion()) {
1832 // FIXME: We follow the logic of C++0x [temp.deduct.type]p22 here,
1833 // but applied to pack expansions that are template arguments.
Richard Smith44ecdbd2013-01-31 05:19:49 +00001834 return Sema::TDK_MiscellaneousDeductionFailure;
Douglas Gregor2fcb8632011-01-11 22:21:24 +00001835 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001836
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001837 // Perform deduction for this Pi/Ai pair.
Douglas Gregor7baabef2010-12-22 18:17:10 +00001838 if (Sema::TemplateDeductionResult Result
Douglas Gregor2fcb8632011-01-11 22:21:24 +00001839 = DeduceTemplateArguments(S, TemplateParams,
1840 Params[ParamIdx], Args[ArgIdx],
1841 Info, Deduced))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001842 return Result;
1843
Douglas Gregor7baabef2010-12-22 18:17:10 +00001844 // Move to the next argument.
1845 ++ArgIdx;
1846 continue;
1847 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001848
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001849 // The parameter is a pack expansion.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001850
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001851 // C++0x [temp.deduct.type]p9:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001852 // If Pi is a pack expansion, then the pattern of Pi is compared with
1853 // each remaining argument in the template argument list of A. Each
1854 // comparison deduces template arguments for subsequent positions in the
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001855 // template parameter packs expanded by Pi.
1856 TemplateArgument Pattern = Params[ParamIdx].getPackExpansionPattern();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001857
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001858 // Compute the set of template parameter indices that correspond to
1859 // parameter packs expanded by the pack expansion.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001860 SmallVector<unsigned, 2> PackIndices;
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001861 {
Benjamin Kramere0513cb2012-01-30 16:17:39 +00001862 llvm::SmallBitVector SawIndices(TemplateParams->size());
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001863 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001864 S.collectUnexpandedParameterPacks(Pattern, Unexpanded);
1865 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) {
1866 unsigned Depth, Index;
1867 llvm::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]);
1868 if (Depth == 0 && !SawIndices[Index]) {
1869 SawIndices[Index] = true;
1870 PackIndices.push_back(Index);
1871 }
1872 }
1873 }
1874 assert(!PackIndices.empty() && "Pack expansion without unexpanded packs?");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001875
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001876 // FIXME: If there are no remaining arguments, we can bail out early
1877 // and set any deduced parameter packs to an empty argument pack.
1878 // The latter part of this is a (minor) correctness issue.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001879
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001880 // Save the deduced template arguments for each parameter pack expanded
1881 // by this pack expansion, then clear out the deduction.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001882 SmallVector<DeducedTemplateArgument, 2>
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001883 SavedPacks(PackIndices.size());
Craig Topper0a4e1f52013-07-08 04:44:01 +00001884 NewlyDeducedPacksType NewlyDeducedPacks(PackIndices.size());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001885 PrepareArgumentPackDeduction(S, Deduced, PackIndices, SavedPacks,
Douglas Gregora8bd0d92011-01-10 17:35:05 +00001886 NewlyDeducedPacks);
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001887
1888 // Keep track of the deduced template arguments for each parameter pack
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001889 // expanded by this pack expansion (the outer index) and for each
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001890 // template argument (the inner SmallVectors).
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001891 bool HasAnyArguments = false;
1892 while (hasTemplateArgumentForDeduction(Args, ArgIdx, NumArgs)) {
1893 HasAnyArguments = true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001894
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001895 // Deduce template arguments from the pattern.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001896 if (Sema::TemplateDeductionResult Result
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001897 = DeduceTemplateArguments(S, TemplateParams, Pattern, Args[ArgIdx],
1898 Info, Deduced))
1899 return Result;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001900
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001901 // Capture the deduced template arguments for each parameter pack expanded
1902 // by this pack expansion, add them to the list of arguments we've deduced
1903 // for that pack, then clear out the deduced argument.
1904 for (unsigned I = 0, N = PackIndices.size(); I != N; ++I) {
1905 DeducedTemplateArgument &DeducedArg = Deduced[PackIndices[I]];
1906 if (!DeducedArg.isNull()) {
1907 NewlyDeducedPacks[I].push_back(DeducedArg);
1908 DeducedArg = DeducedTemplateArgument();
1909 }
1910 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001911
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001912 ++ArgIdx;
1913 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001914
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001915 // Build argument packs for each of the parameter packs expanded by this
1916 // pack expansion.
Douglas Gregorb94a6172011-01-10 17:53:52 +00001917 if (Sema::TemplateDeductionResult Result
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001918 = FinishArgumentPackDeduction(S, TemplateParams, HasAnyArguments,
Douglas Gregorb94a6172011-01-10 17:53:52 +00001919 Deduced, PackIndices, SavedPacks,
1920 NewlyDeducedPacks, Info))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001921 return Result;
Douglas Gregor7baabef2010-12-22 18:17:10 +00001922 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001923
Douglas Gregor7baabef2010-12-22 18:17:10 +00001924 return Sema::TDK_Success;
1925}
1926
Mike Stump11289f42009-09-09 15:08:12 +00001927static Sema::TemplateDeductionResult
Chandler Carruthc1263112010-02-07 21:33:28 +00001928DeduceTemplateArguments(Sema &S,
Douglas Gregor181aa4a2009-06-12 18:26:56 +00001929 TemplateParameterList *TemplateParams,
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001930 const TemplateArgumentList &ParamList,
1931 const TemplateArgumentList &ArgList,
John McCall19c1bfd2010-08-25 05:32:35 +00001932 TemplateDeductionInfo &Info,
Craig Topper79653572013-07-08 04:13:06 +00001933 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001934 return DeduceTemplateArguments(S, TemplateParams,
Douglas Gregor7baabef2010-12-22 18:17:10 +00001935 ParamList.data(), ParamList.size(),
1936 ArgList.data(), ArgList.size(),
1937 Info, Deduced);
Douglas Gregor55ca8f62009-06-04 00:03:07 +00001938}
1939
Douglas Gregor705c9002009-06-26 20:57:09 +00001940/// \brief Determine whether two template arguments are the same.
Mike Stump11289f42009-09-09 15:08:12 +00001941static bool isSameTemplateArg(ASTContext &Context,
Douglas Gregor705c9002009-06-26 20:57:09 +00001942 const TemplateArgument &X,
1943 const TemplateArgument &Y) {
1944 if (X.getKind() != Y.getKind())
1945 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001946
Douglas Gregor705c9002009-06-26 20:57:09 +00001947 switch (X.getKind()) {
1948 case TemplateArgument::Null:
David Blaikie83d382b2011-09-23 05:06:16 +00001949 llvm_unreachable("Comparing NULL template argument");
Mike Stump11289f42009-09-09 15:08:12 +00001950
Douglas Gregor705c9002009-06-26 20:57:09 +00001951 case TemplateArgument::Type:
1952 return Context.getCanonicalType(X.getAsType()) ==
1953 Context.getCanonicalType(Y.getAsType());
Mike Stump11289f42009-09-09 15:08:12 +00001954
Douglas Gregor705c9002009-06-26 20:57:09 +00001955 case TemplateArgument::Declaration:
Eli Friedmanb826a002012-09-26 02:36:12 +00001956 return isSameDeclaration(X.getAsDecl(), Y.getAsDecl()) &&
1957 X.isDeclForReferenceParam() == Y.isDeclForReferenceParam();
1958
1959 case TemplateArgument::NullPtr:
1960 return Context.hasSameType(X.getNullPtrType(), Y.getNullPtrType());
Mike Stump11289f42009-09-09 15:08:12 +00001961
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001962 case TemplateArgument::Template:
Douglas Gregore4ff4b52011-01-05 18:58:31 +00001963 case TemplateArgument::TemplateExpansion:
1964 return Context.getCanonicalTemplateName(
1965 X.getAsTemplateOrTemplatePattern()).getAsVoidPointer() ==
1966 Context.getCanonicalTemplateName(
1967 Y.getAsTemplateOrTemplatePattern()).getAsVoidPointer();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001968
Douglas Gregor705c9002009-06-26 20:57:09 +00001969 case TemplateArgument::Integral:
Benjamin Kramer6003ad52012-06-07 15:09:51 +00001970 return X.getAsIntegral() == Y.getAsIntegral();
Mike Stump11289f42009-09-09 15:08:12 +00001971
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001972 case TemplateArgument::Expression: {
1973 llvm::FoldingSetNodeID XID, YID;
1974 X.getAsExpr()->Profile(XID, Context, true);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001975 Y.getAsExpr()->Profile(YID, Context, true);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001976 return XID == YID;
1977 }
Mike Stump11289f42009-09-09 15:08:12 +00001978
Douglas Gregor705c9002009-06-26 20:57:09 +00001979 case TemplateArgument::Pack:
1980 if (X.pack_size() != Y.pack_size())
1981 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001982
1983 for (TemplateArgument::pack_iterator XP = X.pack_begin(),
1984 XPEnd = X.pack_end(),
Douglas Gregor705c9002009-06-26 20:57:09 +00001985 YP = Y.pack_begin();
Mike Stump11289f42009-09-09 15:08:12 +00001986 XP != XPEnd; ++XP, ++YP)
Douglas Gregor705c9002009-06-26 20:57:09 +00001987 if (!isSameTemplateArg(Context, *XP, *YP))
1988 return false;
1989
1990 return true;
1991 }
1992
David Blaikiee4d798f2012-01-20 21:50:17 +00001993 llvm_unreachable("Invalid TemplateArgument Kind!");
Douglas Gregor705c9002009-06-26 20:57:09 +00001994}
1995
Douglas Gregorca4686d2011-01-04 23:35:54 +00001996/// \brief Allocate a TemplateArgumentLoc where all locations have
1997/// been initialized to the given location.
1998///
1999/// \param S The semantic analysis object.
2000///
James Dennett634962f2012-06-14 21:40:34 +00002001/// \param Arg The template argument we are producing template argument
Douglas Gregorca4686d2011-01-04 23:35:54 +00002002/// location information for.
2003///
2004/// \param NTTPType For a declaration template argument, the type of
2005/// the non-type template parameter that corresponds to this template
2006/// argument.
2007///
2008/// \param Loc The source location to use for the resulting template
2009/// argument.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002010static TemplateArgumentLoc
Douglas Gregorca4686d2011-01-04 23:35:54 +00002011getTrivialTemplateArgumentLoc(Sema &S,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002012 const TemplateArgument &Arg,
Douglas Gregorca4686d2011-01-04 23:35:54 +00002013 QualType NTTPType,
2014 SourceLocation Loc) {
2015 switch (Arg.getKind()) {
2016 case TemplateArgument::Null:
2017 llvm_unreachable("Can't get a NULL template argument here");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002018
Douglas Gregorca4686d2011-01-04 23:35:54 +00002019 case TemplateArgument::Type:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002020 return TemplateArgumentLoc(Arg,
Douglas Gregorca4686d2011-01-04 23:35:54 +00002021 S.Context.getTrivialTypeSourceInfo(Arg.getAsType(), Loc));
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002022
Douglas Gregorca4686d2011-01-04 23:35:54 +00002023 case TemplateArgument::Declaration: {
2024 Expr *E
Douglas Gregoreb29d182011-01-05 17:40:24 +00002025 = S.BuildExpressionFromDeclTemplateArgument(Arg, NTTPType, Loc)
Douglas Gregor31f55dc2012-04-06 22:40:38 +00002026 .takeAs<Expr>();
Douglas Gregorca4686d2011-01-04 23:35:54 +00002027 return TemplateArgumentLoc(TemplateArgument(E), E);
2028 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002029
Eli Friedmanb826a002012-09-26 02:36:12 +00002030 case TemplateArgument::NullPtr: {
2031 Expr *E
2032 = S.BuildExpressionFromDeclTemplateArgument(Arg, NTTPType, Loc)
2033 .takeAs<Expr>();
2034 return TemplateArgumentLoc(TemplateArgument(NTTPType, /*isNullPtr*/true),
2035 E);
2036 }
2037
Douglas Gregorca4686d2011-01-04 23:35:54 +00002038 case TemplateArgument::Integral: {
2039 Expr *E
Douglas Gregoreb29d182011-01-05 17:40:24 +00002040 = S.BuildExpressionFromIntegralTemplateArgument(Arg, Loc).takeAs<Expr>();
Douglas Gregorca4686d2011-01-04 23:35:54 +00002041 return TemplateArgumentLoc(TemplateArgument(E), E);
2042 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002043
Douglas Gregor9d802122011-03-02 17:09:35 +00002044 case TemplateArgument::Template:
2045 case TemplateArgument::TemplateExpansion: {
2046 NestedNameSpecifierLocBuilder Builder;
2047 TemplateName Template = Arg.getAsTemplate();
2048 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName())
2049 Builder.MakeTrivial(S.Context, DTN->getQualifier(), Loc);
2050 else if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
2051 Builder.MakeTrivial(S.Context, QTN->getQualifier(), Loc);
2052
2053 if (Arg.getKind() == TemplateArgument::Template)
2054 return TemplateArgumentLoc(Arg,
2055 Builder.getWithLocInContext(S.Context),
2056 Loc);
2057
2058
2059 return TemplateArgumentLoc(Arg, Builder.getWithLocInContext(S.Context),
2060 Loc, Loc);
2061 }
Douglas Gregore4ff4b52011-01-05 18:58:31 +00002062
Douglas Gregorca4686d2011-01-04 23:35:54 +00002063 case TemplateArgument::Expression:
2064 return TemplateArgumentLoc(Arg, Arg.getAsExpr());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002065
Douglas Gregorca4686d2011-01-04 23:35:54 +00002066 case TemplateArgument::Pack:
2067 return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo());
2068 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002069
David Blaikiee4d798f2012-01-20 21:50:17 +00002070 llvm_unreachable("Invalid TemplateArgument Kind!");
Douglas Gregorca4686d2011-01-04 23:35:54 +00002071}
2072
2073
2074/// \brief Convert the given deduced template argument and add it to the set of
2075/// fully-converted template arguments.
Craig Topper79653572013-07-08 04:13:06 +00002076static bool
2077ConvertDeducedTemplateArgument(Sema &S, NamedDecl *Param,
2078 DeducedTemplateArgument Arg,
2079 NamedDecl *Template,
2080 QualType NTTPType,
2081 unsigned ArgumentPackIndex,
2082 TemplateDeductionInfo &Info,
2083 bool InFunctionTemplate,
2084 SmallVectorImpl<TemplateArgument> &Output) {
Douglas Gregorca4686d2011-01-04 23:35:54 +00002085 if (Arg.getKind() == TemplateArgument::Pack) {
2086 // This is a template argument pack, so check each of its arguments against
2087 // the template parameter.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002088 SmallVector<TemplateArgument, 2> PackedArgsBuilder;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002089 for (TemplateArgument::pack_iterator PA = Arg.pack_begin(),
Douglas Gregorf491ee22011-01-05 21:00:53 +00002090 PAEnd = Arg.pack_end();
Douglas Gregorca4686d2011-01-04 23:35:54 +00002091 PA != PAEnd; ++PA) {
Douglas Gregor51bc5712011-01-05 20:52:18 +00002092 // When converting the deduced template argument, append it to the
2093 // general output list. We need to do this so that the template argument
2094 // checking logic has all of the prior template arguments available.
Douglas Gregorca4686d2011-01-04 23:35:54 +00002095 DeducedTemplateArgument InnerArg(*PA);
2096 InnerArg.setDeducedFromArrayBound(Arg.wasDeducedFromArrayBound());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002097 if (ConvertDeducedTemplateArgument(S, Param, InnerArg, Template,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002098 NTTPType, PackedArgsBuilder.size(),
2099 Info, InFunctionTemplate, Output))
Douglas Gregorca4686d2011-01-04 23:35:54 +00002100 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002101
Douglas Gregor51bc5712011-01-05 20:52:18 +00002102 // Move the converted template argument into our argument pack.
Robert Wilhelm25284cc2013-08-23 16:11:15 +00002103 PackedArgsBuilder.push_back(Output.pop_back_val());
Douglas Gregorca4686d2011-01-04 23:35:54 +00002104 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002105
Douglas Gregorca4686d2011-01-04 23:35:54 +00002106 // Create the resulting argument pack.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002107 Output.push_back(TemplateArgument::CreatePackCopy(S.Context,
Douglas Gregor74c6d192011-01-11 23:09:57 +00002108 PackedArgsBuilder.data(),
2109 PackedArgsBuilder.size()));
Douglas Gregorca4686d2011-01-04 23:35:54 +00002110 return false;
2111 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002112
Douglas Gregorca4686d2011-01-04 23:35:54 +00002113 // Convert the deduced template argument into a template
2114 // argument that we can check, almost as if the user had written
2115 // the template argument explicitly.
2116 TemplateArgumentLoc ArgLoc = getTrivialTemplateArgumentLoc(S, Arg, NTTPType,
2117 Info.getLocation());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002118
Douglas Gregorca4686d2011-01-04 23:35:54 +00002119 // Check the template argument, converting it as necessary.
2120 return S.CheckTemplateArgument(Param, ArgLoc,
2121 Template,
2122 Template->getLocation(),
2123 Template->getSourceRange().getEnd(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002124 ArgumentPackIndex,
Douglas Gregorca4686d2011-01-04 23:35:54 +00002125 Output,
2126 InFunctionTemplate
2127 ? (Arg.wasDeducedFromArrayBound()
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002128 ? Sema::CTAK_DeducedFromArrayBound
Douglas Gregorca4686d2011-01-04 23:35:54 +00002129 : Sema::CTAK_Deduced)
2130 : Sema::CTAK_Specified);
2131}
2132
Douglas Gregor684268d2010-04-29 06:21:43 +00002133/// Complete template argument deduction for a class template partial
2134/// specialization.
2135static Sema::TemplateDeductionResult
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002136FinishTemplateArgumentDeduction(Sema &S,
Douglas Gregor684268d2010-04-29 06:21:43 +00002137 ClassTemplatePartialSpecializationDecl *Partial,
2138 const TemplateArgumentList &TemplateArgs,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002139 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
John McCall19c1bfd2010-08-25 05:32:35 +00002140 TemplateDeductionInfo &Info) {
Eli Friedman77dcc722012-02-08 03:07:05 +00002141 // Unevaluated SFINAE context.
2142 EnterExpressionEvaluationContext Unevaluated(S, Sema::Unevaluated);
Douglas Gregor684268d2010-04-29 06:21:43 +00002143 Sema::SFINAETrap Trap(S);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002144
Douglas Gregor684268d2010-04-29 06:21:43 +00002145 Sema::ContextRAII SavedContext(S, Partial);
2146
2147 // C++ [temp.deduct.type]p2:
2148 // [...] or if any template argument remains neither deduced nor
2149 // explicitly specified, template argument deduction fails.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002150 SmallVector<TemplateArgument, 4> Builder;
Douglas Gregoraef93f22011-01-04 22:23:38 +00002151 TemplateParameterList *PartialParams = Partial->getTemplateParameters();
2152 for (unsigned I = 0, N = PartialParams->size(); I != N; ++I) {
Douglas Gregorca4686d2011-01-04 23:35:54 +00002153 NamedDecl *Param = PartialParams->getParam(I);
Douglas Gregor684268d2010-04-29 06:21:43 +00002154 if (Deduced[I].isNull()) {
Douglas Gregorca4686d2011-01-04 23:35:54 +00002155 Info.Param = makeTemplateParameter(Param);
Douglas Gregor684268d2010-04-29 06:21:43 +00002156 return Sema::TDK_Incomplete;
2157 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002158
Douglas Gregorca4686d2011-01-04 23:35:54 +00002159 // We have deduced this argument, so it still needs to be
2160 // checked and converted.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002161
Douglas Gregorca4686d2011-01-04 23:35:54 +00002162 // First, for a non-type template parameter type that is
2163 // initialized by a declaration, we need the type of the
2164 // corresponding non-type template parameter.
2165 QualType NTTPType;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002166 if (NonTypeTemplateParmDecl *NTTP
Douglas Gregor51bc5712011-01-05 20:52:18 +00002167 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
Douglas Gregorca4686d2011-01-04 23:35:54 +00002168 NTTPType = NTTP->getType();
Douglas Gregor51bc5712011-01-05 20:52:18 +00002169 if (NTTPType->isDependentType()) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002170 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor51bc5712011-01-05 20:52:18 +00002171 Builder.data(), Builder.size());
2172 NTTPType = S.SubstType(NTTPType,
2173 MultiLevelTemplateArgumentList(TemplateArgs),
2174 NTTP->getLocation(),
2175 NTTP->getDeclName());
2176 if (NTTPType.isNull()) {
2177 Info.Param = makeTemplateParameter(Param);
2178 // FIXME: These template arguments are temporary. Free them!
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002179 Info.reset(TemplateArgumentList::CreateCopy(S.Context,
2180 Builder.data(),
Douglas Gregor51bc5712011-01-05 20:52:18 +00002181 Builder.size()));
2182 return Sema::TDK_SubstitutionFailure;
2183 }
2184 }
2185 }
2186
Douglas Gregorca4686d2011-01-04 23:35:54 +00002187 if (ConvertDeducedTemplateArgument(S, Param, Deduced[I],
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002188 Partial, NTTPType, 0, Info, false,
Douglas Gregorca4686d2011-01-04 23:35:54 +00002189 Builder)) {
2190 Info.Param = makeTemplateParameter(Param);
2191 // FIXME: These template arguments are temporary. Free them!
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002192 Info.reset(TemplateArgumentList::CreateCopy(S.Context, Builder.data(),
2193 Builder.size()));
Douglas Gregorca4686d2011-01-04 23:35:54 +00002194 return Sema::TDK_SubstitutionFailure;
2195 }
Douglas Gregor684268d2010-04-29 06:21:43 +00002196 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002197
Douglas Gregor684268d2010-04-29 06:21:43 +00002198 // Form the template argument list from the deduced template arguments.
2199 TemplateArgumentList *DeducedArgumentList
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002200 = TemplateArgumentList::CreateCopy(S.Context, Builder.data(),
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002201 Builder.size());
2202
Douglas Gregor684268d2010-04-29 06:21:43 +00002203 Info.reset(DeducedArgumentList);
2204
2205 // Substitute the deduced template arguments into the template
2206 // arguments of the class template partial specialization, and
2207 // verify that the instantiated template arguments are both valid
2208 // and are equivalent to the template arguments originally provided
2209 // to the class template.
John McCall19c1bfd2010-08-25 05:32:35 +00002210 LocalInstantiationScope InstScope(S);
Douglas Gregor684268d2010-04-29 06:21:43 +00002211 ClassTemplateDecl *ClassTemplate = Partial->getSpecializedTemplate();
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00002212 const ASTTemplateArgumentListInfo *PartialTemplArgInfo
Douglas Gregor684268d2010-04-29 06:21:43 +00002213 = Partial->getTemplateArgsAsWritten();
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00002214 const TemplateArgumentLoc *PartialTemplateArgs
2215 = PartialTemplArgInfo->getTemplateArgs();
Douglas Gregor684268d2010-04-29 06:21:43 +00002216
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00002217 TemplateArgumentListInfo InstArgs(PartialTemplArgInfo->LAngleLoc,
2218 PartialTemplArgInfo->RAngleLoc);
Douglas Gregor684268d2010-04-29 06:21:43 +00002219
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00002220 if (S.Subst(PartialTemplateArgs, PartialTemplArgInfo->NumTemplateArgs,
Douglas Gregor0f3feb42010-12-22 21:19:48 +00002221 InstArgs, MultiLevelTemplateArgumentList(*DeducedArgumentList))) {
2222 unsigned ArgIdx = InstArgs.size(), ParamIdx = ArgIdx;
2223 if (ParamIdx >= Partial->getTemplateParameters()->size())
2224 ParamIdx = Partial->getTemplateParameters()->size() - 1;
2225
2226 Decl *Param
2227 = const_cast<NamedDecl *>(
2228 Partial->getTemplateParameters()->getParam(ParamIdx));
2229 Info.Param = makeTemplateParameter(Param);
2230 Info.FirstArg = PartialTemplateArgs[ArgIdx].getArgument();
2231 return Sema::TDK_SubstitutionFailure;
Douglas Gregor684268d2010-04-29 06:21:43 +00002232 }
2233
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002234 SmallVector<TemplateArgument, 4> ConvertedInstArgs;
Douglas Gregor684268d2010-04-29 06:21:43 +00002235 if (S.CheckTemplateArgumentList(ClassTemplate, Partial->getLocation(),
Douglas Gregorca4686d2011-01-04 23:35:54 +00002236 InstArgs, false, ConvertedInstArgs))
Douglas Gregor684268d2010-04-29 06:21:43 +00002237 return Sema::TDK_SubstitutionFailure;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002238
Douglas Gregorca4686d2011-01-04 23:35:54 +00002239 TemplateParameterList *TemplateParams
2240 = ClassTemplate->getTemplateParameters();
2241 for (unsigned I = 0, E = TemplateParams->size(); I != E; ++I) {
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002242 TemplateArgument InstArg = ConvertedInstArgs.data()[I];
Douglas Gregor684268d2010-04-29 06:21:43 +00002243 if (!isSameTemplateArg(S.Context, TemplateArgs[I], InstArg)) {
Douglas Gregor66990032011-01-05 00:13:17 +00002244 Info.Param = makeTemplateParameter(TemplateParams->getParam(I));
Douglas Gregor684268d2010-04-29 06:21:43 +00002245 Info.FirstArg = TemplateArgs[I];
2246 Info.SecondArg = InstArg;
2247 return Sema::TDK_NonDeducedMismatch;
2248 }
2249 }
2250
2251 if (Trap.hasErrorOccurred())
2252 return Sema::TDK_SubstitutionFailure;
2253
2254 return Sema::TDK_Success;
2255}
2256
Douglas Gregor170bc422009-06-12 22:31:52 +00002257/// \brief Perform template argument deduction to determine whether
Larisse Voufo833b05a2013-08-06 07:33:00 +00002258/// the given template arguments match the given class template
Douglas Gregor170bc422009-06-12 22:31:52 +00002259/// partial specialization per C++ [temp.class.spec.match].
Douglas Gregor181aa4a2009-06-12 18:26:56 +00002260Sema::TemplateDeductionResult
Douglas Gregor55ca8f62009-06-04 00:03:07 +00002261Sema::DeduceTemplateArguments(ClassTemplatePartialSpecializationDecl *Partial,
Douglas Gregor181aa4a2009-06-12 18:26:56 +00002262 const TemplateArgumentList &TemplateArgs,
2263 TemplateDeductionInfo &Info) {
Douglas Gregorc5c01a62012-09-13 21:01:57 +00002264 if (Partial->isInvalidDecl())
2265 return TDK_Invalid;
2266
Douglas Gregor170bc422009-06-12 22:31:52 +00002267 // C++ [temp.class.spec.match]p2:
2268 // A partial specialization matches a given actual template
2269 // argument list if the template arguments of the partial
2270 // specialization can be deduced from the actual template argument
2271 // list (14.8.2).
Eli Friedman77dcc722012-02-08 03:07:05 +00002272
2273 // Unevaluated SFINAE context.
2274 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Douglas Gregore1416332009-06-14 08:02:22 +00002275 SFINAETrap Trap(*this);
Eli Friedman77dcc722012-02-08 03:07:05 +00002276
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002277 SmallVector<DeducedTemplateArgument, 4> Deduced;
Douglas Gregor55ca8f62009-06-04 00:03:07 +00002278 Deduced.resize(Partial->getTemplateParameters()->size());
Douglas Gregor181aa4a2009-06-12 18:26:56 +00002279 if (TemplateDeductionResult Result
Chandler Carruthc1263112010-02-07 21:33:28 +00002280 = ::DeduceTemplateArguments(*this,
Douglas Gregor181aa4a2009-06-12 18:26:56 +00002281 Partial->getTemplateParameters(),
Mike Stump11289f42009-09-09 15:08:12 +00002282 Partial->getTemplateArgs(),
Douglas Gregor181aa4a2009-06-12 18:26:56 +00002283 TemplateArgs, Info, Deduced))
2284 return Result;
Douglas Gregor637d9982009-06-10 23:47:09 +00002285
Richard Smith80934652012-07-16 01:09:10 +00002286 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end());
Nick Lewycky56412332014-01-11 02:37:12 +00002287 InstantiatingTemplate Inst(*this, Info.getLocation(), Partial, DeducedArgs,
2288 Info);
Alp Tokerd4a72d52013-10-08 08:09:04 +00002289 if (Inst.isInvalid())
Douglas Gregor181aa4a2009-06-12 18:26:56 +00002290 return TDK_InstantiationDepth;
Douglas Gregorb7ae10f2009-06-05 00:53:49 +00002291
Douglas Gregore1416332009-06-14 08:02:22 +00002292 if (Trap.hasErrorOccurred())
Douglas Gregor684268d2010-04-29 06:21:43 +00002293 return Sema::TDK_SubstitutionFailure;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002294
2295 return ::FinishTemplateArgumentDeduction(*this, Partial, TemplateArgs,
Douglas Gregor684268d2010-04-29 06:21:43 +00002296 Deduced, Info);
Douglas Gregor55ca8f62009-06-04 00:03:07 +00002297}
Douglas Gregor91772d12009-06-13 00:26:55 +00002298
Larisse Voufo39a1e502013-08-06 01:03:05 +00002299/// Complete template argument deduction for a variable template partial
2300/// specialization.
Larisse Voufo30616382013-08-23 22:21:36 +00002301/// TODO: Unify with ClassTemplatePartialSpecializationDecl version?
2302/// May require unifying ClassTemplate(Partial)SpecializationDecl and
2303/// VarTemplate(Partial)SpecializationDecl with a new data
2304/// structure Template(Partial)SpecializationDecl, and
2305/// using Template(Partial)SpecializationDecl as input type.
Larisse Voufo39a1e502013-08-06 01:03:05 +00002306static Sema::TemplateDeductionResult FinishTemplateArgumentDeduction(
2307 Sema &S, VarTemplatePartialSpecializationDecl *Partial,
2308 const TemplateArgumentList &TemplateArgs,
2309 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
2310 TemplateDeductionInfo &Info) {
2311 // Unevaluated SFINAE context.
2312 EnterExpressionEvaluationContext Unevaluated(S, Sema::Unevaluated);
2313 Sema::SFINAETrap Trap(S);
2314
2315 // C++ [temp.deduct.type]p2:
2316 // [...] or if any template argument remains neither deduced nor
2317 // explicitly specified, template argument deduction fails.
2318 SmallVector<TemplateArgument, 4> Builder;
2319 TemplateParameterList *PartialParams = Partial->getTemplateParameters();
2320 for (unsigned I = 0, N = PartialParams->size(); I != N; ++I) {
2321 NamedDecl *Param = PartialParams->getParam(I);
2322 if (Deduced[I].isNull()) {
2323 Info.Param = makeTemplateParameter(Param);
2324 return Sema::TDK_Incomplete;
2325 }
2326
2327 // We have deduced this argument, so it still needs to be
2328 // checked and converted.
2329
2330 // First, for a non-type template parameter type that is
2331 // initialized by a declaration, we need the type of the
2332 // corresponding non-type template parameter.
2333 QualType NTTPType;
2334 if (NonTypeTemplateParmDecl *NTTP =
2335 dyn_cast<NonTypeTemplateParmDecl>(Param)) {
2336 NTTPType = NTTP->getType();
2337 if (NTTPType->isDependentType()) {
2338 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
2339 Builder.data(), Builder.size());
2340 NTTPType =
2341 S.SubstType(NTTPType, MultiLevelTemplateArgumentList(TemplateArgs),
2342 NTTP->getLocation(), NTTP->getDeclName());
2343 if (NTTPType.isNull()) {
2344 Info.Param = makeTemplateParameter(Param);
2345 // FIXME: These template arguments are temporary. Free them!
2346 Info.reset(TemplateArgumentList::CreateCopy(S.Context, Builder.data(),
2347 Builder.size()));
2348 return Sema::TDK_SubstitutionFailure;
2349 }
2350 }
2351 }
2352
2353 if (ConvertDeducedTemplateArgument(S, Param, Deduced[I], Partial, NTTPType,
2354 0, Info, false, Builder)) {
2355 Info.Param = makeTemplateParameter(Param);
2356 // FIXME: These template arguments are temporary. Free them!
2357 Info.reset(TemplateArgumentList::CreateCopy(S.Context, Builder.data(),
2358 Builder.size()));
2359 return Sema::TDK_SubstitutionFailure;
2360 }
2361 }
2362
2363 // Form the template argument list from the deduced template arguments.
2364 TemplateArgumentList *DeducedArgumentList = TemplateArgumentList::CreateCopy(
2365 S.Context, Builder.data(), Builder.size());
2366
2367 Info.reset(DeducedArgumentList);
2368
2369 // Substitute the deduced template arguments into the template
2370 // arguments of the class template partial specialization, and
2371 // verify that the instantiated template arguments are both valid
2372 // and are equivalent to the template arguments originally provided
2373 // to the class template.
2374 LocalInstantiationScope InstScope(S);
2375 VarTemplateDecl *VarTemplate = Partial->getSpecializedTemplate();
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00002376 const ASTTemplateArgumentListInfo *PartialTemplArgInfo
2377 = Partial->getTemplateArgsAsWritten();
2378 const TemplateArgumentLoc *PartialTemplateArgs
2379 = PartialTemplArgInfo->getTemplateArgs();
Larisse Voufo39a1e502013-08-06 01:03:05 +00002380
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00002381 TemplateArgumentListInfo InstArgs(PartialTemplArgInfo->LAngleLoc,
2382 PartialTemplArgInfo->RAngleLoc);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002383
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00002384 if (S.Subst(PartialTemplateArgs, PartialTemplArgInfo->NumTemplateArgs,
Larisse Voufo39a1e502013-08-06 01:03:05 +00002385 InstArgs, MultiLevelTemplateArgumentList(*DeducedArgumentList))) {
2386 unsigned ArgIdx = InstArgs.size(), ParamIdx = ArgIdx;
2387 if (ParamIdx >= Partial->getTemplateParameters()->size())
2388 ParamIdx = Partial->getTemplateParameters()->size() - 1;
2389
2390 Decl *Param = const_cast<NamedDecl *>(
2391 Partial->getTemplateParameters()->getParam(ParamIdx));
2392 Info.Param = makeTemplateParameter(Param);
2393 Info.FirstArg = PartialTemplateArgs[ArgIdx].getArgument();
2394 return Sema::TDK_SubstitutionFailure;
2395 }
2396 SmallVector<TemplateArgument, 4> ConvertedInstArgs;
2397 if (S.CheckTemplateArgumentList(VarTemplate, Partial->getLocation(), InstArgs,
2398 false, ConvertedInstArgs))
2399 return Sema::TDK_SubstitutionFailure;
2400
2401 TemplateParameterList *TemplateParams = VarTemplate->getTemplateParameters();
2402 for (unsigned I = 0, E = TemplateParams->size(); I != E; ++I) {
2403 TemplateArgument InstArg = ConvertedInstArgs.data()[I];
2404 if (!isSameTemplateArg(S.Context, TemplateArgs[I], InstArg)) {
2405 Info.Param = makeTemplateParameter(TemplateParams->getParam(I));
2406 Info.FirstArg = TemplateArgs[I];
2407 Info.SecondArg = InstArg;
2408 return Sema::TDK_NonDeducedMismatch;
2409 }
2410 }
2411
2412 if (Trap.hasErrorOccurred())
2413 return Sema::TDK_SubstitutionFailure;
2414
2415 return Sema::TDK_Success;
2416}
2417
2418/// \brief Perform template argument deduction to determine whether
2419/// the given template arguments match the given variable template
2420/// partial specialization per C++ [temp.class.spec.match].
Larisse Voufo30616382013-08-23 22:21:36 +00002421/// TODO: Unify with ClassTemplatePartialSpecializationDecl version?
2422/// May require unifying ClassTemplate(Partial)SpecializationDecl and
2423/// VarTemplate(Partial)SpecializationDecl with a new data
2424/// structure Template(Partial)SpecializationDecl, and
2425/// using Template(Partial)SpecializationDecl as input type.
Larisse Voufo39a1e502013-08-06 01:03:05 +00002426Sema::TemplateDeductionResult
2427Sema::DeduceTemplateArguments(VarTemplatePartialSpecializationDecl *Partial,
2428 const TemplateArgumentList &TemplateArgs,
2429 TemplateDeductionInfo &Info) {
2430 if (Partial->isInvalidDecl())
2431 return TDK_Invalid;
2432
2433 // C++ [temp.class.spec.match]p2:
2434 // A partial specialization matches a given actual template
2435 // argument list if the template arguments of the partial
2436 // specialization can be deduced from the actual template argument
2437 // list (14.8.2).
2438
2439 // Unevaluated SFINAE context.
2440 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
2441 SFINAETrap Trap(*this);
2442
2443 SmallVector<DeducedTemplateArgument, 4> Deduced;
2444 Deduced.resize(Partial->getTemplateParameters()->size());
2445 if (TemplateDeductionResult Result = ::DeduceTemplateArguments(
2446 *this, Partial->getTemplateParameters(), Partial->getTemplateArgs(),
2447 TemplateArgs, Info, Deduced))
2448 return Result;
2449
2450 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end());
Nick Lewycky56412332014-01-11 02:37:12 +00002451 InstantiatingTemplate Inst(*this, Info.getLocation(), Partial, DeducedArgs,
2452 Info);
Alp Tokerd4a72d52013-10-08 08:09:04 +00002453 if (Inst.isInvalid())
Larisse Voufo39a1e502013-08-06 01:03:05 +00002454 return TDK_InstantiationDepth;
2455
2456 if (Trap.hasErrorOccurred())
2457 return Sema::TDK_SubstitutionFailure;
2458
2459 return ::FinishTemplateArgumentDeduction(*this, Partial, TemplateArgs,
2460 Deduced, Info);
2461}
2462
Douglas Gregorfc516c92009-06-26 23:27:24 +00002463/// \brief Determine whether the given type T is a simple-template-id type.
2464static bool isSimpleTemplateIdType(QualType T) {
Mike Stump11289f42009-09-09 15:08:12 +00002465 if (const TemplateSpecializationType *Spec
John McCall9dd450b2009-09-21 23:43:11 +00002466 = T->getAs<TemplateSpecializationType>())
Douglas Gregorfc516c92009-06-26 23:27:24 +00002467 return Spec->getTemplateName().getAsTemplateDecl() != 0;
Mike Stump11289f42009-09-09 15:08:12 +00002468
Douglas Gregorfc516c92009-06-26 23:27:24 +00002469 return false;
2470}
Douglas Gregor9b146582009-07-08 20:55:45 +00002471
2472/// \brief Substitute the explicitly-provided template arguments into the
2473/// given function template according to C++ [temp.arg.explicit].
2474///
2475/// \param FunctionTemplate the function template into which the explicit
2476/// template arguments will be substituted.
2477///
James Dennett634962f2012-06-14 21:40:34 +00002478/// \param ExplicitTemplateArgs the explicitly-specified template
Douglas Gregor9b146582009-07-08 20:55:45 +00002479/// arguments.
2480///
Mike Stump11289f42009-09-09 15:08:12 +00002481/// \param Deduced the deduced template arguments, which will be populated
Douglas Gregor9b146582009-07-08 20:55:45 +00002482/// with the converted and checked explicit template arguments.
2483///
Mike Stump11289f42009-09-09 15:08:12 +00002484/// \param ParamTypes will be populated with the instantiated function
Douglas Gregor9b146582009-07-08 20:55:45 +00002485/// parameters.
2486///
2487/// \param FunctionType if non-NULL, the result type of the function template
2488/// will also be instantiated and the pointed-to value will be updated with
2489/// the instantiated function type.
2490///
2491/// \param Info if substitution fails for any reason, this object will be
2492/// populated with more information about the failure.
2493///
2494/// \returns TDK_Success if substitution was successful, or some failure
2495/// condition.
2496Sema::TemplateDeductionResult
2497Sema::SubstituteExplicitTemplateArguments(
2498 FunctionTemplateDecl *FunctionTemplate,
Douglas Gregor739b107a2011-03-03 02:41:12 +00002499 TemplateArgumentListInfo &ExplicitTemplateArgs,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002500 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
2501 SmallVectorImpl<QualType> &ParamTypes,
Douglas Gregor9b146582009-07-08 20:55:45 +00002502 QualType *FunctionType,
2503 TemplateDeductionInfo &Info) {
2504 FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
2505 TemplateParameterList *TemplateParams
2506 = FunctionTemplate->getTemplateParameters();
2507
John McCall6b51f282009-11-23 01:53:49 +00002508 if (ExplicitTemplateArgs.size() == 0) {
Douglas Gregor9b146582009-07-08 20:55:45 +00002509 // No arguments to substitute; just copy over the parameter types and
2510 // fill in the function type.
2511 for (FunctionDecl::param_iterator P = Function->param_begin(),
2512 PEnd = Function->param_end();
2513 P != PEnd;
2514 ++P)
2515 ParamTypes.push_back((*P)->getType());
Mike Stump11289f42009-09-09 15:08:12 +00002516
Douglas Gregor9b146582009-07-08 20:55:45 +00002517 if (FunctionType)
2518 *FunctionType = Function->getType();
2519 return TDK_Success;
2520 }
Mike Stump11289f42009-09-09 15:08:12 +00002521
Eli Friedman77dcc722012-02-08 03:07:05 +00002522 // Unevaluated SFINAE context.
2523 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Mike Stump11289f42009-09-09 15:08:12 +00002524 SFINAETrap Trap(*this);
2525
Douglas Gregor9b146582009-07-08 20:55:45 +00002526 // C++ [temp.arg.explicit]p3:
Mike Stump11289f42009-09-09 15:08:12 +00002527 // Template arguments that are present shall be specified in the
2528 // declaration order of their corresponding template-parameters. The
Douglas Gregor9b146582009-07-08 20:55:45 +00002529 // template argument list shall not specify more template-arguments than
Mike Stump11289f42009-09-09 15:08:12 +00002530 // there are corresponding template-parameters.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002531 SmallVector<TemplateArgument, 4> Builder;
Mike Stump11289f42009-09-09 15:08:12 +00002532
2533 // Enter a new template instantiation context where we check the
Douglas Gregor9b146582009-07-08 20:55:45 +00002534 // explicitly-specified template arguments against this function template,
2535 // and then substitute them into the function parameter types.
Richard Smith80934652012-07-16 01:09:10 +00002536 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end());
Nick Lewycky56412332014-01-11 02:37:12 +00002537 InstantiatingTemplate Inst(*this, Info.getLocation(), FunctionTemplate,
2538 DeducedArgs,
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +00002539 ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution,
2540 Info);
Alp Tokerd4a72d52013-10-08 08:09:04 +00002541 if (Inst.isInvalid())
Douglas Gregor9b146582009-07-08 20:55:45 +00002542 return TDK_InstantiationDepth;
Mike Stump11289f42009-09-09 15:08:12 +00002543
Douglas Gregor9b146582009-07-08 20:55:45 +00002544 if (CheckTemplateArgumentList(FunctionTemplate,
Douglas Gregor9b146582009-07-08 20:55:45 +00002545 SourceLocation(),
John McCall6b51f282009-11-23 01:53:49 +00002546 ExplicitTemplateArgs,
Douglas Gregor9b146582009-07-08 20:55:45 +00002547 true,
Douglas Gregor1d72edd2010-05-08 19:15:54 +00002548 Builder) || Trap.hasErrorOccurred()) {
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002549 unsigned Index = Builder.size();
Douglas Gregor62c281a2010-05-09 01:26:06 +00002550 if (Index >= TemplateParams->size())
2551 Index = TemplateParams->size() - 1;
2552 Info.Param = makeTemplateParameter(TemplateParams->getParam(Index));
Douglas Gregor9b146582009-07-08 20:55:45 +00002553 return TDK_InvalidExplicitArguments;
Douglas Gregor1d72edd2010-05-08 19:15:54 +00002554 }
Mike Stump11289f42009-09-09 15:08:12 +00002555
Douglas Gregor9b146582009-07-08 20:55:45 +00002556 // Form the template argument list from the explicitly-specified
2557 // template arguments.
Mike Stump11289f42009-09-09 15:08:12 +00002558 TemplateArgumentList *ExplicitArgumentList
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002559 = TemplateArgumentList::CreateCopy(Context, Builder.data(), Builder.size());
Douglas Gregor9b146582009-07-08 20:55:45 +00002560 Info.reset(ExplicitArgumentList);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002561
John McCall036855a2010-10-12 19:40:14 +00002562 // Template argument deduction and the final substitution should be
2563 // done in the context of the templated declaration. Explicit
2564 // argument substitution, on the other hand, needs to happen in the
2565 // calling context.
2566 ContextRAII SavedContext(*this, FunctionTemplate->getTemplatedDecl());
2567
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002568 // If we deduced template arguments for a template parameter pack,
Douglas Gregora8bac7f2011-01-10 07:32:04 +00002569 // note that the template argument pack is partially substituted and record
2570 // the explicit template arguments. They'll be used as part of deduction
2571 // for this template parameter pack.
Douglas Gregora8bac7f2011-01-10 07:32:04 +00002572 for (unsigned I = 0, N = Builder.size(); I != N; ++I) {
2573 const TemplateArgument &Arg = Builder[I];
2574 if (Arg.getKind() == TemplateArgument::Pack) {
Douglas Gregora8bac7f2011-01-10 07:32:04 +00002575 CurrentInstantiationScope->SetPartiallySubstitutedPack(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002576 TemplateParams->getParam(I),
Douglas Gregora8bac7f2011-01-10 07:32:04 +00002577 Arg.pack_begin(),
2578 Arg.pack_size());
2579 break;
2580 }
2581 }
2582
Richard Smith5e580292012-02-10 09:58:53 +00002583 const FunctionProtoType *Proto
2584 = Function->getType()->getAs<FunctionProtoType>();
2585 assert(Proto && "Function template does not have a prototype?");
2586
Douglas Gregor9b146582009-07-08 20:55:45 +00002587 // Instantiate the types of each of the function parameters given the
Richard Smith5e580292012-02-10 09:58:53 +00002588 // explicitly-specified template arguments. If the function has a trailing
2589 // return type, substitute it after the arguments to ensure we substitute
2590 // in lexical order.
Douglas Gregor3024f072012-04-16 07:05:22 +00002591 if (Proto->hasTrailingReturn()) {
2592 if (SubstParmTypes(Function->getLocation(),
2593 Function->param_begin(), Function->getNumParams(),
2594 MultiLevelTemplateArgumentList(*ExplicitArgumentList),
2595 ParamTypes))
2596 return TDK_SubstitutionFailure;
2597 }
2598
Richard Smith5e580292012-02-10 09:58:53 +00002599 // Instantiate the return type.
Douglas Gregor3024f072012-04-16 07:05:22 +00002600 QualType ResultType;
2601 {
2602 // C++11 [expr.prim.general]p3:
2603 // If a declaration declares a member function or member function
2604 // template of a class X, the expression this is a prvalue of type
2605 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
2606 // and the end of the function-definition, member-declarator, or
2607 // declarator.
2608 unsigned ThisTypeQuals = 0;
2609 CXXRecordDecl *ThisContext = 0;
2610 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Function)) {
2611 ThisContext = Method->getParent();
2612 ThisTypeQuals = Method->getTypeQualifiers();
2613 }
2614
2615 CXXThisScopeRAII ThisScope(*this, ThisContext, ThisTypeQuals,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002616 getLangOpts().CPlusPlus11);
Douglas Gregor3024f072012-04-16 07:05:22 +00002617
2618 ResultType = SubstType(Proto->getResultType(),
2619 MultiLevelTemplateArgumentList(*ExplicitArgumentList),
2620 Function->getTypeSpecStartLoc(),
2621 Function->getDeclName());
2622 if (ResultType.isNull() || Trap.hasErrorOccurred())
2623 return TDK_SubstitutionFailure;
2624 }
2625
Richard Smith5e580292012-02-10 09:58:53 +00002626 // Instantiate the types of each of the function parameters given the
2627 // explicitly-specified template arguments if we didn't do so earlier.
2628 if (!Proto->hasTrailingReturn() &&
2629 SubstParmTypes(Function->getLocation(),
2630 Function->param_begin(), Function->getNumParams(),
2631 MultiLevelTemplateArgumentList(*ExplicitArgumentList),
2632 ParamTypes))
2633 return TDK_SubstitutionFailure;
2634
Douglas Gregor9b146582009-07-08 20:55:45 +00002635 if (FunctionType) {
Jordan Rose5c382722013-03-08 21:51:21 +00002636 *FunctionType = BuildFunctionType(ResultType, ParamTypes,
Douglas Gregor9b146582009-07-08 20:55:45 +00002637 Function->getLocation(),
Eli Friedmand8725a92010-08-05 02:54:05 +00002638 Function->getDeclName(),
Jordan Rosea0a86be2013-03-08 22:25:36 +00002639 Proto->getExtProtoInfo());
Douglas Gregor9b146582009-07-08 20:55:45 +00002640 if (FunctionType->isNull() || Trap.hasErrorOccurred())
2641 return TDK_SubstitutionFailure;
2642 }
Mike Stump11289f42009-09-09 15:08:12 +00002643
Douglas Gregor9b146582009-07-08 20:55:45 +00002644 // C++ [temp.arg.explicit]p2:
Mike Stump11289f42009-09-09 15:08:12 +00002645 // Trailing template arguments that can be deduced (14.8.2) may be
2646 // omitted from the list of explicit template-arguments. If all of the
Douglas Gregor9b146582009-07-08 20:55:45 +00002647 // template arguments can be deduced, they may all be omitted; in this
2648 // case, the empty template argument list <> itself may also be omitted.
2649 //
Douglas Gregora8bac7f2011-01-10 07:32:04 +00002650 // Take all of the explicitly-specified arguments and put them into
2651 // the set of deduced template arguments. Explicitly-specified
2652 // parameter packs, however, will be set to NULL since the deduction
2653 // mechanisms handle explicitly-specified argument packs directly.
Douglas Gregor9b146582009-07-08 20:55:45 +00002654 Deduced.reserve(TemplateParams->size());
Douglas Gregora8bac7f2011-01-10 07:32:04 +00002655 for (unsigned I = 0, N = ExplicitArgumentList->size(); I != N; ++I) {
2656 const TemplateArgument &Arg = ExplicitArgumentList->get(I);
2657 if (Arg.getKind() == TemplateArgument::Pack)
2658 Deduced.push_back(DeducedTemplateArgument());
2659 else
2660 Deduced.push_back(Arg);
2661 }
Mike Stump11289f42009-09-09 15:08:12 +00002662
Douglas Gregor9b146582009-07-08 20:55:45 +00002663 return TDK_Success;
2664}
2665
Douglas Gregor2ead4c42011-06-17 05:18:17 +00002666/// \brief Check whether the deduced argument type for a call to a function
2667/// template matches the actual argument type per C++ [temp.deduct.call]p4.
2668static bool
2669CheckOriginalCallArgDeduction(Sema &S, Sema::OriginalCallArg OriginalArg,
2670 QualType DeducedA) {
2671 ASTContext &Context = S.Context;
2672
2673 QualType A = OriginalArg.OriginalArgType;
2674 QualType OriginalParamType = OriginalArg.OriginalParamType;
2675
2676 // Check for type equality (top-level cv-qualifiers are ignored).
2677 if (Context.hasSameUnqualifiedType(A, DeducedA))
2678 return false;
2679
2680 // Strip off references on the argument types; they aren't needed for
2681 // the following checks.
2682 if (const ReferenceType *DeducedARef = DeducedA->getAs<ReferenceType>())
2683 DeducedA = DeducedARef->getPointeeType();
2684 if (const ReferenceType *ARef = A->getAs<ReferenceType>())
2685 A = ARef->getPointeeType();
2686
2687 // C++ [temp.deduct.call]p4:
2688 // [...] However, there are three cases that allow a difference:
2689 // - If the original P is a reference type, the deduced A (i.e., the
2690 // type referred to by the reference) can be more cv-qualified than
2691 // the transformed A.
2692 if (const ReferenceType *OriginalParamRef
2693 = OriginalParamType->getAs<ReferenceType>()) {
2694 // We don't want to keep the reference around any more.
2695 OriginalParamType = OriginalParamRef->getPointeeType();
2696
2697 Qualifiers AQuals = A.getQualifiers();
2698 Qualifiers DeducedAQuals = DeducedA.getQualifiers();
Douglas Gregora906ad22012-07-18 00:14:59 +00002699
Douglas Gregorc9f019a2013-11-08 02:04:24 +00002700 // Under Objective-C++ ARC, the deduced type may have implicitly
2701 // been given strong or (when dealing with a const reference)
2702 // unsafe_unretained lifetime. If so, update the original
2703 // qualifiers to include this lifetime.
Douglas Gregora906ad22012-07-18 00:14:59 +00002704 if (S.getLangOpts().ObjCAutoRefCount &&
Douglas Gregorc9f019a2013-11-08 02:04:24 +00002705 ((DeducedAQuals.getObjCLifetime() == Qualifiers::OCL_Strong &&
2706 AQuals.getObjCLifetime() == Qualifiers::OCL_None) ||
2707 (DeducedAQuals.hasConst() &&
2708 DeducedAQuals.getObjCLifetime() == Qualifiers::OCL_ExplicitNone))) {
2709 AQuals.setObjCLifetime(DeducedAQuals.getObjCLifetime());
Douglas Gregora906ad22012-07-18 00:14:59 +00002710 }
2711
Douglas Gregor2ead4c42011-06-17 05:18:17 +00002712 if (AQuals == DeducedAQuals) {
2713 // Qualifiers match; there's nothing to do.
2714 } else if (!DeducedAQuals.compatiblyIncludes(AQuals)) {
Douglas Gregorddaae522011-06-17 14:36:00 +00002715 return true;
Douglas Gregor2ead4c42011-06-17 05:18:17 +00002716 } else {
2717 // Qualifiers are compatible, so have the argument type adopt the
2718 // deduced argument type's qualifiers as if we had performed the
2719 // qualification conversion.
2720 A = Context.getQualifiedType(A.getUnqualifiedType(), DeducedAQuals);
2721 }
2722 }
2723
2724 // - The transformed A can be another pointer or pointer to member
2725 // type that can be converted to the deduced A via a qualification
2726 // conversion.
Chandler Carruth53e61b02011-06-18 01:19:03 +00002727 //
2728 // Also allow conversions which merely strip [[noreturn]] from function types
2729 // (recursively) as an extension.
Douglas Gregorc9f019a2013-11-08 02:04:24 +00002730 // FIXME: Currently, this doesn't play nicely with qualification conversions.
Douglas Gregor2ead4c42011-06-17 05:18:17 +00002731 bool ObjCLifetimeConversion = false;
Chandler Carruth53e61b02011-06-18 01:19:03 +00002732 QualType ResultTy;
Douglas Gregor2ead4c42011-06-17 05:18:17 +00002733 if ((A->isAnyPointerType() || A->isMemberPointerType()) &&
Chandler Carruth53e61b02011-06-18 01:19:03 +00002734 (S.IsQualificationConversion(A, DeducedA, false,
2735 ObjCLifetimeConversion) ||
2736 S.IsNoReturnConversion(A, DeducedA, ResultTy)))
Douglas Gregor2ead4c42011-06-17 05:18:17 +00002737 return false;
2738
2739
2740 // - If P is a class and P has the form simple-template-id, then the
2741 // transformed A can be a derived class of the deduced A. [...]
2742 // [...] Likewise, if P is a pointer to a class of the form
2743 // simple-template-id, the transformed A can be a pointer to a
2744 // derived class pointed to by the deduced A.
2745 if (const PointerType *OriginalParamPtr
2746 = OriginalParamType->getAs<PointerType>()) {
2747 if (const PointerType *DeducedAPtr = DeducedA->getAs<PointerType>()) {
2748 if (const PointerType *APtr = A->getAs<PointerType>()) {
2749 if (A->getPointeeType()->isRecordType()) {
2750 OriginalParamType = OriginalParamPtr->getPointeeType();
2751 DeducedA = DeducedAPtr->getPointeeType();
2752 A = APtr->getPointeeType();
2753 }
2754 }
2755 }
2756 }
2757
2758 if (Context.hasSameUnqualifiedType(A, DeducedA))
2759 return false;
2760
2761 if (A->isRecordType() && isSimpleTemplateIdType(OriginalParamType) &&
2762 S.IsDerivedFrom(A, DeducedA))
2763 return false;
2764
2765 return true;
2766}
2767
Mike Stump11289f42009-09-09 15:08:12 +00002768/// \brief Finish template argument deduction for a function template,
Douglas Gregor9b146582009-07-08 20:55:45 +00002769/// checking the deduced template arguments for completeness and forming
2770/// the function template specialization.
Douglas Gregore65aacb2011-06-16 16:50:48 +00002771///
2772/// \param OriginalCallArgs If non-NULL, the original call arguments against
2773/// which the deduced argument types should be compared.
Mike Stump11289f42009-09-09 15:08:12 +00002774Sema::TemplateDeductionResult
Douglas Gregor9b146582009-07-08 20:55:45 +00002775Sema::FinishTemplateArgumentDeduction(FunctionTemplateDecl *FunctionTemplate,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002776 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00002777 unsigned NumExplicitlySpecified,
Douglas Gregor9b146582009-07-08 20:55:45 +00002778 FunctionDecl *&Specialization,
Douglas Gregore65aacb2011-06-16 16:50:48 +00002779 TemplateDeductionInfo &Info,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002780 SmallVectorImpl<OriginalCallArg> const *OriginalCallArgs) {
Douglas Gregor9b146582009-07-08 20:55:45 +00002781 TemplateParameterList *TemplateParams
2782 = FunctionTemplate->getTemplateParameters();
Mike Stump11289f42009-09-09 15:08:12 +00002783
Eli Friedman77dcc722012-02-08 03:07:05 +00002784 // Unevaluated SFINAE context.
2785 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Mike Stump11289f42009-09-09 15:08:12 +00002786 SFINAETrap Trap(*this);
2787
Douglas Gregor9b146582009-07-08 20:55:45 +00002788 // Enter a new template instantiation context while we instantiate the
2789 // actual function declaration.
Richard Smith80934652012-07-16 01:09:10 +00002790 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end());
Nick Lewycky56412332014-01-11 02:37:12 +00002791 InstantiatingTemplate Inst(*this, Info.getLocation(), FunctionTemplate,
2792 DeducedArgs,
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +00002793 ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution,
2794 Info);
Alp Tokerd4a72d52013-10-08 08:09:04 +00002795 if (Inst.isInvalid())
Mike Stump11289f42009-09-09 15:08:12 +00002796 return TDK_InstantiationDepth;
2797
John McCalle23b8712010-04-29 01:18:58 +00002798 ContextRAII SavedContext(*this, FunctionTemplate->getTemplatedDecl());
John McCall80e58cd2010-04-29 00:35:03 +00002799
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00002800 // C++ [temp.deduct.type]p2:
2801 // [...] or if any template argument remains neither deduced nor
2802 // explicitly specified, template argument deduction fails.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002803 SmallVector<TemplateArgument, 4> Builder;
Douglas Gregoraaa6a902011-01-04 22:13:36 +00002804 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
2805 NamedDecl *Param = TemplateParams->getParam(I);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002806
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00002807 if (!Deduced[I].isNull()) {
Douglas Gregor6e9cf632010-10-12 18:51:08 +00002808 if (I < NumExplicitlySpecified) {
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00002809 // We have already fully type-checked and converted this
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002810 // argument, because it was explicitly-specified. Just record the
Douglas Gregor6e9cf632010-10-12 18:51:08 +00002811 // presence of this argument.
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002812 Builder.push_back(Deduced[I]);
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00002813 continue;
2814 }
2815
2816 // We have deduced this argument, so it still needs to be
2817 // checked and converted.
2818
2819 // First, for a non-type template parameter type that is
2820 // initialized by a declaration, we need the type of the
2821 // corresponding non-type template parameter.
2822 QualType NTTPType;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002823 if (NonTypeTemplateParmDecl *NTTP
2824 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
Douglas Gregoraaa6a902011-01-04 22:13:36 +00002825 NTTPType = NTTP->getType();
2826 if (NTTPType->isDependentType()) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002827 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregoraaa6a902011-01-04 22:13:36 +00002828 Builder.data(), Builder.size());
2829 NTTPType = SubstType(NTTPType,
2830 MultiLevelTemplateArgumentList(TemplateArgs),
2831 NTTP->getLocation(),
2832 NTTP->getDeclName());
2833 if (NTTPType.isNull()) {
2834 Info.Param = makeTemplateParameter(Param);
2835 // FIXME: These template arguments are temporary. Free them!
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002836 Info.reset(TemplateArgumentList::CreateCopy(Context,
2837 Builder.data(),
Douglas Gregoraaa6a902011-01-04 22:13:36 +00002838 Builder.size()));
2839 return TDK_SubstitutionFailure;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00002840 }
2841 }
2842 }
2843
Douglas Gregoraaa6a902011-01-04 22:13:36 +00002844 if (ConvertDeducedTemplateArgument(*this, Param, Deduced[I],
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002845 FunctionTemplate, NTTPType, 0, Info,
Douglas Gregorca4686d2011-01-04 23:35:54 +00002846 true, Builder)) {
Douglas Gregoraaa6a902011-01-04 22:13:36 +00002847 Info.Param = makeTemplateParameter(Param);
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002848 // FIXME: These template arguments are temporary. Free them!
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002849 Info.reset(TemplateArgumentList::CreateCopy(Context, Builder.data(),
2850 Builder.size()));
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00002851 return TDK_SubstitutionFailure;
2852 }
2853
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00002854 continue;
2855 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002856
Douglas Gregorca4d91d2010-12-23 01:52:01 +00002857 // C++0x [temp.arg.explicit]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002858 // A trailing template parameter pack (14.5.3) not otherwise deduced will
Douglas Gregorca4d91d2010-12-23 01:52:01 +00002859 // be deduced to an empty sequence of template arguments.
2860 // FIXME: Where did the word "trailing" come from?
2861 if (Param->isTemplateParameterPack()) {
Douglas Gregora8bac7f2011-01-10 07:32:04 +00002862 // We may have had explicitly-specified template arguments for this
2863 // template parameter pack. If so, our empty deduction extends the
2864 // explicitly-specified set (C++0x [temp.arg.explicit]p9).
2865 const TemplateArgument *ExplicitArgs;
2866 unsigned NumExplicitArgs;
Richard Smith802c4b72012-08-23 06:16:52 +00002867 if (CurrentInstantiationScope &&
2868 CurrentInstantiationScope->getPartiallySubstitutedPack(&ExplicitArgs,
Douglas Gregora8bac7f2011-01-10 07:32:04 +00002869 &NumExplicitArgs)
Douglas Gregorcaddba92013-01-18 22:27:09 +00002870 == Param) {
Douglas Gregora8bac7f2011-01-10 07:32:04 +00002871 Builder.push_back(TemplateArgument(ExplicitArgs, NumExplicitArgs));
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002872
Douglas Gregorcaddba92013-01-18 22:27:09 +00002873 // Forget the partially-substituted pack; it's substitution is now
2874 // complete.
2875 CurrentInstantiationScope->ResetPartiallySubstitutedPack();
2876 } else {
2877 Builder.push_back(TemplateArgument::getEmptyPack());
2878 }
Douglas Gregorca4d91d2010-12-23 01:52:01 +00002879 continue;
2880 }
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00002881
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002882 // Substitute into the default template argument, if available.
Richard Smithc87b9382013-07-04 01:01:24 +00002883 bool HasDefaultArg = false;
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00002884 TemplateArgumentLoc DefArg
2885 = SubstDefaultTemplateArgumentIfAvailable(FunctionTemplate,
2886 FunctionTemplate->getLocation(),
2887 FunctionTemplate->getSourceRange().getEnd(),
2888 Param,
Richard Smithc87b9382013-07-04 01:01:24 +00002889 Builder, HasDefaultArg);
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00002890
2891 // If there was no default argument, deduction is incomplete.
2892 if (DefArg.getArgument().isNull()) {
2893 Info.Param = makeTemplateParameter(
2894 const_cast<NamedDecl *>(TemplateParams->getParam(I)));
Richard Smithc87b9382013-07-04 01:01:24 +00002895 Info.reset(TemplateArgumentList::CreateCopy(Context, Builder.data(),
2896 Builder.size()));
2897 return HasDefaultArg ? TDK_SubstitutionFailure : TDK_Incomplete;
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00002898 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002899
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00002900 // Check whether we can actually use the default argument.
2901 if (CheckTemplateArgument(Param, DefArg,
2902 FunctionTemplate,
2903 FunctionTemplate->getLocation(),
2904 FunctionTemplate->getSourceRange().getEnd(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002905 0, Builder,
Douglas Gregor2f157c92011-06-03 02:59:40 +00002906 CTAK_Specified)) {
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00002907 Info.Param = makeTemplateParameter(
2908 const_cast<NamedDecl *>(TemplateParams->getParam(I)));
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002909 // FIXME: These template arguments are temporary. Free them!
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002910 Info.reset(TemplateArgumentList::CreateCopy(Context, Builder.data(),
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002911 Builder.size()));
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00002912 return TDK_SubstitutionFailure;
2913 }
2914
2915 // If we get here, we successfully used the default template argument.
2916 }
2917
2918 // Form the template argument list from the deduced template arguments.
2919 TemplateArgumentList *DeducedArgumentList
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002920 = TemplateArgumentList::CreateCopy(Context, Builder.data(), Builder.size());
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00002921 Info.reset(DeducedArgumentList);
2922
Mike Stump11289f42009-09-09 15:08:12 +00002923 // Substitute the deduced template arguments into the function template
Douglas Gregor9b146582009-07-08 20:55:45 +00002924 // declaration to produce the function template specialization.
Douglas Gregor16142372010-04-28 04:52:24 +00002925 DeclContext *Owner = FunctionTemplate->getDeclContext();
2926 if (FunctionTemplate->getFriendObjectKind())
2927 Owner = FunctionTemplate->getLexicalDeclContext();
Douglas Gregor9b146582009-07-08 20:55:45 +00002928 Specialization = cast_or_null<FunctionDecl>(
Douglas Gregor16142372010-04-28 04:52:24 +00002929 SubstDecl(FunctionTemplate->getTemplatedDecl(), Owner,
Douglas Gregor39cacdb2009-08-28 20:50:45 +00002930 MultiLevelTemplateArgumentList(*DeducedArgumentList)));
Douglas Gregorebcfbb52011-10-12 20:35:48 +00002931 if (!Specialization || Specialization->isInvalidDecl())
Douglas Gregor9b146582009-07-08 20:55:45 +00002932 return TDK_SubstitutionFailure;
Mike Stump11289f42009-09-09 15:08:12 +00002933
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002934 assert(Specialization->getPrimaryTemplate()->getCanonicalDecl() ==
Douglas Gregor31fae892009-09-15 18:26:13 +00002935 FunctionTemplate->getCanonicalDecl());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002936
Mike Stump11289f42009-09-09 15:08:12 +00002937 // If the template argument list is owned by the function template
Douglas Gregor9b146582009-07-08 20:55:45 +00002938 // specialization, release it.
Douglas Gregord09efd42010-05-08 20:07:26 +00002939 if (Specialization->getTemplateSpecializationArgs() == DeducedArgumentList &&
2940 !Trap.hasErrorOccurred())
Douglas Gregor9b146582009-07-08 20:55:45 +00002941 Info.take();
Mike Stump11289f42009-09-09 15:08:12 +00002942
Douglas Gregorebcfbb52011-10-12 20:35:48 +00002943 // There may have been an error that did not prevent us from constructing a
2944 // declaration. Mark the declaration invalid and return with a substitution
2945 // failure.
2946 if (Trap.hasErrorOccurred()) {
2947 Specialization->setInvalidDecl(true);
2948 return TDK_SubstitutionFailure;
2949 }
2950
Douglas Gregore65aacb2011-06-16 16:50:48 +00002951 if (OriginalCallArgs) {
2952 // C++ [temp.deduct.call]p4:
2953 // In general, the deduction process attempts to find template argument
2954 // values that will make the deduced A identical to A (after the type A
2955 // is transformed as described above). [...]
2956 for (unsigned I = 0, N = OriginalCallArgs->size(); I != N; ++I) {
2957 OriginalCallArg OriginalArg = (*OriginalCallArgs)[I];
Douglas Gregore65aacb2011-06-16 16:50:48 +00002958 unsigned ParamIdx = OriginalArg.ArgIdx;
2959
2960 if (ParamIdx >= Specialization->getNumParams())
2961 continue;
2962
2963 QualType DeducedA = Specialization->getParamDecl(ParamIdx)->getType();
Douglas Gregor2ead4c42011-06-17 05:18:17 +00002964 if (CheckOriginalCallArgDeduction(*this, OriginalArg, DeducedA))
2965 return Sema::TDK_SubstitutionFailure;
Douglas Gregore65aacb2011-06-16 16:50:48 +00002966 }
2967 }
2968
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +00002969 // If we suppressed any diagnostics while performing template argument
2970 // deduction, and if we haven't already instantiated this declaration,
2971 // keep track of these diagnostics. They'll be emitted if this specialization
2972 // is actually used.
2973 if (Info.diag_begin() != Info.diag_end()) {
Craig Topper79be4cd2013-07-05 04:33:53 +00002974 SuppressedDiagnosticsMap::iterator
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +00002975 Pos = SuppressedDiagnostics.find(Specialization->getCanonicalDecl());
2976 if (Pos == SuppressedDiagnostics.end())
2977 SuppressedDiagnostics[Specialization->getCanonicalDecl()]
2978 .append(Info.diag_begin(), Info.diag_end());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002979 }
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +00002980
Mike Stump11289f42009-09-09 15:08:12 +00002981 return TDK_Success;
Douglas Gregor9b146582009-07-08 20:55:45 +00002982}
2983
John McCall8d08b9b2010-08-27 09:08:28 +00002984/// Gets the type of a function for template-argument-deducton
2985/// purposes when it's considered as part of an overload set.
Richard Smith2a7d4812013-05-04 07:00:32 +00002986static QualType GetTypeOfFunction(Sema &S, const OverloadExpr::FindResult &R,
John McCallc1f69982010-02-02 02:21:27 +00002987 FunctionDecl *Fn) {
Richard Smith2a7d4812013-05-04 07:00:32 +00002988 // We may need to deduce the return type of the function now.
2989 if (S.getLangOpts().CPlusPlus1y && Fn->getResultType()->isUndeducedType() &&
2990 S.DeduceReturnType(Fn, R.Expression->getExprLoc(), /*Diagnose*/false))
2991 return QualType();
2992
John McCallc1f69982010-02-02 02:21:27 +00002993 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn))
John McCall8d08b9b2010-08-27 09:08:28 +00002994 if (Method->isInstance()) {
2995 // An instance method that's referenced in a form that doesn't
2996 // look like a member pointer is just invalid.
2997 if (!R.HasFormOfMemberPointer) return QualType();
2998
Richard Smith2a7d4812013-05-04 07:00:32 +00002999 return S.Context.getMemberPointerType(Fn->getType(),
3000 S.Context.getTypeDeclType(Method->getParent()).getTypePtr());
John McCall8d08b9b2010-08-27 09:08:28 +00003001 }
3002
3003 if (!R.IsAddressOfOperand) return Fn->getType();
Richard Smith2a7d4812013-05-04 07:00:32 +00003004 return S.Context.getPointerType(Fn->getType());
John McCallc1f69982010-02-02 02:21:27 +00003005}
3006
3007/// Apply the deduction rules for overload sets.
3008///
3009/// \return the null type if this argument should be treated as an
3010/// undeduced context
3011static QualType
3012ResolveOverloadForDeduction(Sema &S, TemplateParameterList *TemplateParams,
Douglas Gregor66d2c8e2010-08-30 21:04:23 +00003013 Expr *Arg, QualType ParamType,
3014 bool ParamWasReference) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003015
John McCall8d08b9b2010-08-27 09:08:28 +00003016 OverloadExpr::FindResult R = OverloadExpr::find(Arg);
John McCallc1f69982010-02-02 02:21:27 +00003017
John McCall8d08b9b2010-08-27 09:08:28 +00003018 OverloadExpr *Ovl = R.Expression;
John McCallc1f69982010-02-02 02:21:27 +00003019
Douglas Gregor66d2c8e2010-08-30 21:04:23 +00003020 // C++0x [temp.deduct.call]p4
3021 unsigned TDF = 0;
3022 if (ParamWasReference)
3023 TDF |= TDF_ParamWithReferenceType;
3024 if (R.IsAddressOfOperand)
3025 TDF |= TDF_IgnoreQualifiers;
3026
John McCallc1f69982010-02-02 02:21:27 +00003027 // C++0x [temp.deduct.call]p6:
3028 // When P is a function type, pointer to function type, or pointer
3029 // to member function type:
3030
3031 if (!ParamType->isFunctionType() &&
3032 !ParamType->isFunctionPointerType() &&
Douglas Gregor8409ccd2012-03-12 21:09:16 +00003033 !ParamType->isMemberFunctionPointerType()) {
3034 if (Ovl->hasExplicitTemplateArgs()) {
3035 // But we can still look for an explicit specialization.
3036 if (FunctionDecl *ExplicitSpec
3037 = S.ResolveSingleFunctionTemplateSpecialization(Ovl))
Richard Smith2a7d4812013-05-04 07:00:32 +00003038 return GetTypeOfFunction(S, R, ExplicitSpec);
Douglas Gregor8409ccd2012-03-12 21:09:16 +00003039 }
John McCallc1f69982010-02-02 02:21:27 +00003040
Douglas Gregor8409ccd2012-03-12 21:09:16 +00003041 return QualType();
3042 }
3043
3044 // Gather the explicit template arguments, if any.
3045 TemplateArgumentListInfo ExplicitTemplateArgs;
3046 if (Ovl->hasExplicitTemplateArgs())
3047 Ovl->getExplicitTemplateArgs().copyInto(ExplicitTemplateArgs);
John McCallc1f69982010-02-02 02:21:27 +00003048 QualType Match;
John McCall1acbbb52010-02-02 06:20:04 +00003049 for (UnresolvedSetIterator I = Ovl->decls_begin(),
3050 E = Ovl->decls_end(); I != E; ++I) {
John McCallc1f69982010-02-02 02:21:27 +00003051 NamedDecl *D = (*I)->getUnderlyingDecl();
3052
Douglas Gregor8409ccd2012-03-12 21:09:16 +00003053 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D)) {
3054 // - If the argument is an overload set containing one or more
3055 // function templates, the parameter is treated as a
3056 // non-deduced context.
3057 if (!Ovl->hasExplicitTemplateArgs())
3058 return QualType();
3059
3060 // Otherwise, see if we can resolve a function type
3061 FunctionDecl *Specialization = 0;
Craig Toppere6706e42012-09-19 02:26:47 +00003062 TemplateDeductionInfo Info(Ovl->getNameLoc());
Douglas Gregor8409ccd2012-03-12 21:09:16 +00003063 if (S.DeduceTemplateArguments(FunTmpl, &ExplicitTemplateArgs,
3064 Specialization, Info))
3065 continue;
3066
3067 D = Specialization;
3068 }
John McCallc1f69982010-02-02 02:21:27 +00003069
3070 FunctionDecl *Fn = cast<FunctionDecl>(D);
Richard Smith2a7d4812013-05-04 07:00:32 +00003071 QualType ArgType = GetTypeOfFunction(S, R, Fn);
John McCall8d08b9b2010-08-27 09:08:28 +00003072 if (ArgType.isNull()) continue;
John McCallc1f69982010-02-02 02:21:27 +00003073
Douglas Gregor66d2c8e2010-08-30 21:04:23 +00003074 // Function-to-pointer conversion.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003075 if (!ParamWasReference && ParamType->isPointerType() &&
Douglas Gregor66d2c8e2010-08-30 21:04:23 +00003076 ArgType->isFunctionType())
3077 ArgType = S.Context.getPointerType(ArgType);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003078
John McCallc1f69982010-02-02 02:21:27 +00003079 // - If the argument is an overload set (not containing function
3080 // templates), trial argument deduction is attempted using each
3081 // of the members of the set. If deduction succeeds for only one
3082 // of the overload set members, that member is used as the
3083 // argument value for the deduction. If deduction succeeds for
3084 // more than one member of the overload set the parameter is
3085 // treated as a non-deduced context.
3086
3087 // We do all of this in a fresh context per C++0x [temp.deduct.type]p2:
3088 // Type deduction is done independently for each P/A pair, and
3089 // the deduced template argument values are then combined.
3090 // So we do not reject deductions which were made elsewhere.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003091 SmallVector<DeducedTemplateArgument, 8>
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00003092 Deduced(TemplateParams->size());
Craig Toppere6706e42012-09-19 02:26:47 +00003093 TemplateDeductionInfo Info(Ovl->getNameLoc());
John McCallc1f69982010-02-02 02:21:27 +00003094 Sema::TemplateDeductionResult Result
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00003095 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, ParamType,
3096 ArgType, Info, Deduced, TDF);
John McCallc1f69982010-02-02 02:21:27 +00003097 if (Result) continue;
3098 if (!Match.isNull()) return QualType();
3099 Match = ArgType;
3100 }
3101
3102 return Match;
3103}
3104
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003105/// \brief Perform the adjustments to the parameter and argument types
Douglas Gregor7825bf32011-01-06 22:09:01 +00003106/// described in C++ [temp.deduct.call].
3107///
3108/// \returns true if the caller should not attempt to perform any template
Richard Smith8c6eeb92013-01-31 04:03:12 +00003109/// argument deduction based on this P/A pair because the argument is an
3110/// overloaded function set that could not be resolved.
Douglas Gregor7825bf32011-01-06 22:09:01 +00003111static bool AdjustFunctionParmAndArgTypesForDeduction(Sema &S,
3112 TemplateParameterList *TemplateParams,
3113 QualType &ParamType,
3114 QualType &ArgType,
3115 Expr *Arg,
3116 unsigned &TDF) {
3117 // C++0x [temp.deduct.call]p3:
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00003118 // If P is a cv-qualified type, the top level cv-qualifiers of P's type
Douglas Gregor7825bf32011-01-06 22:09:01 +00003119 // are ignored for type deduction.
Douglas Gregor17846882011-04-27 23:34:22 +00003120 if (ParamType.hasQualifiers())
3121 ParamType = ParamType.getUnqualifiedType();
Douglas Gregor7825bf32011-01-06 22:09:01 +00003122 const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>();
3123 if (ParamRefType) {
Richard Smith30482bc2011-02-20 03:19:35 +00003124 QualType PointeeType = ParamRefType->getPointeeType();
3125
Richard Smith8c6eeb92013-01-31 04:03:12 +00003126 // If the argument has incomplete array type, try to complete its type.
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00003127 if (ArgType->isIncompleteArrayType() && !S.RequireCompleteExprType(Arg, 0))
Douglas Gregor57d4f972011-06-03 03:35:07 +00003128 ArgType = Arg->getType();
3129
Douglas Gregorcba72b12011-01-21 05:18:22 +00003130 // [C++0x] If P is an rvalue reference to a cv-unqualified
3131 // template parameter and the argument is an lvalue, the type
3132 // "lvalue reference to A" is used in place of A for type
3133 // deduction.
Richard Smith30482bc2011-02-20 03:19:35 +00003134 if (isa<RValueReferenceType>(ParamType)) {
3135 if (!PointeeType.getQualifiers() &&
3136 isa<TemplateTypeParmType>(PointeeType) &&
Douglas Gregor291e8ee2011-05-21 22:16:50 +00003137 Arg->Classify(S.Context).isLValue() &&
3138 Arg->getType() != S.Context.OverloadTy &&
3139 Arg->getType() != S.Context.BoundMemberTy)
Douglas Gregorcba72b12011-01-21 05:18:22 +00003140 ArgType = S.Context.getLValueReferenceType(ArgType);
3141 }
3142
Douglas Gregor7825bf32011-01-06 22:09:01 +00003143 // [...] If P is a reference type, the type referred to by P is used
3144 // for type deduction.
Richard Smith30482bc2011-02-20 03:19:35 +00003145 ParamType = PointeeType;
Douglas Gregor7825bf32011-01-06 22:09:01 +00003146 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003147
Douglas Gregor7825bf32011-01-06 22:09:01 +00003148 // Overload sets usually make this parameter an undeduced
3149 // context, but there are sometimes special circumstances.
3150 if (ArgType == S.Context.OverloadTy) {
3151 ArgType = ResolveOverloadForDeduction(S, TemplateParams,
3152 Arg, ParamType,
3153 ParamRefType != 0);
3154 if (ArgType.isNull())
3155 return true;
3156 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003157
Douglas Gregor7825bf32011-01-06 22:09:01 +00003158 if (ParamRefType) {
3159 // C++0x [temp.deduct.call]p3:
3160 // [...] If P is of the form T&&, where T is a template parameter, and
3161 // the argument is an lvalue, the type A& is used in place of A for
3162 // type deduction.
3163 if (ParamRefType->isRValueReferenceType() &&
3164 ParamRefType->getAs<TemplateTypeParmType>() &&
3165 Arg->isLValue())
3166 ArgType = S.Context.getLValueReferenceType(ArgType);
3167 } else {
3168 // C++ [temp.deduct.call]p2:
3169 // If P is not a reference type:
3170 // - If A is an array type, the pointer type produced by the
3171 // array-to-pointer standard conversion (4.2) is used in place of
3172 // A for type deduction; otherwise,
3173 if (ArgType->isArrayType())
3174 ArgType = S.Context.getArrayDecayedType(ArgType);
3175 // - If A is a function type, the pointer type produced by the
3176 // function-to-pointer standard conversion (4.3) is used in place
3177 // of A for type deduction; otherwise,
3178 else if (ArgType->isFunctionType())
3179 ArgType = S.Context.getPointerType(ArgType);
3180 else {
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00003181 // - If A is a cv-qualified type, the top level cv-qualifiers of A's
Douglas Gregor7825bf32011-01-06 22:09:01 +00003182 // type are ignored for type deduction.
Douglas Gregor17846882011-04-27 23:34:22 +00003183 ArgType = ArgType.getUnqualifiedType();
Douglas Gregor7825bf32011-01-06 22:09:01 +00003184 }
3185 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003186
Douglas Gregor7825bf32011-01-06 22:09:01 +00003187 // C++0x [temp.deduct.call]p4:
3188 // In general, the deduction process attempts to find template argument
3189 // values that will make the deduced A identical to A (after the type A
3190 // is transformed as described above). [...]
3191 TDF = TDF_SkipNonDependent;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003192
Douglas Gregor7825bf32011-01-06 22:09:01 +00003193 // - If the original P is a reference type, the deduced A (i.e., the
3194 // type referred to by the reference) can be more cv-qualified than
3195 // the transformed A.
3196 if (ParamRefType)
3197 TDF |= TDF_ParamWithReferenceType;
3198 // - The transformed A can be another pointer or pointer to member
3199 // type that can be converted to the deduced A via a qualification
3200 // conversion (4.4).
3201 if (ArgType->isPointerType() || ArgType->isMemberPointerType() ||
3202 ArgType->isObjCObjectPointerType())
3203 TDF |= TDF_IgnoreQualifiers;
3204 // - If P is a class and P has the form simple-template-id, then the
3205 // transformed A can be a derived class of the deduced A. Likewise,
3206 // if P is a pointer to a class of the form simple-template-id, the
3207 // transformed A can be a pointer to a derived class pointed to by
3208 // the deduced A.
3209 if (isSimpleTemplateIdType(ParamType) ||
3210 (isa<PointerType>(ParamType) &&
3211 isSimpleTemplateIdType(
3212 ParamType->getAs<PointerType>()->getPointeeType())))
3213 TDF |= TDF_DerivedClass;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003214
Douglas Gregor7825bf32011-01-06 22:09:01 +00003215 return false;
3216}
3217
Douglas Gregore65aacb2011-06-16 16:50:48 +00003218static bool hasDeducibleTemplateParameters(Sema &S,
3219 FunctionTemplateDecl *FunctionTemplate,
3220 QualType T);
3221
Sebastian Redl19181662012-03-15 21:40:51 +00003222/// \brief Perform template argument deduction by matching a parameter type
3223/// against a single expression, where the expression is an element of
Richard Smith8c6eeb92013-01-31 04:03:12 +00003224/// an initializer list that was originally matched against a parameter
3225/// of type \c initializer_list\<ParamType\>.
Sebastian Redl19181662012-03-15 21:40:51 +00003226static Sema::TemplateDeductionResult
3227DeduceTemplateArgumentByListElement(Sema &S,
3228 TemplateParameterList *TemplateParams,
3229 QualType ParamType, Expr *Arg,
3230 TemplateDeductionInfo &Info,
3231 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
3232 unsigned TDF) {
3233 // Handle the case where an init list contains another init list as the
3234 // element.
3235 if (InitListExpr *ILE = dyn_cast<InitListExpr>(Arg)) {
3236 QualType X;
3237 if (!S.isStdInitializerList(ParamType.getNonReferenceType(), &X))
3238 return Sema::TDK_Success; // Just ignore this expression.
3239
3240 // Recurse down into the init list.
3241 for (unsigned i = 0, e = ILE->getNumInits(); i < e; ++i) {
3242 if (Sema::TemplateDeductionResult Result =
3243 DeduceTemplateArgumentByListElement(S, TemplateParams, X,
3244 ILE->getInit(i),
3245 Info, Deduced, TDF))
3246 return Result;
3247 }
3248 return Sema::TDK_Success;
3249 }
3250
3251 // For all other cases, just match by type.
Douglas Gregor0e60cd72012-04-04 05:10:53 +00003252 QualType ArgType = Arg->getType();
3253 if (AdjustFunctionParmAndArgTypesForDeduction(S, TemplateParams, ParamType,
Richard Smith8c6eeb92013-01-31 04:03:12 +00003254 ArgType, Arg, TDF)) {
3255 Info.Expression = Arg;
Douglas Gregor0e60cd72012-04-04 05:10:53 +00003256 return Sema::TDK_FailedOverloadResolution;
Richard Smith8c6eeb92013-01-31 04:03:12 +00003257 }
Sebastian Redl19181662012-03-15 21:40:51 +00003258 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, ParamType,
Douglas Gregor0e60cd72012-04-04 05:10:53 +00003259 ArgType, Info, Deduced, TDF);
Sebastian Redl19181662012-03-15 21:40:51 +00003260}
3261
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003262/// \brief Perform template argument deduction from a function call
3263/// (C++ [temp.deduct.call]).
3264///
3265/// \param FunctionTemplate the function template for which we are performing
3266/// template argument deduction.
3267///
James Dennett18348b62012-06-22 08:52:37 +00003268/// \param ExplicitTemplateArgs the explicit template arguments provided
Douglas Gregorea0a0a92010-01-11 18:40:55 +00003269/// for this call.
Douglas Gregor89026b52009-06-30 23:57:56 +00003270///
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003271/// \param Args the function call arguments
3272///
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003273/// \param Specialization if template argument deduction was successful,
Mike Stump11289f42009-09-09 15:08:12 +00003274/// this will be set to the function template specialization produced by
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003275/// template argument deduction.
3276///
3277/// \param Info the argument will be updated to provide additional information
3278/// about template argument deduction.
3279///
3280/// \returns the result of template argument deduction.
Robert Wilhelm16e94b92013-08-09 18:02:13 +00003281Sema::TemplateDeductionResult Sema::DeduceTemplateArguments(
3282 FunctionTemplateDecl *FunctionTemplate,
3283 TemplateArgumentListInfo *ExplicitTemplateArgs, ArrayRef<Expr *> Args,
3284 FunctionDecl *&Specialization, TemplateDeductionInfo &Info) {
Douglas Gregorc5c01a62012-09-13 21:01:57 +00003285 if (FunctionTemplate->isInvalidDecl())
3286 return TDK_Invalid;
3287
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003288 FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
Douglas Gregor89026b52009-06-30 23:57:56 +00003289
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003290 // C++ [temp.deduct.call]p1:
3291 // Template argument deduction is done by comparing each function template
3292 // parameter type (call it P) with the type of the corresponding argument
3293 // of the call (call it A) as described below.
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003294 unsigned CheckArgs = Args.size();
3295 if (Args.size() < Function->getMinRequiredArguments())
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003296 return TDK_TooFewArguments;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003297 else if (Args.size() > Function->getNumParams()) {
Mike Stump11289f42009-09-09 15:08:12 +00003298 const FunctionProtoType *Proto
John McCall9dd450b2009-09-21 23:43:11 +00003299 = Function->getType()->getAs<FunctionProtoType>();
Douglas Gregor7825bf32011-01-06 22:09:01 +00003300 if (Proto->isTemplateVariadic())
3301 /* Do nothing */;
3302 else if (Proto->isVariadic())
3303 CheckArgs = Function->getNumParams();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003304 else
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003305 return TDK_TooManyArguments;
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003306 }
Mike Stump11289f42009-09-09 15:08:12 +00003307
Douglas Gregor89026b52009-06-30 23:57:56 +00003308 // The types of the parameters from which we will perform template argument
3309 // deduction.
John McCall19c1bfd2010-08-25 05:32:35 +00003310 LocalInstantiationScope InstScope(*this);
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003311 TemplateParameterList *TemplateParams
3312 = FunctionTemplate->getTemplateParameters();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003313 SmallVector<DeducedTemplateArgument, 4> Deduced;
3314 SmallVector<QualType, 4> ParamTypes;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00003315 unsigned NumExplicitlySpecified = 0;
John McCall6b51f282009-11-23 01:53:49 +00003316 if (ExplicitTemplateArgs) {
Douglas Gregor9b146582009-07-08 20:55:45 +00003317 TemplateDeductionResult Result =
3318 SubstituteExplicitTemplateArguments(FunctionTemplate,
John McCall6b51f282009-11-23 01:53:49 +00003319 *ExplicitTemplateArgs,
Douglas Gregor9b146582009-07-08 20:55:45 +00003320 Deduced,
3321 ParamTypes,
3322 0,
3323 Info);
3324 if (Result)
3325 return Result;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00003326
3327 NumExplicitlySpecified = Deduced.size();
Douglas Gregor89026b52009-06-30 23:57:56 +00003328 } else {
3329 // Just fill in the parameter types from the function declaration.
Douglas Gregor7825bf32011-01-06 22:09:01 +00003330 for (unsigned I = 0, N = Function->getNumParams(); I != N; ++I)
Douglas Gregor89026b52009-06-30 23:57:56 +00003331 ParamTypes.push_back(Function->getParamDecl(I)->getType());
3332 }
Mike Stump11289f42009-09-09 15:08:12 +00003333
Douglas Gregor89026b52009-06-30 23:57:56 +00003334 // Deduce template arguments from the function parameters.
Mike Stump11289f42009-09-09 15:08:12 +00003335 Deduced.resize(TemplateParams->size());
Douglas Gregor7825bf32011-01-06 22:09:01 +00003336 unsigned ArgIdx = 0;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003337 SmallVector<OriginalCallArg, 4> OriginalCallArgs;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003338 for (unsigned ParamIdx = 0, NumParams = ParamTypes.size();
Douglas Gregor7825bf32011-01-06 22:09:01 +00003339 ParamIdx != NumParams; ++ParamIdx) {
Douglas Gregore65aacb2011-06-16 16:50:48 +00003340 QualType OrigParamType = ParamTypes[ParamIdx];
3341 QualType ParamType = OrigParamType;
3342
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003343 const PackExpansionType *ParamExpansion
Douglas Gregor7825bf32011-01-06 22:09:01 +00003344 = dyn_cast<PackExpansionType>(ParamType);
3345 if (!ParamExpansion) {
3346 // Simple case: matching a function parameter to a function argument.
3347 if (ArgIdx >= CheckArgs)
3348 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003349
Douglas Gregor7825bf32011-01-06 22:09:01 +00003350 Expr *Arg = Args[ArgIdx++];
3351 QualType ArgType = Arg->getType();
Douglas Gregore65aacb2011-06-16 16:50:48 +00003352
Douglas Gregor7825bf32011-01-06 22:09:01 +00003353 unsigned TDF = 0;
3354 if (AdjustFunctionParmAndArgTypesForDeduction(*this, TemplateParams,
3355 ParamType, ArgType, Arg,
3356 TDF))
3357 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003358
Douglas Gregor0c83c812011-10-09 22:06:46 +00003359 // If we have nothing to deduce, we're done.
3360 if (!hasDeducibleTemplateParameters(*this, FunctionTemplate, ParamType))
3361 continue;
3362
Sebastian Redl43144e72012-01-17 22:49:58 +00003363 // If the argument is an initializer list ...
3364 if (InitListExpr *ILE = dyn_cast<InitListExpr>(Arg)) {
3365 // ... then the parameter is an undeduced context, unless the parameter
3366 // type is (reference to cv) std::initializer_list<P'>, in which case
3367 // deduction is done for each element of the initializer list, and the
3368 // result is the deduced type if it's the same for all elements.
3369 QualType X;
3370 // Removing references was already done.
3371 if (!isStdInitializerList(ParamType, &X))
3372 continue;
3373
3374 for (unsigned i = 0, e = ILE->getNumInits(); i < e; ++i) {
3375 if (TemplateDeductionResult Result =
Sebastian Redl19181662012-03-15 21:40:51 +00003376 DeduceTemplateArgumentByListElement(*this, TemplateParams, X,
3377 ILE->getInit(i),
3378 Info, Deduced, TDF))
Sebastian Redl43144e72012-01-17 22:49:58 +00003379 return Result;
3380 }
3381 // Don't track the argument type, since an initializer list has none.
3382 continue;
3383 }
3384
Douglas Gregore65aacb2011-06-16 16:50:48 +00003385 // Keep track of the argument type and corresponding parameter index,
3386 // so we can check for compatibility between the deduced A and A.
Douglas Gregor0c83c812011-10-09 22:06:46 +00003387 OriginalCallArgs.push_back(OriginalCallArg(OrigParamType, ArgIdx-1,
3388 ArgType));
Douglas Gregore65aacb2011-06-16 16:50:48 +00003389
Douglas Gregor7825bf32011-01-06 22:09:01 +00003390 if (TemplateDeductionResult Result
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00003391 = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams,
3392 ParamType, ArgType,
3393 Info, Deduced, TDF))
Douglas Gregor7825bf32011-01-06 22:09:01 +00003394 return Result;
Mike Stump11289f42009-09-09 15:08:12 +00003395
Douglas Gregor7825bf32011-01-06 22:09:01 +00003396 continue;
Douglas Gregor66d2c8e2010-08-30 21:04:23 +00003397 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003398
Douglas Gregor7825bf32011-01-06 22:09:01 +00003399 // C++0x [temp.deduct.call]p1:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003400 // For a function parameter pack that occurs at the end of the
3401 // parameter-declaration-list, the type A of each remaining argument of
3402 // the call is compared with the type P of the declarator-id of the
3403 // function parameter pack. Each comparison deduces template arguments
3404 // for subsequent positions in the template parameter packs expanded by
Douglas Gregor0dd423e2011-01-11 01:52:23 +00003405 // the function parameter pack. For a function parameter pack that does
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003406 // not occur at the end of the parameter-declaration-list, the type of
Douglas Gregor0dd423e2011-01-11 01:52:23 +00003407 // the parameter pack is a non-deduced context.
3408 if (ParamIdx + 1 < NumParams)
3409 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003410
Douglas Gregor7825bf32011-01-06 22:09:01 +00003411 QualType ParamPattern = ParamExpansion->getPattern();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003412 SmallVector<unsigned, 2> PackIndices;
Douglas Gregor7825bf32011-01-06 22:09:01 +00003413 {
Benjamin Kramere0513cb2012-01-30 16:17:39 +00003414 llvm::SmallBitVector SawIndices(TemplateParams->size());
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003415 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor7825bf32011-01-06 22:09:01 +00003416 collectUnexpandedParameterPacks(ParamPattern, Unexpanded);
3417 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) {
3418 unsigned Depth, Index;
3419 llvm::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]);
3420 if (Depth == 0 && !SawIndices[Index]) {
3421 SawIndices[Index] = true;
3422 PackIndices.push_back(Index);
3423 }
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003424 }
3425 }
Douglas Gregor7825bf32011-01-06 22:09:01 +00003426 assert(!PackIndices.empty() && "Pack expansion without unexpanded packs?");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003427
Douglas Gregor7825bf32011-01-06 22:09:01 +00003428 // Keep track of the deduced template arguments for each parameter pack
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003429 // expanded by this pack expansion (the outer index) and for each
Douglas Gregor7825bf32011-01-06 22:09:01 +00003430 // template argument (the inner SmallVectors).
Craig Topper0a4e1f52013-07-08 04:44:01 +00003431 NewlyDeducedPacksType NewlyDeducedPacks(PackIndices.size());
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003432 SmallVector<DeducedTemplateArgument, 2>
Douglas Gregora8bac7f2011-01-10 07:32:04 +00003433 SavedPacks(PackIndices.size());
Douglas Gregora8bd0d92011-01-10 17:35:05 +00003434 PrepareArgumentPackDeduction(*this, Deduced, PackIndices, SavedPacks,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003435 NewlyDeducedPacks);
Douglas Gregor7825bf32011-01-06 22:09:01 +00003436 bool HasAnyArguments = false;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003437 for (; ArgIdx < Args.size(); ++ArgIdx) {
Douglas Gregor7825bf32011-01-06 22:09:01 +00003438 HasAnyArguments = true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003439
Douglas Gregore65aacb2011-06-16 16:50:48 +00003440 QualType OrigParamType = ParamPattern;
3441 ParamType = OrigParamType;
Douglas Gregor7825bf32011-01-06 22:09:01 +00003442 Expr *Arg = Args[ArgIdx];
3443 QualType ArgType = Arg->getType();
Douglas Gregore65aacb2011-06-16 16:50:48 +00003444
Douglas Gregor7825bf32011-01-06 22:09:01 +00003445 unsigned TDF = 0;
3446 if (AdjustFunctionParmAndArgTypesForDeduction(*this, TemplateParams,
3447 ParamType, ArgType, Arg,
3448 TDF)) {
3449 // We can't actually perform any deduction for this argument, so stop
3450 // deduction at this point.
3451 ++ArgIdx;
3452 break;
3453 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003454
Sebastian Redl43144e72012-01-17 22:49:58 +00003455 // As above, initializer lists need special handling.
3456 if (InitListExpr *ILE = dyn_cast<InitListExpr>(Arg)) {
3457 QualType X;
3458 if (!isStdInitializerList(ParamType, &X)) {
3459 ++ArgIdx;
3460 break;
3461 }
Douglas Gregore65aacb2011-06-16 16:50:48 +00003462
Sebastian Redl43144e72012-01-17 22:49:58 +00003463 for (unsigned i = 0, e = ILE->getNumInits(); i < e; ++i) {
3464 if (TemplateDeductionResult Result =
3465 DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams, X,
3466 ILE->getInit(i)->getType(),
3467 Info, Deduced, TDF))
3468 return Result;
3469 }
3470 } else {
3471
3472 // Keep track of the argument type and corresponding argument index,
3473 // so we can check for compatibility between the deduced A and A.
3474 if (hasDeducibleTemplateParameters(*this, FunctionTemplate, ParamType))
3475 OriginalCallArgs.push_back(OriginalCallArg(OrigParamType, ArgIdx,
3476 ArgType));
3477
3478 if (TemplateDeductionResult Result
3479 = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams,
3480 ParamType, ArgType, Info,
3481 Deduced, TDF))
3482 return Result;
3483 }
Mike Stump11289f42009-09-09 15:08:12 +00003484
Douglas Gregor7825bf32011-01-06 22:09:01 +00003485 // Capture the deduced template arguments for each parameter pack expanded
3486 // by this pack expansion, add them to the list of arguments we've deduced
3487 // for that pack, then clear out the deduced argument.
3488 for (unsigned I = 0, N = PackIndices.size(); I != N; ++I) {
3489 DeducedTemplateArgument &DeducedArg = Deduced[PackIndices[I]];
3490 if (!DeducedArg.isNull()) {
3491 NewlyDeducedPacks[I].push_back(DeducedArg);
3492 DeducedArg = DeducedTemplateArgument();
3493 }
3494 }
3495 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003496
Douglas Gregor7825bf32011-01-06 22:09:01 +00003497 // Build argument packs for each of the parameter packs expanded by this
3498 // pack expansion.
Douglas Gregorb94a6172011-01-10 17:53:52 +00003499 if (Sema::TemplateDeductionResult Result
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003500 = FinishArgumentPackDeduction(*this, TemplateParams, HasAnyArguments,
Douglas Gregorb94a6172011-01-10 17:53:52 +00003501 Deduced, PackIndices, SavedPacks,
3502 NewlyDeducedPacks, Info))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003503 return Result;
Mike Stump11289f42009-09-09 15:08:12 +00003504
Douglas Gregor7825bf32011-01-06 22:09:01 +00003505 // After we've matching against a parameter pack, we're done.
3506 break;
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003507 }
Douglas Gregor05155d82009-08-21 23:19:43 +00003508
Mike Stump11289f42009-09-09 15:08:12 +00003509 return FinishTemplateArgumentDeduction(FunctionTemplate, Deduced,
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00003510 NumExplicitlySpecified,
Douglas Gregore65aacb2011-06-16 16:50:48 +00003511 Specialization, Info, &OriginalCallArgs);
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003512}
3513
Rafael Espindola6edca7d2013-12-01 16:54:29 +00003514QualType Sema::adjustCCAndNoReturn(QualType ArgFunctionType,
3515 QualType FunctionType) {
3516 if (ArgFunctionType.isNull())
3517 return ArgFunctionType;
3518
3519 const FunctionProtoType *FunctionTypeP =
3520 FunctionType->castAs<FunctionProtoType>();
3521 CallingConv CC = FunctionTypeP->getCallConv();
3522 bool NoReturn = FunctionTypeP->getNoReturnAttr();
3523 const FunctionProtoType *ArgFunctionTypeP =
3524 ArgFunctionType->getAs<FunctionProtoType>();
3525 if (ArgFunctionTypeP->getCallConv() == CC &&
3526 ArgFunctionTypeP->getNoReturnAttr() == NoReturn)
3527 return ArgFunctionType;
3528
3529 FunctionType::ExtInfo EI = ArgFunctionTypeP->getExtInfo().withCallingConv(CC);
3530 EI = EI.withNoReturn(NoReturn);
3531 ArgFunctionTypeP =
3532 cast<FunctionProtoType>(Context.adjustFunctionType(ArgFunctionTypeP, EI));
3533 return QualType(ArgFunctionTypeP, 0);
3534}
3535
Douglas Gregor9b146582009-07-08 20:55:45 +00003536/// \brief Deduce template arguments when taking the address of a function
Douglas Gregor8364e6b2009-12-21 23:17:24 +00003537/// template (C++ [temp.deduct.funcaddr]) or matching a specialization to
3538/// a template.
Douglas Gregor9b146582009-07-08 20:55:45 +00003539///
3540/// \param FunctionTemplate the function template for which we are performing
3541/// template argument deduction.
3542///
James Dennett18348b62012-06-22 08:52:37 +00003543/// \param ExplicitTemplateArgs the explicitly-specified template
Douglas Gregor8364e6b2009-12-21 23:17:24 +00003544/// arguments.
Douglas Gregor9b146582009-07-08 20:55:45 +00003545///
3546/// \param ArgFunctionType the function type that will be used as the
3547/// "argument" type (A) when performing template argument deduction from the
Douglas Gregor8364e6b2009-12-21 23:17:24 +00003548/// function template's function type. This type may be NULL, if there is no
3549/// argument type to compare against, in C++0x [temp.arg.explicit]p3.
Douglas Gregor9b146582009-07-08 20:55:45 +00003550///
3551/// \param Specialization if template argument deduction was successful,
Mike Stump11289f42009-09-09 15:08:12 +00003552/// this will be set to the function template specialization produced by
Douglas Gregor9b146582009-07-08 20:55:45 +00003553/// template argument deduction.
3554///
3555/// \param Info the argument will be updated to provide additional information
3556/// about template argument deduction.
3557///
3558/// \returns the result of template argument deduction.
3559Sema::TemplateDeductionResult
3560Sema::DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
Douglas Gregor739b107a2011-03-03 02:41:12 +00003561 TemplateArgumentListInfo *ExplicitTemplateArgs,
Douglas Gregor9b146582009-07-08 20:55:45 +00003562 QualType ArgFunctionType,
3563 FunctionDecl *&Specialization,
Douglas Gregor19a41f12013-04-17 08:45:07 +00003564 TemplateDeductionInfo &Info,
3565 bool InOverloadResolution) {
Douglas Gregorc5c01a62012-09-13 21:01:57 +00003566 if (FunctionTemplate->isInvalidDecl())
3567 return TDK_Invalid;
3568
Douglas Gregor9b146582009-07-08 20:55:45 +00003569 FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
3570 TemplateParameterList *TemplateParams
3571 = FunctionTemplate->getTemplateParameters();
3572 QualType FunctionType = Function->getType();
Rafael Espindola6edca7d2013-12-01 16:54:29 +00003573 if (!InOverloadResolution)
3574 ArgFunctionType = adjustCCAndNoReturn(ArgFunctionType, FunctionType);
Mike Stump11289f42009-09-09 15:08:12 +00003575
Douglas Gregor9b146582009-07-08 20:55:45 +00003576 // Substitute any explicit template arguments.
John McCall19c1bfd2010-08-25 05:32:35 +00003577 LocalInstantiationScope InstScope(*this);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003578 SmallVector<DeducedTemplateArgument, 4> Deduced;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00003579 unsigned NumExplicitlySpecified = 0;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003580 SmallVector<QualType, 4> ParamTypes;
John McCall6b51f282009-11-23 01:53:49 +00003581 if (ExplicitTemplateArgs) {
Mike Stump11289f42009-09-09 15:08:12 +00003582 if (TemplateDeductionResult Result
3583 = SubstituteExplicitTemplateArguments(FunctionTemplate,
John McCall6b51f282009-11-23 01:53:49 +00003584 *ExplicitTemplateArgs,
Mike Stump11289f42009-09-09 15:08:12 +00003585 Deduced, ParamTypes,
Douglas Gregor9b146582009-07-08 20:55:45 +00003586 &FunctionType, Info))
3587 return Result;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00003588
3589 NumExplicitlySpecified = Deduced.size();
Douglas Gregor9b146582009-07-08 20:55:45 +00003590 }
3591
Eli Friedman77dcc722012-02-08 03:07:05 +00003592 // Unevaluated SFINAE context.
3593 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Mike Stump11289f42009-09-09 15:08:12 +00003594 SFINAETrap Trap(*this);
3595
John McCallc1f69982010-02-02 02:21:27 +00003596 Deduced.resize(TemplateParams->size());
3597
Richard Smith2a7d4812013-05-04 07:00:32 +00003598 // If the function has a deduced return type, substitute it for a dependent
3599 // type so that we treat it as a non-deduced context in what follows.
Richard Smithc58f38f2013-08-14 20:16:31 +00003600 bool HasDeducedReturnType = false;
Richard Smith2a7d4812013-05-04 07:00:32 +00003601 if (getLangOpts().CPlusPlus1y && InOverloadResolution &&
Richard Smithc58f38f2013-08-14 20:16:31 +00003602 Function->getResultType()->getContainedAutoType()) {
Richard Smith2a7d4812013-05-04 07:00:32 +00003603 FunctionType = SubstAutoType(FunctionType, Context.DependentTy);
Richard Smithc58f38f2013-08-14 20:16:31 +00003604 HasDeducedReturnType = true;
Richard Smith2a7d4812013-05-04 07:00:32 +00003605 }
3606
Douglas Gregor8364e6b2009-12-21 23:17:24 +00003607 if (!ArgFunctionType.isNull()) {
Douglas Gregor19a41f12013-04-17 08:45:07 +00003608 unsigned TDF = TDF_TopLevelParameterTypeList;
3609 if (InOverloadResolution) TDF |= TDF_InOverloadResolution;
Douglas Gregor8364e6b2009-12-21 23:17:24 +00003610 // Deduce template arguments from the function type.
Douglas Gregor8364e6b2009-12-21 23:17:24 +00003611 if (TemplateDeductionResult Result
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00003612 = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams,
Douglas Gregor19a41f12013-04-17 08:45:07 +00003613 FunctionType, ArgFunctionType,
3614 Info, Deduced, TDF))
Douglas Gregor8364e6b2009-12-21 23:17:24 +00003615 return Result;
3616 }
Douglas Gregor4ed49f32010-09-29 21:14:36 +00003617
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003618 if (TemplateDeductionResult Result
Douglas Gregor4ed49f32010-09-29 21:14:36 +00003619 = FinishTemplateArgumentDeduction(FunctionTemplate, Deduced,
3620 NumExplicitlySpecified,
3621 Specialization, Info))
3622 return Result;
3623
Richard Smith2a7d4812013-05-04 07:00:32 +00003624 // If the function has a deduced return type, deduce it now, so we can check
3625 // that the deduced function type matches the requested type.
Richard Smithc58f38f2013-08-14 20:16:31 +00003626 if (HasDeducedReturnType &&
Richard Smith2a7d4812013-05-04 07:00:32 +00003627 Specialization->getResultType()->isUndeducedType() &&
3628 DeduceReturnType(Specialization, Info.getLocation(), false))
3629 return TDK_MiscellaneousDeductionFailure;
3630
Douglas Gregor4ed49f32010-09-29 21:14:36 +00003631 // If the requested function type does not match the actual type of the
Douglas Gregor19a41f12013-04-17 08:45:07 +00003632 // specialization with respect to arguments of compatible pointer to function
3633 // types, template argument deduction fails.
3634 if (!ArgFunctionType.isNull()) {
3635 if (InOverloadResolution && !isSameOrCompatibleFunctionType(
3636 Context.getCanonicalType(Specialization->getType()),
3637 Context.getCanonicalType(ArgFunctionType)))
3638 return TDK_MiscellaneousDeductionFailure;
3639 else if(!InOverloadResolution &&
3640 !Context.hasSameType(Specialization->getType(), ArgFunctionType))
3641 return TDK_MiscellaneousDeductionFailure;
3642 }
Douglas Gregor4ed49f32010-09-29 21:14:36 +00003643
3644 return TDK_Success;
Douglas Gregor9b146582009-07-08 20:55:45 +00003645}
3646
Faisal Vali850da1a2013-09-29 17:08:32 +00003647/// \brief Given a function declaration (e.g. a generic lambda conversion
3648/// function) that contains an 'auto' in its result type, substitute it
Faisal Vali2b3a3012013-10-24 23:40:02 +00003649/// with TypeToReplaceAutoWith. Be careful to pass in the type you want
3650/// to replace 'auto' with and not the actual result type you want
3651/// to set the function to.
Faisal Vali571df122013-09-29 08:45:24 +00003652static inline void
Faisal Vali2b3a3012013-10-24 23:40:02 +00003653SubstAutoWithinFunctionReturnType(FunctionDecl *F,
Faisal Vali571df122013-09-29 08:45:24 +00003654 QualType TypeToReplaceAutoWith, Sema &S) {
Faisal Vali2b3a3012013-10-24 23:40:02 +00003655 assert(!TypeToReplaceAutoWith->getContainedAutoType());
Faisal Vali850da1a2013-09-29 17:08:32 +00003656 QualType AutoResultType = F->getResultType();
3657 assert(AutoResultType->getContainedAutoType());
3658 QualType DeducedResultType = S.SubstAutoType(AutoResultType,
Faisal Vali571df122013-09-29 08:45:24 +00003659 TypeToReplaceAutoWith);
3660 S.Context.adjustDeducedFunctionResultType(F, DeducedResultType);
3661}
Faisal Vali2b3a3012013-10-24 23:40:02 +00003662
3663/// \brief Given a specialized conversion operator of a generic lambda
3664/// create the corresponding specializations of the call operator and
3665/// the static-invoker. If the return type of the call operator is auto,
3666/// deduce its return type and check if that matches the
3667/// return type of the destination function ptr.
3668
3669static inline Sema::TemplateDeductionResult
3670SpecializeCorrespondingLambdaCallOperatorAndInvoker(
3671 CXXConversionDecl *ConversionSpecialized,
3672 SmallVectorImpl<DeducedTemplateArgument> &DeducedArguments,
3673 QualType ReturnTypeOfDestFunctionPtr,
3674 TemplateDeductionInfo &TDInfo,
3675 Sema &S) {
3676
3677 CXXRecordDecl *LambdaClass = ConversionSpecialized->getParent();
3678 assert(LambdaClass && LambdaClass->isGenericLambda());
3679
3680 CXXMethodDecl *CallOpGeneric = LambdaClass->getLambdaCallOperator();
3681 QualType CallOpResultType = CallOpGeneric->getResultType();
3682 const bool GenericLambdaCallOperatorHasDeducedReturnType =
3683 CallOpResultType->getContainedAutoType();
3684
3685 FunctionTemplateDecl *CallOpTemplate =
3686 CallOpGeneric->getDescribedFunctionTemplate();
3687
3688 FunctionDecl *CallOpSpecialized = 0;
3689 // Use the deduced arguments of the conversion function, to specialize our
3690 // generic lambda's call operator.
3691 if (Sema::TemplateDeductionResult Result
3692 = S.FinishTemplateArgumentDeduction(CallOpTemplate,
3693 DeducedArguments,
3694 0, CallOpSpecialized, TDInfo))
3695 return Result;
3696
3697 // If we need to deduce the return type, do so (instantiates the callop).
3698 if (GenericLambdaCallOperatorHasDeducedReturnType &&
3699 CallOpSpecialized->getResultType()->isUndeducedType())
3700 S.DeduceReturnType(CallOpSpecialized,
3701 CallOpSpecialized->getPointOfInstantiation(),
3702 /*Diagnose*/ true);
3703
3704 // Check to see if the return type of the destination ptr-to-function
3705 // matches the return type of the call operator.
3706 if (!S.Context.hasSameType(CallOpSpecialized->getResultType(),
3707 ReturnTypeOfDestFunctionPtr))
3708 return Sema::TDK_NonDeducedMismatch;
3709 // Since we have succeeded in matching the source and destination
3710 // ptr-to-functions (now including return type), and have successfully
3711 // specialized our corresponding call operator, we are ready to
3712 // specialize the static invoker with the deduced arguments of our
3713 // ptr-to-function.
3714 FunctionDecl *InvokerSpecialized = 0;
3715 FunctionTemplateDecl *InvokerTemplate = LambdaClass->
3716 getLambdaStaticInvoker()->getDescribedFunctionTemplate();
3717
3718 Sema::TemplateDeductionResult LLVM_ATTRIBUTE_UNUSED Result
3719 = S.FinishTemplateArgumentDeduction(InvokerTemplate, DeducedArguments, 0,
3720 InvokerSpecialized, TDInfo);
3721 assert(Result == Sema::TDK_Success &&
3722 "If the call operator succeeded so should the invoker!");
3723 // Set the result type to match the corresponding call operator
3724 // specialization's result type.
3725 if (GenericLambdaCallOperatorHasDeducedReturnType &&
3726 InvokerSpecialized->getResultType()->isUndeducedType()) {
3727 // Be sure to get the type to replace 'auto' with and not
3728 // the full result type of the call op specialization
3729 // to substitute into the 'auto' of the invoker and conversion
3730 // function.
3731 // For e.g.
3732 // int* (*fp)(int*) = [](auto* a) -> auto* { return a; };
3733 // We don't want to subst 'int*' into 'auto' to get int**.
3734
3735 QualType TypeToReplaceAutoWith =
3736 CallOpSpecialized->getResultType()->
3737 getContainedAutoType()->getDeducedType();
3738 SubstAutoWithinFunctionReturnType(InvokerSpecialized,
3739 TypeToReplaceAutoWith, S);
3740 SubstAutoWithinFunctionReturnType(ConversionSpecialized,
3741 TypeToReplaceAutoWith, S);
3742 }
3743
3744 // Ensure that static invoker doesn't have a const qualifier.
3745 // FIXME: When creating the InvokerTemplate in SemaLambda.cpp
3746 // do not use the CallOperator's TypeSourceInfo which allows
3747 // the const qualifier to leak through.
3748 const FunctionProtoType *InvokerFPT = InvokerSpecialized->
3749 getType().getTypePtr()->castAs<FunctionProtoType>();
3750 FunctionProtoType::ExtProtoInfo EPI = InvokerFPT->getExtProtoInfo();
3751 EPI.TypeQuals = 0;
3752 InvokerSpecialized->setType(S.Context.getFunctionType(
Alp Toker9cacbab2014-01-20 20:26:09 +00003753 InvokerFPT->getResultType(), InvokerFPT->getParamTypes(), EPI));
Faisal Vali2b3a3012013-10-24 23:40:02 +00003754 return Sema::TDK_Success;
3755}
Douglas Gregor05155d82009-08-21 23:19:43 +00003756/// \brief Deduce template arguments for a templated conversion
3757/// function (C++ [temp.deduct.conv]) and, if successful, produce a
3758/// conversion function template specialization.
3759Sema::TemplateDeductionResult
Faisal Vali571df122013-09-29 08:45:24 +00003760Sema::DeduceTemplateArguments(FunctionTemplateDecl *ConversionTemplate,
Douglas Gregor05155d82009-08-21 23:19:43 +00003761 QualType ToType,
3762 CXXConversionDecl *&Specialization,
3763 TemplateDeductionInfo &Info) {
Faisal Vali571df122013-09-29 08:45:24 +00003764 if (ConversionTemplate->isInvalidDecl())
Douglas Gregorc5c01a62012-09-13 21:01:57 +00003765 return TDK_Invalid;
3766
Faisal Vali2b3a3012013-10-24 23:40:02 +00003767 CXXConversionDecl *ConversionGeneric
Faisal Vali571df122013-09-29 08:45:24 +00003768 = cast<CXXConversionDecl>(ConversionTemplate->getTemplatedDecl());
3769
Faisal Vali2b3a3012013-10-24 23:40:02 +00003770 QualType FromType = ConversionGeneric->getConversionType();
Douglas Gregor05155d82009-08-21 23:19:43 +00003771
3772 // Canonicalize the types for deduction.
3773 QualType P = Context.getCanonicalType(FromType);
3774 QualType A = Context.getCanonicalType(ToType);
3775
Douglas Gregord99609a2011-03-06 09:03:20 +00003776 // C++0x [temp.deduct.conv]p2:
Douglas Gregor05155d82009-08-21 23:19:43 +00003777 // If P is a reference type, the type referred to by P is used for
3778 // type deduction.
3779 if (const ReferenceType *PRef = P->getAs<ReferenceType>())
3780 P = PRef->getPointeeType();
3781
Douglas Gregord99609a2011-03-06 09:03:20 +00003782 // C++0x [temp.deduct.conv]p4:
3783 // [...] If A is a reference type, the type referred to by A is used
Douglas Gregor05155d82009-08-21 23:19:43 +00003784 // for type deduction.
3785 if (const ReferenceType *ARef = A->getAs<ReferenceType>())
Douglas Gregord99609a2011-03-06 09:03:20 +00003786 A = ARef->getPointeeType().getUnqualifiedType();
3787 // C++ [temp.deduct.conv]p3:
Douglas Gregor05155d82009-08-21 23:19:43 +00003788 //
Mike Stump11289f42009-09-09 15:08:12 +00003789 // If A is not a reference type:
Douglas Gregor05155d82009-08-21 23:19:43 +00003790 else {
3791 assert(!A->isReferenceType() && "Reference types were handled above");
3792
3793 // - If P is an array type, the pointer type produced by the
Mike Stump11289f42009-09-09 15:08:12 +00003794 // array-to-pointer standard conversion (4.2) is used in place
Douglas Gregor05155d82009-08-21 23:19:43 +00003795 // of P for type deduction; otherwise,
3796 if (P->isArrayType())
3797 P = Context.getArrayDecayedType(P);
3798 // - If P is a function type, the pointer type produced by the
3799 // function-to-pointer standard conversion (4.3) is used in
3800 // place of P for type deduction; otherwise,
3801 else if (P->isFunctionType())
3802 P = Context.getPointerType(P);
3803 // - If P is a cv-qualified type, the top level cv-qualifiers of
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00003804 // P's type are ignored for type deduction.
Douglas Gregor05155d82009-08-21 23:19:43 +00003805 else
3806 P = P.getUnqualifiedType();
3807
Douglas Gregord99609a2011-03-06 09:03:20 +00003808 // C++0x [temp.deduct.conv]p4:
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00003809 // If A is a cv-qualified type, the top level cv-qualifiers of A's
Douglas Gregord99609a2011-03-06 09:03:20 +00003810 // type are ignored for type deduction. If A is a reference type, the type
3811 // referred to by A is used for type deduction.
Douglas Gregor05155d82009-08-21 23:19:43 +00003812 A = A.getUnqualifiedType();
3813 }
3814
Eli Friedman77dcc722012-02-08 03:07:05 +00003815 // Unevaluated SFINAE context.
3816 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Mike Stump11289f42009-09-09 15:08:12 +00003817 SFINAETrap Trap(*this);
Douglas Gregor05155d82009-08-21 23:19:43 +00003818
3819 // C++ [temp.deduct.conv]p1:
3820 // Template argument deduction is done by comparing the return
3821 // type of the template conversion function (call it P) with the
3822 // type that is required as the result of the conversion (call it
3823 // A) as described in 14.8.2.4.
3824 TemplateParameterList *TemplateParams
Faisal Vali571df122013-09-29 08:45:24 +00003825 = ConversionTemplate->getTemplateParameters();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003826 SmallVector<DeducedTemplateArgument, 4> Deduced;
Mike Stump11289f42009-09-09 15:08:12 +00003827 Deduced.resize(TemplateParams->size());
Douglas Gregor05155d82009-08-21 23:19:43 +00003828
3829 // C++0x [temp.deduct.conv]p4:
3830 // In general, the deduction process attempts to find template
3831 // argument values that will make the deduced A identical to
3832 // A. However, there are two cases that allow a difference:
3833 unsigned TDF = 0;
3834 // - If the original A is a reference type, A can be more
3835 // cv-qualified than the deduced A (i.e., the type referred to
3836 // by the reference)
3837 if (ToType->isReferenceType())
3838 TDF |= TDF_ParamWithReferenceType;
3839 // - The deduced A can be another pointer or pointer to member
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00003840 // type that can be converted to A via a qualification
Douglas Gregor05155d82009-08-21 23:19:43 +00003841 // conversion.
3842 //
3843 // (C++0x [temp.deduct.conv]p6 clarifies that this only happens when
3844 // both P and A are pointers or member pointers. In this case, we
3845 // just ignore cv-qualifiers completely).
3846 if ((P->isPointerType() && A->isPointerType()) ||
Douglas Gregor9f05ed52011-08-30 00:37:54 +00003847 (P->isMemberPointerType() && A->isMemberPointerType()))
Douglas Gregor05155d82009-08-21 23:19:43 +00003848 TDF |= TDF_IgnoreQualifiers;
3849 if (TemplateDeductionResult Result
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00003850 = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams,
3851 P, A, Info, Deduced, TDF))
Douglas Gregor05155d82009-08-21 23:19:43 +00003852 return Result;
Faisal Vali850da1a2013-09-29 17:08:32 +00003853
3854 // Create an Instantiation Scope for finalizing the operator.
3855 LocalInstantiationScope InstScope(*this);
Douglas Gregor05155d82009-08-21 23:19:43 +00003856 // Finish template argument deduction.
Faisal Vali2b3a3012013-10-24 23:40:02 +00003857 FunctionDecl *ConversionSpecialized = 0;
Faisal Vali850da1a2013-09-29 17:08:32 +00003858 TemplateDeductionResult Result
Faisal Vali2b3a3012013-10-24 23:40:02 +00003859 = FinishTemplateArgumentDeduction(ConversionTemplate, Deduced, 0,
3860 ConversionSpecialized, Info);
3861 Specialization = cast_or_null<CXXConversionDecl>(ConversionSpecialized);
3862
3863 // If the conversion operator is being invoked on a lambda closure to convert
3864 // to a ptr-to-function, use the deduced arguments from the conversion function
3865 // to specialize the corresponding call operator.
3866 // e.g., int (*fp)(int) = [](auto a) { return a; };
3867 if (Result == TDK_Success && isLambdaConversionOperator(ConversionGeneric)) {
3868
3869 // Get the return type of the destination ptr-to-function we are converting
3870 // to. This is necessary for matching the lambda call operator's return
3871 // type to that of the destination ptr-to-function's return type.
3872 assert(A->isPointerType() &&
3873 "Can only convert from lambda to ptr-to-function");
3874 const FunctionType *ToFunType =
3875 A->getPointeeType().getTypePtr()->getAs<FunctionType>();
3876 const QualType DestFunctionPtrReturnType = ToFunType->getResultType();
3877
3878 // Create the corresponding specializations of the call operator and
3879 // the static-invoker; and if the return type is auto,
3880 // deduce the return type and check if it matches the
3881 // DestFunctionPtrReturnType.
3882 // For instance:
3883 // auto L = [](auto a) { return f(a); };
3884 // int (*fp)(int) = L;
3885 // char (*fp2)(int) = L; <-- Not OK.
3886
3887 Result = SpecializeCorrespondingLambdaCallOperatorAndInvoker(
3888 Specialization, Deduced, DestFunctionPtrReturnType,
3889 Info, *this);
3890 }
Douglas Gregor05155d82009-08-21 23:19:43 +00003891 return Result;
3892}
3893
Douglas Gregor8364e6b2009-12-21 23:17:24 +00003894/// \brief Deduce template arguments for a function template when there is
3895/// nothing to deduce against (C++0x [temp.arg.explicit]p3).
3896///
3897/// \param FunctionTemplate the function template for which we are performing
3898/// template argument deduction.
3899///
James Dennett18348b62012-06-22 08:52:37 +00003900/// \param ExplicitTemplateArgs the explicitly-specified template
Douglas Gregor8364e6b2009-12-21 23:17:24 +00003901/// arguments.
3902///
3903/// \param Specialization if template argument deduction was successful,
3904/// this will be set to the function template specialization produced by
3905/// template argument deduction.
3906///
3907/// \param Info the argument will be updated to provide additional information
3908/// about template argument deduction.
3909///
3910/// \returns the result of template argument deduction.
3911Sema::TemplateDeductionResult
3912Sema::DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
Douglas Gregor739b107a2011-03-03 02:41:12 +00003913 TemplateArgumentListInfo *ExplicitTemplateArgs,
Douglas Gregor8364e6b2009-12-21 23:17:24 +00003914 FunctionDecl *&Specialization,
Douglas Gregor19a41f12013-04-17 08:45:07 +00003915 TemplateDeductionInfo &Info,
3916 bool InOverloadResolution) {
Douglas Gregor8364e6b2009-12-21 23:17:24 +00003917 return DeduceTemplateArguments(FunctionTemplate, ExplicitTemplateArgs,
Douglas Gregor19a41f12013-04-17 08:45:07 +00003918 QualType(), Specialization, Info,
3919 InOverloadResolution);
Douglas Gregor8364e6b2009-12-21 23:17:24 +00003920}
3921
Richard Smith30482bc2011-02-20 03:19:35 +00003922namespace {
3923 /// Substitute the 'auto' type specifier within a type for a given replacement
3924 /// type.
3925 class SubstituteAutoTransform :
3926 public TreeTransform<SubstituteAutoTransform> {
3927 QualType Replacement;
3928 public:
3929 SubstituteAutoTransform(Sema &SemaRef, QualType Replacement) :
3930 TreeTransform<SubstituteAutoTransform>(SemaRef), Replacement(Replacement) {
3931 }
3932 QualType TransformAutoType(TypeLocBuilder &TLB, AutoTypeLoc TL) {
3933 // If we're building the type pattern to deduce against, don't wrap the
3934 // substituted type in an AutoType. Certain template deduction rules
3935 // apply only when a template type parameter appears directly (and not if
3936 // the parameter is found through desugaring). For instance:
3937 // auto &&lref = lvalue;
3938 // must transform into "rvalue reference to T" not "rvalue reference to
3939 // auto type deduced as T" in order for [temp.deduct.call]p3 to apply.
Richard Smith2a7d4812013-05-04 07:00:32 +00003940 if (!Replacement.isNull() && isa<TemplateTypeParmType>(Replacement)) {
Richard Smith30482bc2011-02-20 03:19:35 +00003941 QualType Result = Replacement;
Richard Smith74aeef52013-04-26 16:15:35 +00003942 TemplateTypeParmTypeLoc NewTL =
3943 TLB.push<TemplateTypeParmTypeLoc>(Result);
Richard Smith30482bc2011-02-20 03:19:35 +00003944 NewTL.setNameLoc(TL.getNameLoc());
3945 return Result;
3946 } else {
Richard Smith27d807c2013-04-30 13:56:41 +00003947 bool Dependent =
3948 !Replacement.isNull() && Replacement->isDependentType();
3949 QualType Result =
3950 SemaRef.Context.getAutoType(Dependent ? QualType() : Replacement,
3951 TL.getTypePtr()->isDecltypeAuto(),
Manuel Klimek2fdbea22013-08-22 12:12:24 +00003952 Dependent);
Richard Smith30482bc2011-02-20 03:19:35 +00003953 AutoTypeLoc NewTL = TLB.push<AutoTypeLoc>(Result);
3954 NewTL.setNameLoc(TL.getNameLoc());
3955 return Result;
3956 }
3957 }
Douglas Gregor0c46b2b2012-02-13 22:00:16 +00003958
3959 ExprResult TransformLambdaExpr(LambdaExpr *E) {
3960 // Lambdas never need to be transformed.
3961 return E;
3962 }
Richard Smith061f1e22013-04-30 21:23:01 +00003963
Richard Smith2a7d4812013-05-04 07:00:32 +00003964 QualType Apply(TypeLoc TL) {
3965 // Create some scratch storage for the transformed type locations.
3966 // FIXME: We're just going to throw this information away. Don't build it.
3967 TypeLocBuilder TLB;
3968 TLB.reserve(TL.getFullDataSize());
3969 return TransformType(TLB, TL);
Richard Smith061f1e22013-04-30 21:23:01 +00003970 }
Richard Smith30482bc2011-02-20 03:19:35 +00003971 };
3972}
3973
Richard Smith2a7d4812013-05-04 07:00:32 +00003974Sema::DeduceAutoResult
3975Sema::DeduceAutoType(TypeSourceInfo *Type, Expr *&Init, QualType &Result) {
3976 return DeduceAutoType(Type->getTypeLoc(), Init, Result);
3977}
3978
Richard Smith061f1e22013-04-30 21:23:01 +00003979/// \brief Deduce the type for an auto type-specifier (C++11 [dcl.spec.auto]p6)
Richard Smith30482bc2011-02-20 03:19:35 +00003980///
3981/// \param Type the type pattern using the auto type-specifier.
Richard Smith30482bc2011-02-20 03:19:35 +00003982/// \param Init the initializer for the variable whose type is to be deduced.
Richard Smith30482bc2011-02-20 03:19:35 +00003983/// \param Result if type deduction was successful, this will be set to the
Richard Smith061f1e22013-04-30 21:23:01 +00003984/// deduced type.
Sebastian Redl09edce02012-01-23 22:09:39 +00003985Sema::DeduceAutoResult
Richard Smith2a7d4812013-05-04 07:00:32 +00003986Sema::DeduceAutoType(TypeLoc Type, Expr *&Init, QualType &Result) {
John McCalld5c98ae2011-11-15 01:35:18 +00003987 if (Init->getType()->isNonOverloadPlaceholderType()) {
Richard Smith061f1e22013-04-30 21:23:01 +00003988 ExprResult NonPlaceholder = CheckPlaceholderExpr(Init);
3989 if (NonPlaceholder.isInvalid())
3990 return DAR_FailedAlreadyDiagnosed;
3991 Init = NonPlaceholder.take();
John McCalld5c98ae2011-11-15 01:35:18 +00003992 }
3993
Richard Smith2a7d4812013-05-04 07:00:32 +00003994 if (Init->isTypeDependent() || Type.getType()->isDependentType()) {
Richard Smith061f1e22013-04-30 21:23:01 +00003995 Result = SubstituteAutoTransform(*this, Context.DependentTy).Apply(Type);
Richard Smith2a7d4812013-05-04 07:00:32 +00003996 assert(!Result.isNull() && "substituting DependentTy can't fail");
Sebastian Redl09edce02012-01-23 22:09:39 +00003997 return DAR_Succeeded;
Richard Smith30482bc2011-02-20 03:19:35 +00003998 }
3999
Richard Smith74aeef52013-04-26 16:15:35 +00004000 // If this is a 'decltype(auto)' specifier, do the decltype dance.
4001 // Since 'decltype(auto)' can only occur at the top of the type, we
4002 // don't need to go digging for it.
Richard Smith2a7d4812013-05-04 07:00:32 +00004003 if (const AutoType *AT = Type.getType()->getAs<AutoType>()) {
Richard Smith74aeef52013-04-26 16:15:35 +00004004 if (AT->isDecltypeAuto()) {
4005 if (isa<InitListExpr>(Init)) {
4006 Diag(Init->getLocStart(), diag::err_decltype_auto_initializer_list);
4007 return DAR_FailedAlreadyDiagnosed;
4008 }
4009
4010 QualType Deduced = BuildDecltypeType(Init, Init->getLocStart());
4011 // FIXME: Support a non-canonical deduced type for 'auto'.
4012 Deduced = Context.getCanonicalType(Deduced);
Richard Smith061f1e22013-04-30 21:23:01 +00004013 Result = SubstituteAutoTransform(*this, Deduced).Apply(Type);
Richard Smith2a7d4812013-05-04 07:00:32 +00004014 if (Result.isNull())
4015 return DAR_FailedAlreadyDiagnosed;
Richard Smith74aeef52013-04-26 16:15:35 +00004016 return DAR_Succeeded;
4017 }
4018 }
4019
Richard Smith30482bc2011-02-20 03:19:35 +00004020 SourceLocation Loc = Init->getExprLoc();
4021
4022 LocalInstantiationScope InstScope(*this);
4023
4024 // Build template<class TemplParam> void Func(FuncParam);
Chandler Carruth08836322011-05-01 00:51:33 +00004025 TemplateTypeParmDecl *TemplParam =
4026 TemplateTypeParmDecl::Create(Context, 0, SourceLocation(), Loc, 0, 0, 0,
4027 false, false);
4028 QualType TemplArg = QualType(TemplParam->getTypeForDecl(), 0);
4029 NamedDecl *TemplParamPtr = TemplParam;
Richard Smithb2bc2e62011-02-21 20:05:19 +00004030 FixedSizeTemplateParameterList<1> TemplateParams(Loc, Loc, &TemplParamPtr,
4031 Loc);
4032
Richard Smith061f1e22013-04-30 21:23:01 +00004033 QualType FuncParam = SubstituteAutoTransform(*this, TemplArg).Apply(Type);
4034 assert(!FuncParam.isNull() &&
4035 "substituting template parameter for 'auto' failed");
Richard Smith30482bc2011-02-20 03:19:35 +00004036
4037 // Deduce type of TemplParam in Func(Init)
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004038 SmallVector<DeducedTemplateArgument, 1> Deduced;
Richard Smith30482bc2011-02-20 03:19:35 +00004039 Deduced.resize(1);
4040 QualType InitType = Init->getType();
4041 unsigned TDF = 0;
Richard Smith30482bc2011-02-20 03:19:35 +00004042
Craig Toppere6706e42012-09-19 02:26:47 +00004043 TemplateDeductionInfo Info(Loc);
Sebastian Redl42acd4a2012-01-17 22:50:08 +00004044
Richard Smith74801c82012-07-08 04:13:07 +00004045 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
Sebastian Redl42acd4a2012-01-17 22:50:08 +00004046 if (InitList) {
4047 for (unsigned i = 0, e = InitList->getNumInits(); i < e; ++i) {
Richard Smith74801c82012-07-08 04:13:07 +00004048 if (DeduceTemplateArgumentByListElement(*this, &TemplateParams,
Douglas Gregor0e60cd72012-04-04 05:10:53 +00004049 TemplArg,
4050 InitList->getInit(i),
4051 Info, Deduced, TDF))
Sebastian Redl09edce02012-01-23 22:09:39 +00004052 return DAR_Failed;
Sebastian Redl42acd4a2012-01-17 22:50:08 +00004053 }
4054 } else {
Douglas Gregor0e60cd72012-04-04 05:10:53 +00004055 if (AdjustFunctionParmAndArgTypesForDeduction(*this, &TemplateParams,
4056 FuncParam, InitType, Init,
4057 TDF))
4058 return DAR_Failed;
Richard Smith74801c82012-07-08 04:13:07 +00004059
Sebastian Redl42acd4a2012-01-17 22:50:08 +00004060 if (DeduceTemplateArgumentsByTypeMatch(*this, &TemplateParams, FuncParam,
4061 InitType, Info, Deduced, TDF))
Sebastian Redl09edce02012-01-23 22:09:39 +00004062 return DAR_Failed;
Sebastian Redl42acd4a2012-01-17 22:50:08 +00004063 }
Richard Smith30482bc2011-02-20 03:19:35 +00004064
Eli Friedmane4310952012-11-06 23:56:42 +00004065 if (Deduced[0].getKind() != TemplateArgument::Type)
Sebastian Redl09edce02012-01-23 22:09:39 +00004066 return DAR_Failed;
Sebastian Redl42acd4a2012-01-17 22:50:08 +00004067
Eli Friedmane4310952012-11-06 23:56:42 +00004068 QualType DeducedType = Deduced[0].getAsType();
4069
Sebastian Redl42acd4a2012-01-17 22:50:08 +00004070 if (InitList) {
4071 DeducedType = BuildStdInitializerList(DeducedType, Loc);
4072 if (DeducedType.isNull())
Sebastian Redl09edce02012-01-23 22:09:39 +00004073 return DAR_FailedAlreadyDiagnosed;
Sebastian Redl42acd4a2012-01-17 22:50:08 +00004074 }
4075
Richard Smith061f1e22013-04-30 21:23:01 +00004076 Result = SubstituteAutoTransform(*this, DeducedType).Apply(Type);
Richard Smith2a7d4812013-05-04 07:00:32 +00004077 if (Result.isNull())
4078 return DAR_FailedAlreadyDiagnosed;
Sebastian Redl42acd4a2012-01-17 22:50:08 +00004079
Douglas Gregor518bc4c2011-06-17 05:31:46 +00004080 // Check that the deduced argument type is compatible with the original
4081 // argument type per C++ [temp.deduct.call]p4.
Richard Smith061f1e22013-04-30 21:23:01 +00004082 if (!InitList && !Result.isNull() &&
4083 CheckOriginalCallArgDeduction(*this,
Douglas Gregor518bc4c2011-06-17 05:31:46 +00004084 Sema::OriginalCallArg(FuncParam,0,InitType),
Richard Smith061f1e22013-04-30 21:23:01 +00004085 Result)) {
4086 Result = QualType();
Sebastian Redl09edce02012-01-23 22:09:39 +00004087 return DAR_Failed;
Douglas Gregor518bc4c2011-06-17 05:31:46 +00004088 }
4089
Sebastian Redl09edce02012-01-23 22:09:39 +00004090 return DAR_Succeeded;
Richard Smith30482bc2011-02-20 03:19:35 +00004091}
4092
Faisal Vali2b391ab2013-09-26 19:54:12 +00004093QualType Sema::SubstAutoType(QualType TypeWithAuto,
4094 QualType TypeToReplaceAuto) {
4095 return SubstituteAutoTransform(*this, TypeToReplaceAuto).
4096 TransformType(TypeWithAuto);
4097}
4098
4099TypeSourceInfo* Sema::SubstAutoTypeSourceInfo(TypeSourceInfo *TypeWithAuto,
4100 QualType TypeToReplaceAuto) {
4101 return SubstituteAutoTransform(*this, TypeToReplaceAuto).
4102 TransformType(TypeWithAuto);
Richard Smith27d807c2013-04-30 13:56:41 +00004103}
4104
Sebastian Redl42acd4a2012-01-17 22:50:08 +00004105void Sema::DiagnoseAutoDeductionFailure(VarDecl *VDecl, Expr *Init) {
4106 if (isa<InitListExpr>(Init))
4107 Diag(VDecl->getLocation(),
Richard Smithbb13c9a2013-09-28 04:02:39 +00004108 VDecl->isInitCapture()
4109 ? diag::err_init_capture_deduction_failure_from_init_list
4110 : diag::err_auto_var_deduction_failure_from_init_list)
Sebastian Redl42acd4a2012-01-17 22:50:08 +00004111 << VDecl->getDeclName() << VDecl->getType() << Init->getSourceRange();
4112 else
Richard Smithbb13c9a2013-09-28 04:02:39 +00004113 Diag(VDecl->getLocation(),
4114 VDecl->isInitCapture() ? diag::err_init_capture_deduction_failure
4115 : diag::err_auto_var_deduction_failure)
Sebastian Redl42acd4a2012-01-17 22:50:08 +00004116 << VDecl->getDeclName() << VDecl->getType() << Init->getType()
4117 << Init->getSourceRange();
4118}
4119
Richard Smith2a7d4812013-05-04 07:00:32 +00004120bool Sema::DeduceReturnType(FunctionDecl *FD, SourceLocation Loc,
4121 bool Diagnose) {
4122 assert(FD->getResultType()->isUndeducedType());
4123
4124 if (FD->getTemplateInstantiationPattern())
4125 InstantiateFunctionDefinition(Loc, FD);
4126
4127 bool StillUndeduced = FD->getResultType()->isUndeducedType();
4128 if (StillUndeduced && Diagnose && !FD->isInvalidDecl()) {
4129 Diag(Loc, diag::err_auto_fn_used_before_defined) << FD;
4130 Diag(FD->getLocation(), diag::note_callee_decl) << FD;
4131 }
4132
4133 return StillUndeduced;
4134}
4135
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004136static void
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004137MarkUsedTemplateParameters(ASTContext &Ctx, QualType T,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004138 bool OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004139 unsigned Level,
Benjamin Kramere0513cb2012-01-30 16:17:39 +00004140 llvm::SmallBitVector &Deduced);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004141
4142/// \brief If this is a non-static member function,
Craig Topper79653572013-07-08 04:13:06 +00004143static void
4144AddImplicitObjectParameterType(ASTContext &Context,
4145 CXXMethodDecl *Method,
4146 SmallVectorImpl<QualType> &ArgTypes) {
Eli Friedmanee2ff1c2012-09-19 23:52:13 +00004147 // C++11 [temp.func.order]p3:
4148 // [...] The new parameter is of type "reference to cv A," where cv are
4149 // the cv-qualifiers of the function template (if any) and A is
4150 // the class of which the function template is a member.
Douglas Gregor52773dc2010-11-12 23:44:13 +00004151 //
Eli Friedmanee2ff1c2012-09-19 23:52:13 +00004152 // The standard doesn't say explicitly, but we pick the appropriate kind of
4153 // reference type based on [over.match.funcs]p4.
Douglas Gregor52773dc2010-11-12 23:44:13 +00004154 QualType ArgTy = Context.getTypeDeclType(Method->getParent());
4155 ArgTy = Context.getQualifiedType(ArgTy,
4156 Qualifiers::fromCVRMask(Method->getTypeQualifiers()));
Eli Friedmanee2ff1c2012-09-19 23:52:13 +00004157 if (Method->getRefQualifier() == RQ_RValue)
4158 ArgTy = Context.getRValueReferenceType(ArgTy);
4159 else
4160 ArgTy = Context.getLValueReferenceType(ArgTy);
Douglas Gregor52773dc2010-11-12 23:44:13 +00004161 ArgTypes.push_back(ArgTy);
4162}
4163
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004164/// \brief Determine whether the function template \p FT1 is at least as
4165/// specialized as \p FT2.
4166static bool isAtLeastAsSpecializedAs(Sema &S,
John McCallbc077cf2010-02-08 23:07:23 +00004167 SourceLocation Loc,
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004168 FunctionTemplateDecl *FT1,
4169 FunctionTemplateDecl *FT2,
4170 TemplatePartialOrderingContext TPOC,
Richard Smithe5b52202013-09-11 00:52:39 +00004171 unsigned NumCallArguments1,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004172 SmallVectorImpl<RefParamPartialOrderingComparison> *RefParamComparisons) {
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004173 FunctionDecl *FD1 = FT1->getTemplatedDecl();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004174 FunctionDecl *FD2 = FT2->getTemplatedDecl();
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004175 const FunctionProtoType *Proto1 = FD1->getType()->getAs<FunctionProtoType>();
4176 const FunctionProtoType *Proto2 = FD2->getType()->getAs<FunctionProtoType>();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004177
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004178 assert(Proto1 && Proto2 && "Function templates must have prototypes");
4179 TemplateParameterList *TemplateParams = FT2->getTemplateParameters();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004180 SmallVector<DeducedTemplateArgument, 4> Deduced;
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004181 Deduced.resize(TemplateParams->size());
4182
4183 // C++0x [temp.deduct.partial]p3:
4184 // The types used to determine the ordering depend on the context in which
4185 // the partial ordering is done:
Craig Toppere6706e42012-09-19 02:26:47 +00004186 TemplateDeductionInfo Info(Loc);
Richard Smithe5b52202013-09-11 00:52:39 +00004187 SmallVector<QualType, 4> Args2;
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004188 switch (TPOC) {
4189 case TPOC_Call: {
4190 // - In the context of a function call, the function parameter types are
4191 // used.
Richard Smithe5b52202013-09-11 00:52:39 +00004192 CXXMethodDecl *Method1 = dyn_cast<CXXMethodDecl>(FD1);
4193 CXXMethodDecl *Method2 = dyn_cast<CXXMethodDecl>(FD2);
Douglas Gregoree430a32010-11-15 15:41:16 +00004194
Eli Friedman3b5774a2012-09-19 23:27:04 +00004195 // C++11 [temp.func.order]p3:
Douglas Gregoree430a32010-11-15 15:41:16 +00004196 // [...] If only one of the function templates is a non-static
4197 // member, that function template is considered to have a new
4198 // first parameter inserted in its function parameter list. The
4199 // new parameter is of type "reference to cv A," where cv are
4200 // the cv-qualifiers of the function template (if any) and A is
4201 // the class of which the function template is a member.
4202 //
Eli Friedman3b5774a2012-09-19 23:27:04 +00004203 // Note that we interpret this to mean "if one of the function
4204 // templates is a non-static member and the other is a non-member";
4205 // otherwise, the ordering rules for static functions against non-static
4206 // functions don't make any sense.
4207 //
Douglas Gregoree430a32010-11-15 15:41:16 +00004208 // C++98/03 doesn't have this provision, so instead we drop the
Eli Friedman3b5774a2012-09-19 23:27:04 +00004209 // first argument of the free function, which seems to match
4210 // existing practice.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004211 SmallVector<QualType, 4> Args1;
Richard Smithe5b52202013-09-11 00:52:39 +00004212
4213 unsigned Skip1 = 0, Skip2 = 0;
4214 unsigned NumComparedArguments = NumCallArguments1;
4215
4216 if (!Method2 && Method1 && !Method1->isStatic()) {
4217 if (S.getLangOpts().CPlusPlus11) {
4218 // Compare 'this' from Method1 against first parameter from Method2.
4219 AddImplicitObjectParameterType(S.Context, Method1, Args1);
4220 ++NumComparedArguments;
4221 } else
4222 // Ignore first parameter from Method2.
4223 ++Skip2;
4224 } else if (!Method1 && Method2 && !Method2->isStatic()) {
4225 if (S.getLangOpts().CPlusPlus11)
4226 // Compare 'this' from Method2 against first parameter from Method1.
4227 AddImplicitObjectParameterType(S.Context, Method2, Args2);
4228 else
4229 // Ignore first parameter from Method1.
4230 ++Skip1;
4231 }
4232
Alp Toker9cacbab2014-01-20 20:26:09 +00004233 Args1.insert(Args1.end(), Proto1->param_type_begin() + Skip1,
4234 Proto1->param_type_end());
4235 Args2.insert(Args2.end(), Proto2->param_type_begin() + Skip2,
4236 Proto2->param_type_end());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004237
Douglas Gregorb837ea42011-01-11 17:34:58 +00004238 // C++ [temp.func.order]p5:
4239 // The presence of unused ellipsis and default arguments has no effect on
4240 // the partial ordering of function templates.
Richard Smithe5b52202013-09-11 00:52:39 +00004241 if (Args1.size() > NumComparedArguments)
4242 Args1.resize(NumComparedArguments);
4243 if (Args2.size() > NumComparedArguments)
4244 Args2.resize(NumComparedArguments);
Douglas Gregorb837ea42011-01-11 17:34:58 +00004245 if (DeduceTemplateArguments(S, TemplateParams, Args2.data(), Args2.size(),
4246 Args1.data(), Args1.size(), Info, Deduced,
4247 TDF_None, /*PartialOrdering=*/true,
Douglas Gregor63814022011-01-21 17:29:42 +00004248 RefParamComparisons))
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004249 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004250
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004251 break;
4252 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004253
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004254 case TPOC_Conversion:
4255 // - In the context of a call to a conversion operator, the return types
4256 // of the conversion function templates are used.
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00004257 if (DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
4258 Proto2->getResultType(),
4259 Proto1->getResultType(),
4260 Info, Deduced, TDF_None,
4261 /*PartialOrdering=*/true,
4262 RefParamComparisons))
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004263 return false;
4264 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004265
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004266 case TPOC_Other:
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00004267 // - In other contexts (14.6.6.2) the function template's function type
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004268 // is used.
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00004269 if (DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
4270 FD2->getType(), FD1->getType(),
4271 Info, Deduced, TDF_None,
4272 /*PartialOrdering=*/true,
4273 RefParamComparisons))
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004274 return false;
4275 break;
4276 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004277
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004278 // C++0x [temp.deduct.partial]p11:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004279 // In most cases, all template parameters must have values in order for
4280 // deduction to succeed, but for partial ordering purposes a template
4281 // parameter may remain without a value provided it is not used in the
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004282 // types being used for partial ordering. [ Note: a template parameter used
4283 // in a non-deduced context is considered used. -end note]
4284 unsigned ArgIdx = 0, NumArgs = Deduced.size();
4285 for (; ArgIdx != NumArgs; ++ArgIdx)
4286 if (Deduced[ArgIdx].isNull())
4287 break;
4288
4289 if (ArgIdx == NumArgs) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004290 // All template arguments were deduced. FT1 is at least as specialized
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004291 // as FT2.
4292 return true;
4293 }
4294
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004295 // Figure out which template parameters were used.
Benjamin Kramere0513cb2012-01-30 16:17:39 +00004296 llvm::SmallBitVector UsedParameters(TemplateParams->size());
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004297 switch (TPOC) {
Richard Smithe5b52202013-09-11 00:52:39 +00004298 case TPOC_Call:
4299 for (unsigned I = 0, N = Args2.size(); I != N; ++I)
4300 ::MarkUsedTemplateParameters(S.Context, Args2[I], false,
Douglas Gregor21610382009-10-29 00:04:11 +00004301 TemplateParams->getDepth(),
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004302 UsedParameters);
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004303 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004304
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004305 case TPOC_Conversion:
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004306 ::MarkUsedTemplateParameters(S.Context, Proto2->getResultType(), false,
Douglas Gregor21610382009-10-29 00:04:11 +00004307 TemplateParams->getDepth(),
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004308 UsedParameters);
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004309 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004310
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004311 case TPOC_Other:
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004312 ::MarkUsedTemplateParameters(S.Context, FD2->getType(), false,
Douglas Gregor21610382009-10-29 00:04:11 +00004313 TemplateParams->getDepth(),
4314 UsedParameters);
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004315 break;
4316 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004317
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004318 for (; ArgIdx != NumArgs; ++ArgIdx)
4319 // If this argument had no value deduced but was used in one of the types
4320 // used for partial ordering, then deduction fails.
4321 if (Deduced[ArgIdx].isNull() && UsedParameters[ArgIdx])
4322 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004323
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004324 return true;
4325}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004326
Douglas Gregorcef1a032011-01-16 16:03:23 +00004327/// \brief Determine whether this a function template whose parameter-type-list
4328/// ends with a function parameter pack.
4329static bool isVariadicFunctionTemplate(FunctionTemplateDecl *FunTmpl) {
4330 FunctionDecl *Function = FunTmpl->getTemplatedDecl();
4331 unsigned NumParams = Function->getNumParams();
4332 if (NumParams == 0)
4333 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004334
Douglas Gregorcef1a032011-01-16 16:03:23 +00004335 ParmVarDecl *Last = Function->getParamDecl(NumParams - 1);
4336 if (!Last->isParameterPack())
4337 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004338
Douglas Gregorcef1a032011-01-16 16:03:23 +00004339 // Make sure that no previous parameter is a parameter pack.
4340 while (--NumParams > 0) {
4341 if (Function->getParamDecl(NumParams - 1)->isParameterPack())
4342 return false;
4343 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004344
Douglas Gregorcef1a032011-01-16 16:03:23 +00004345 return true;
4346}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004347
Douglas Gregorbe999392009-09-15 16:23:51 +00004348/// \brief Returns the more specialized function template according
Douglas Gregor05155d82009-08-21 23:19:43 +00004349/// to the rules of function template partial ordering (C++ [temp.func.order]).
4350///
4351/// \param FT1 the first function template
4352///
4353/// \param FT2 the second function template
4354///
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004355/// \param TPOC the context in which we are performing partial ordering of
4356/// function templates.
Mike Stump11289f42009-09-09 15:08:12 +00004357///
Richard Smithe5b52202013-09-11 00:52:39 +00004358/// \param NumCallArguments1 The number of arguments in the call to FT1, used
4359/// only when \c TPOC is \c TPOC_Call.
4360///
4361/// \param NumCallArguments2 The number of arguments in the call to FT2, used
4362/// only when \c TPOC is \c TPOC_Call.
Douglas Gregorb837ea42011-01-11 17:34:58 +00004363///
Douglas Gregorbe999392009-09-15 16:23:51 +00004364/// \returns the more specialized function template. If neither
Douglas Gregor05155d82009-08-21 23:19:43 +00004365/// template is more specialized, returns NULL.
4366FunctionTemplateDecl *
4367Sema::getMoreSpecializedTemplate(FunctionTemplateDecl *FT1,
4368 FunctionTemplateDecl *FT2,
John McCallbc077cf2010-02-08 23:07:23 +00004369 SourceLocation Loc,
Douglas Gregorb837ea42011-01-11 17:34:58 +00004370 TemplatePartialOrderingContext TPOC,
Richard Smithe5b52202013-09-11 00:52:39 +00004371 unsigned NumCallArguments1,
4372 unsigned NumCallArguments2) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004373 SmallVector<RefParamPartialOrderingComparison, 4> RefParamComparisons;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004374 bool Better1 = isAtLeastAsSpecializedAs(*this, Loc, FT1, FT2, TPOC,
Richard Smithe5b52202013-09-11 00:52:39 +00004375 NumCallArguments1, 0);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004376 bool Better2 = isAtLeastAsSpecializedAs(*this, Loc, FT2, FT1, TPOC,
Richard Smithe5b52202013-09-11 00:52:39 +00004377 NumCallArguments2,
Douglas Gregor63814022011-01-21 17:29:42 +00004378 &RefParamComparisons);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004379
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004380 if (Better1 != Better2) // We have a clear winner
4381 return Better1? FT1 : FT2;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004382
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004383 if (!Better1 && !Better2) // Neither is better than the other
Douglas Gregor05155d82009-08-21 23:19:43 +00004384 return 0;
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004385
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004386 // C++0x [temp.deduct.partial]p10:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004387 // If for each type being considered a given template is at least as
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004388 // specialized for all types and more specialized for some set of types and
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004389 // the other template is not more specialized for any types or is not at
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004390 // least as specialized for any types, then the given template is more
4391 // specialized than the other template. Otherwise, neither template is more
4392 // specialized than the other.
4393 Better1 = false;
4394 Better2 = false;
Douglas Gregor63814022011-01-21 17:29:42 +00004395 for (unsigned I = 0, N = RefParamComparisons.size(); I != N; ++I) {
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004396 // C++0x [temp.deduct.partial]p9:
4397 // If, for a given type, deduction succeeds in both directions (i.e., the
Douglas Gregor63814022011-01-21 17:29:42 +00004398 // types are identical after the transformations above) and both P and A
4399 // were reference types (before being replaced with the type referred to
4400 // above):
4401
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004402 // -- if the type from the argument template was an lvalue reference
Douglas Gregor63814022011-01-21 17:29:42 +00004403 // and the type from the parameter template was not, the argument
4404 // type is considered to be more specialized than the other;
4405 // otherwise,
4406 if (!RefParamComparisons[I].ArgIsRvalueRef &&
4407 RefParamComparisons[I].ParamIsRvalueRef) {
4408 Better2 = true;
4409 if (Better1)
4410 return 0;
4411 continue;
4412 } else if (!RefParamComparisons[I].ParamIsRvalueRef &&
4413 RefParamComparisons[I].ArgIsRvalueRef) {
4414 Better1 = true;
4415 if (Better2)
4416 return 0;
4417 continue;
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004418 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004419
Douglas Gregor63814022011-01-21 17:29:42 +00004420 // -- if the type from the argument template is more cv-qualified than
4421 // the type from the parameter template (as described above), the
4422 // argument type is considered to be more specialized than the
4423 // other; otherwise,
4424 switch (RefParamComparisons[I].Qualifiers) {
4425 case NeitherMoreQualified:
4426 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004427
Douglas Gregor63814022011-01-21 17:29:42 +00004428 case ParamMoreQualified:
4429 Better1 = true;
4430 if (Better2)
4431 return 0;
4432 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004433
Douglas Gregor63814022011-01-21 17:29:42 +00004434 case ArgMoreQualified:
4435 Better2 = true;
4436 if (Better1)
4437 return 0;
4438 continue;
4439 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004440
Douglas Gregor63814022011-01-21 17:29:42 +00004441 // -- neither type is more specialized than the other.
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004442 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004443
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004444 assert(!(Better1 && Better2) && "Should have broken out in the loop above");
Douglas Gregor05155d82009-08-21 23:19:43 +00004445 if (Better1)
4446 return FT1;
Douglas Gregor0ff7d922009-09-14 18:39:43 +00004447 else if (Better2)
4448 return FT2;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004449
Douglas Gregorcef1a032011-01-16 16:03:23 +00004450 // FIXME: This mimics what GCC implements, but doesn't match up with the
4451 // proposed resolution for core issue 692. This area needs to be sorted out,
4452 // but for now we attempt to maintain compatibility.
4453 bool Variadic1 = isVariadicFunctionTemplate(FT1);
4454 bool Variadic2 = isVariadicFunctionTemplate(FT2);
4455 if (Variadic1 != Variadic2)
4456 return Variadic1? FT2 : FT1;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004457
Douglas Gregorcef1a032011-01-16 16:03:23 +00004458 return 0;
Douglas Gregor05155d82009-08-21 23:19:43 +00004459}
Douglas Gregor9b146582009-07-08 20:55:45 +00004460
Douglas Gregor450f00842009-09-25 18:43:00 +00004461/// \brief Determine if the two templates are equivalent.
4462static bool isSameTemplate(TemplateDecl *T1, TemplateDecl *T2) {
4463 if (T1 == T2)
4464 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004465
Douglas Gregor450f00842009-09-25 18:43:00 +00004466 if (!T1 || !T2)
4467 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004468
Douglas Gregor450f00842009-09-25 18:43:00 +00004469 return T1->getCanonicalDecl() == T2->getCanonicalDecl();
4470}
4471
4472/// \brief Retrieve the most specialized of the given function template
4473/// specializations.
4474///
John McCall58cc69d2010-01-27 01:50:18 +00004475/// \param SpecBegin the start iterator of the function template
4476/// specializations that we will be comparing.
Douglas Gregor450f00842009-09-25 18:43:00 +00004477///
John McCall58cc69d2010-01-27 01:50:18 +00004478/// \param SpecEnd the end iterator of the function template
4479/// specializations, paired with \p SpecBegin.
Douglas Gregor450f00842009-09-25 18:43:00 +00004480///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004481/// \param Loc the location where the ambiguity or no-specializations
Douglas Gregor450f00842009-09-25 18:43:00 +00004482/// diagnostic should occur.
4483///
4484/// \param NoneDiag partial diagnostic used to diagnose cases where there are
4485/// no matching candidates.
4486///
4487/// \param AmbigDiag partial diagnostic used to diagnose an ambiguity, if one
4488/// occurs.
4489///
4490/// \param CandidateDiag partial diagnostic used for each function template
4491/// specialization that is a candidate in the ambiguous ordering. One parameter
4492/// in this diagnostic should be unbound, which will correspond to the string
4493/// describing the template arguments for the function template specialization.
4494///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004495/// \returns the most specialized function template specialization, if
John McCall58cc69d2010-01-27 01:50:18 +00004496/// found. Otherwise, returns SpecEnd.
Larisse Voufo98b20f12013-07-19 23:00:19 +00004497UnresolvedSetIterator Sema::getMostSpecialized(
4498 UnresolvedSetIterator SpecBegin, UnresolvedSetIterator SpecEnd,
4499 TemplateSpecCandidateSet &FailedCandidates,
Larisse Voufo98b20f12013-07-19 23:00:19 +00004500 SourceLocation Loc, const PartialDiagnostic &NoneDiag,
4501 const PartialDiagnostic &AmbigDiag, const PartialDiagnostic &CandidateDiag,
4502 bool Complain, QualType TargetType) {
John McCall58cc69d2010-01-27 01:50:18 +00004503 if (SpecBegin == SpecEnd) {
Larisse Voufo98b20f12013-07-19 23:00:19 +00004504 if (Complain) {
Douglas Gregorb491ed32011-02-19 21:32:49 +00004505 Diag(Loc, NoneDiag);
Larisse Voufo98b20f12013-07-19 23:00:19 +00004506 FailedCandidates.NoteCandidates(*this, Loc);
4507 }
John McCall58cc69d2010-01-27 01:50:18 +00004508 return SpecEnd;
Douglas Gregor450f00842009-09-25 18:43:00 +00004509 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004510
4511 if (SpecBegin + 1 == SpecEnd)
John McCall58cc69d2010-01-27 01:50:18 +00004512 return SpecBegin;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004513
Douglas Gregor450f00842009-09-25 18:43:00 +00004514 // Find the function template that is better than all of the templates it
4515 // has been compared to.
John McCall58cc69d2010-01-27 01:50:18 +00004516 UnresolvedSetIterator Best = SpecBegin;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004517 FunctionTemplateDecl *BestTemplate
John McCall58cc69d2010-01-27 01:50:18 +00004518 = cast<FunctionDecl>(*Best)->getPrimaryTemplate();
Douglas Gregor450f00842009-09-25 18:43:00 +00004519 assert(BestTemplate && "Not a function template specialization?");
John McCall58cc69d2010-01-27 01:50:18 +00004520 for (UnresolvedSetIterator I = SpecBegin + 1; I != SpecEnd; ++I) {
4521 FunctionTemplateDecl *Challenger
4522 = cast<FunctionDecl>(*I)->getPrimaryTemplate();
Douglas Gregor450f00842009-09-25 18:43:00 +00004523 assert(Challenger && "Not a function template specialization?");
John McCall58cc69d2010-01-27 01:50:18 +00004524 if (isSameTemplate(getMoreSpecializedTemplate(BestTemplate, Challenger,
Richard Smithe5b52202013-09-11 00:52:39 +00004525 Loc, TPOC_Other, 0, 0),
Douglas Gregor450f00842009-09-25 18:43:00 +00004526 Challenger)) {
4527 Best = I;
4528 BestTemplate = Challenger;
4529 }
4530 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004531
Douglas Gregor450f00842009-09-25 18:43:00 +00004532 // Make sure that the "best" function template is more specialized than all
4533 // of the others.
4534 bool Ambiguous = false;
John McCall58cc69d2010-01-27 01:50:18 +00004535 for (UnresolvedSetIterator I = SpecBegin; I != SpecEnd; ++I) {
4536 FunctionTemplateDecl *Challenger
4537 = cast<FunctionDecl>(*I)->getPrimaryTemplate();
Douglas Gregor450f00842009-09-25 18:43:00 +00004538 if (I != Best &&
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004539 !isSameTemplate(getMoreSpecializedTemplate(BestTemplate, Challenger,
Richard Smithe5b52202013-09-11 00:52:39 +00004540 Loc, TPOC_Other, 0, 0),
Douglas Gregor450f00842009-09-25 18:43:00 +00004541 BestTemplate)) {
4542 Ambiguous = true;
4543 break;
4544 }
4545 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004546
Douglas Gregor450f00842009-09-25 18:43:00 +00004547 if (!Ambiguous) {
4548 // We found an answer. Return it.
John McCall58cc69d2010-01-27 01:50:18 +00004549 return Best;
Douglas Gregor450f00842009-09-25 18:43:00 +00004550 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004551
Douglas Gregor450f00842009-09-25 18:43:00 +00004552 // Diagnose the ambiguity.
Richard Smithb875c432013-05-04 01:51:08 +00004553 if (Complain) {
Douglas Gregorb491ed32011-02-19 21:32:49 +00004554 Diag(Loc, AmbigDiag);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004555
Richard Smithb875c432013-05-04 01:51:08 +00004556 // FIXME: Can we order the candidates in some sane way?
Richard Trieucaff2472011-11-23 22:32:32 +00004557 for (UnresolvedSetIterator I = SpecBegin; I != SpecEnd; ++I) {
4558 PartialDiagnostic PD = CandidateDiag;
4559 PD << getTemplateArgumentBindingsText(
Douglas Gregorb491ed32011-02-19 21:32:49 +00004560 cast<FunctionDecl>(*I)->getPrimaryTemplate()->getTemplateParameters(),
John McCall58cc69d2010-01-27 01:50:18 +00004561 *cast<FunctionDecl>(*I)->getTemplateSpecializationArgs());
Richard Trieucaff2472011-11-23 22:32:32 +00004562 if (!TargetType.isNull())
4563 HandleFunctionTypeMismatch(PD, cast<FunctionDecl>(*I)->getType(),
4564 TargetType);
4565 Diag((*I)->getLocation(), PD);
4566 }
Richard Smithb875c432013-05-04 01:51:08 +00004567 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004568
John McCall58cc69d2010-01-27 01:50:18 +00004569 return SpecEnd;
Douglas Gregor450f00842009-09-25 18:43:00 +00004570}
4571
Douglas Gregorbe999392009-09-15 16:23:51 +00004572/// \brief Returns the more specialized class template partial specialization
4573/// according to the rules of partial ordering of class template partial
4574/// specializations (C++ [temp.class.order]).
4575///
4576/// \param PS1 the first class template partial specialization
4577///
4578/// \param PS2 the second class template partial specialization
4579///
4580/// \returns the more specialized class template partial specialization. If
4581/// neither partial specialization is more specialized, returns NULL.
4582ClassTemplatePartialSpecializationDecl *
4583Sema::getMoreSpecializedPartialSpecialization(
4584 ClassTemplatePartialSpecializationDecl *PS1,
John McCallbc077cf2010-02-08 23:07:23 +00004585 ClassTemplatePartialSpecializationDecl *PS2,
4586 SourceLocation Loc) {
Douglas Gregorbe999392009-09-15 16:23:51 +00004587 // C++ [temp.class.order]p1:
4588 // For two class template partial specializations, the first is at least as
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004589 // specialized as the second if, given the following rewrite to two
4590 // function templates, the first function template is at least as
4591 // specialized as the second according to the ordering rules for function
Douglas Gregorbe999392009-09-15 16:23:51 +00004592 // templates (14.6.6.2):
4593 // - the first function template has the same template parameters as the
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004594 // first partial specialization and has a single function parameter
4595 // whose type is a class template specialization with the template
Douglas Gregorbe999392009-09-15 16:23:51 +00004596 // arguments of the first partial specialization, and
4597 // - the second function template has the same template parameters as the
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004598 // second partial specialization and has a single function parameter
4599 // whose type is a class template specialization with the template
Douglas Gregorbe999392009-09-15 16:23:51 +00004600 // arguments of the second partial specialization.
4601 //
Douglas Gregor684268d2010-04-29 06:21:43 +00004602 // Rather than synthesize function templates, we merely perform the
4603 // equivalent partial ordering by performing deduction directly on
4604 // the template arguments of the class template partial
4605 // specializations. This computation is slightly simpler than the
4606 // general problem of function template partial ordering, because
4607 // class template partial specializations are more constrained. We
4608 // know that every template parameter is deducible from the class
4609 // template partial specialization's template arguments, for
4610 // example.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004611 SmallVector<DeducedTemplateArgument, 4> Deduced;
Craig Toppere6706e42012-09-19 02:26:47 +00004612 TemplateDeductionInfo Info(Loc);
John McCall2408e322010-04-27 00:57:59 +00004613
4614 QualType PT1 = PS1->getInjectedSpecializationType();
4615 QualType PT2 = PS2->getInjectedSpecializationType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004616
Douglas Gregorbe999392009-09-15 16:23:51 +00004617 // Determine whether PS1 is at least as specialized as PS2
4618 Deduced.resize(PS2->getTemplateParameters()->size());
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00004619 bool Better1 = !DeduceTemplateArgumentsByTypeMatch(*this,
4620 PS2->getTemplateParameters(),
Douglas Gregorb837ea42011-01-11 17:34:58 +00004621 PT2, PT1, Info, Deduced, TDF_None,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004622 /*PartialOrdering=*/true,
Douglas Gregor63814022011-01-21 17:29:42 +00004623 /*RefParamComparisons=*/0);
Argyrios Kyrtzidis7d391552010-11-05 23:25:18 +00004624 if (Better1) {
Richard Smith80934652012-07-16 01:09:10 +00004625 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(),Deduced.end());
Nick Lewycky56412332014-01-11 02:37:12 +00004626 InstantiatingTemplate Inst(*this, Loc, PS2, DeducedArgs, Info);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004627 Better1 = !::FinishTemplateArgumentDeduction(
4628 *this, PS2, PS1->getTemplateArgs(), Deduced, Info);
4629 }
4630
4631 // Determine whether PS2 is at least as specialized as PS1
4632 Deduced.clear();
4633 Deduced.resize(PS1->getTemplateParameters()->size());
4634 bool Better2 = !DeduceTemplateArgumentsByTypeMatch(
4635 *this, PS1->getTemplateParameters(), PT1, PT2, Info, Deduced, TDF_None,
4636 /*PartialOrdering=*/true,
4637 /*RefParamComparisons=*/0);
4638 if (Better2) {
4639 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(),
4640 Deduced.end());
Nick Lewycky56412332014-01-11 02:37:12 +00004641 InstantiatingTemplate Inst(*this, Loc, PS1, DeducedArgs, Info);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004642 Better2 = !::FinishTemplateArgumentDeduction(
4643 *this, PS1, PS2->getTemplateArgs(), Deduced, Info);
4644 }
4645
4646 if (Better1 == Better2)
4647 return 0;
4648
4649 return Better1 ? PS1 : PS2;
4650}
4651
Larisse Voufo30616382013-08-23 22:21:36 +00004652/// TODO: Unify with ClassTemplatePartialSpecializationDecl version?
4653/// May require unifying ClassTemplate(Partial)SpecializationDecl and
4654/// VarTemplate(Partial)SpecializationDecl with a new data
4655/// structure Template(Partial)SpecializationDecl, and
4656/// using Template(Partial)SpecializationDecl as input type.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004657VarTemplatePartialSpecializationDecl *
4658Sema::getMoreSpecializedPartialSpecialization(
4659 VarTemplatePartialSpecializationDecl *PS1,
4660 VarTemplatePartialSpecializationDecl *PS2, SourceLocation Loc) {
4661 SmallVector<DeducedTemplateArgument, 4> Deduced;
4662 TemplateDeductionInfo Info(Loc);
4663
Richard Smithf04fd0b2013-12-12 23:14:16 +00004664 assert(PS1->getSpecializedTemplate() == PS2->getSpecializedTemplate() &&
Larisse Voufo39a1e502013-08-06 01:03:05 +00004665 "the partial specializations being compared should specialize"
4666 " the same template.");
4667 TemplateName Name(PS1->getSpecializedTemplate());
4668 TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
4669 QualType PT1 = Context.getTemplateSpecializationType(
4670 CanonTemplate, PS1->getTemplateArgs().data(),
4671 PS1->getTemplateArgs().size());
4672 QualType PT2 = Context.getTemplateSpecializationType(
4673 CanonTemplate, PS2->getTemplateArgs().data(),
4674 PS2->getTemplateArgs().size());
4675
4676 // Determine whether PS1 is at least as specialized as PS2
4677 Deduced.resize(PS2->getTemplateParameters()->size());
4678 bool Better1 = !DeduceTemplateArgumentsByTypeMatch(
4679 *this, PS2->getTemplateParameters(), PT2, PT1, Info, Deduced, TDF_None,
4680 /*PartialOrdering=*/true,
4681 /*RefParamComparisons=*/0);
4682 if (Better1) {
4683 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(),
4684 Deduced.end());
Nick Lewycky56412332014-01-11 02:37:12 +00004685 InstantiatingTemplate Inst(*this, Loc, PS2, DeducedArgs, Info);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004686 Better1 = !::FinishTemplateArgumentDeduction(*this, PS2,
4687 PS1->getTemplateArgs(),
Douglas Gregor9225b022010-04-29 06:31:36 +00004688 Deduced, Info);
Argyrios Kyrtzidis7d391552010-11-05 23:25:18 +00004689 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004690
Douglas Gregorbe999392009-09-15 16:23:51 +00004691 // Determine whether PS2 is at least as specialized as PS1
Douglas Gregoradee3e32009-11-11 23:06:43 +00004692 Deduced.clear();
Douglas Gregorbe999392009-09-15 16:23:51 +00004693 Deduced.resize(PS1->getTemplateParameters()->size());
Sebastian Redlfb0b1f12012-01-17 22:49:52 +00004694 bool Better2 = !DeduceTemplateArgumentsByTypeMatch(*this,
4695 PS1->getTemplateParameters(),
Douglas Gregorb837ea42011-01-11 17:34:58 +00004696 PT1, PT2, Info, Deduced, TDF_None,
4697 /*PartialOrdering=*/true,
Douglas Gregor63814022011-01-21 17:29:42 +00004698 /*RefParamComparisons=*/0);
Argyrios Kyrtzidis7d391552010-11-05 23:25:18 +00004699 if (Better2) {
Richard Smith80934652012-07-16 01:09:10 +00004700 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(),Deduced.end());
Nick Lewycky56412332014-01-11 02:37:12 +00004701 InstantiatingTemplate Inst(*this, Loc, PS1, DeducedArgs, Info);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004702 Better2 = !::FinishTemplateArgumentDeduction(*this, PS1,
4703 PS2->getTemplateArgs(),
Douglas Gregor9225b022010-04-29 06:31:36 +00004704 Deduced, Info);
Argyrios Kyrtzidis7d391552010-11-05 23:25:18 +00004705 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004706
Douglas Gregorbe999392009-09-15 16:23:51 +00004707 if (Better1 == Better2)
4708 return 0;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004709
Douglas Gregorbe999392009-09-15 16:23:51 +00004710 return Better1? PS1 : PS2;
4711}
4712
Mike Stump11289f42009-09-09 15:08:12 +00004713static void
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004714MarkUsedTemplateParameters(ASTContext &Ctx,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004715 const TemplateArgument &TemplateArg,
4716 bool OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004717 unsigned Depth,
Benjamin Kramere0513cb2012-01-30 16:17:39 +00004718 llvm::SmallBitVector &Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00004719
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004720/// \brief Mark the template parameters that are used by the given
Douglas Gregor91772d12009-06-13 00:26:55 +00004721/// expression.
Mike Stump11289f42009-09-09 15:08:12 +00004722static void
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004723MarkUsedTemplateParameters(ASTContext &Ctx,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004724 const Expr *E,
4725 bool OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004726 unsigned Depth,
Benjamin Kramere0513cb2012-01-30 16:17:39 +00004727 llvm::SmallBitVector &Used) {
Douglas Gregore8e9dd62011-01-03 17:17:50 +00004728 // We can deduce from a pack expansion.
4729 if (const PackExpansionExpr *Expansion = dyn_cast<PackExpansionExpr>(E))
4730 E = Expansion->getPattern();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004731
Richard Smith34349002012-07-09 03:07:20 +00004732 // Skip through any implicit casts we added while type-checking, and any
4733 // substitutions performed by template alias expansion.
4734 while (1) {
4735 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
4736 E = ICE->getSubExpr();
4737 else if (const SubstNonTypeTemplateParmExpr *Subst =
4738 dyn_cast<SubstNonTypeTemplateParmExpr>(E))
4739 E = Subst->getReplacement();
4740 else
4741 break;
4742 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004743
4744 // FIXME: if !OnlyDeduced, we have to walk the whole subexpression to
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004745 // find other occurrences of template parameters.
Douglas Gregor1e09bf83c2009-06-18 18:45:36 +00004746 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
Douglas Gregor04b11522010-01-14 18:13:22 +00004747 if (!DRE)
Douglas Gregor91772d12009-06-13 00:26:55 +00004748 return;
4749
Mike Stump11289f42009-09-09 15:08:12 +00004750 const NonTypeTemplateParmDecl *NTTP
Douglas Gregor91772d12009-06-13 00:26:55 +00004751 = dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
4752 if (!NTTP)
4753 return;
4754
Douglas Gregor21610382009-10-29 00:04:11 +00004755 if (NTTP->getDepth() == Depth)
4756 Used[NTTP->getIndex()] = true;
Douglas Gregor91772d12009-06-13 00:26:55 +00004757}
4758
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004759/// \brief Mark the template parameters that are used by the given
4760/// nested name specifier.
4761static void
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004762MarkUsedTemplateParameters(ASTContext &Ctx,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004763 NestedNameSpecifier *NNS,
4764 bool OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004765 unsigned Depth,
Benjamin Kramere0513cb2012-01-30 16:17:39 +00004766 llvm::SmallBitVector &Used) {
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004767 if (!NNS)
4768 return;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004769
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004770 MarkUsedTemplateParameters(Ctx, NNS->getPrefix(), OnlyDeduced, Depth,
Douglas Gregor21610382009-10-29 00:04:11 +00004771 Used);
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004772 MarkUsedTemplateParameters(Ctx, QualType(NNS->getAsType(), 0),
Douglas Gregor21610382009-10-29 00:04:11 +00004773 OnlyDeduced, Depth, Used);
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004774}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004775
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004776/// \brief Mark the template parameters that are used by the given
4777/// template name.
4778static void
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004779MarkUsedTemplateParameters(ASTContext &Ctx,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004780 TemplateName Name,
4781 bool OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004782 unsigned Depth,
Benjamin Kramere0513cb2012-01-30 16:17:39 +00004783 llvm::SmallBitVector &Used) {
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004784 if (TemplateDecl *Template = Name.getAsTemplateDecl()) {
4785 if (TemplateTemplateParmDecl *TTP
Douglas Gregor21610382009-10-29 00:04:11 +00004786 = dyn_cast<TemplateTemplateParmDecl>(Template)) {
4787 if (TTP->getDepth() == Depth)
4788 Used[TTP->getIndex()] = true;
4789 }
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004790 return;
4791 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004792
Douglas Gregor9167f8b2009-11-11 01:00:40 +00004793 if (QualifiedTemplateName *QTN = Name.getAsQualifiedTemplateName())
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004794 MarkUsedTemplateParameters(Ctx, QTN->getQualifier(), OnlyDeduced,
Douglas Gregor9167f8b2009-11-11 01:00:40 +00004795 Depth, Used);
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004796 if (DependentTemplateName *DTN = Name.getAsDependentTemplateName())
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004797 MarkUsedTemplateParameters(Ctx, DTN->getQualifier(), OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004798 Depth, Used);
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004799}
4800
4801/// \brief Mark the template parameters that are used by the given
Douglas Gregor91772d12009-06-13 00:26:55 +00004802/// type.
Mike Stump11289f42009-09-09 15:08:12 +00004803static void
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004804MarkUsedTemplateParameters(ASTContext &Ctx, QualType T,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004805 bool OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004806 unsigned Depth,
Benjamin Kramere0513cb2012-01-30 16:17:39 +00004807 llvm::SmallBitVector &Used) {
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004808 if (T.isNull())
4809 return;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004810
Douglas Gregor91772d12009-06-13 00:26:55 +00004811 // Non-dependent types have nothing deducible
4812 if (!T->isDependentType())
4813 return;
4814
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004815 T = Ctx.getCanonicalType(T);
Douglas Gregor91772d12009-06-13 00:26:55 +00004816 switch (T->getTypeClass()) {
Douglas Gregor91772d12009-06-13 00:26:55 +00004817 case Type::Pointer:
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004818 MarkUsedTemplateParameters(Ctx,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004819 cast<PointerType>(T)->getPointeeType(),
4820 OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004821 Depth,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004822 Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00004823 break;
4824
4825 case Type::BlockPointer:
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004826 MarkUsedTemplateParameters(Ctx,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004827 cast<BlockPointerType>(T)->getPointeeType(),
4828 OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004829 Depth,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004830 Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00004831 break;
4832
4833 case Type::LValueReference:
4834 case Type::RValueReference:
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004835 MarkUsedTemplateParameters(Ctx,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004836 cast<ReferenceType>(T)->getPointeeType(),
4837 OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004838 Depth,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004839 Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00004840 break;
4841
4842 case Type::MemberPointer: {
4843 const MemberPointerType *MemPtr = cast<MemberPointerType>(T.getTypePtr());
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004844 MarkUsedTemplateParameters(Ctx, MemPtr->getPointeeType(), OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004845 Depth, Used);
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004846 MarkUsedTemplateParameters(Ctx, QualType(MemPtr->getClass(), 0),
Douglas Gregor21610382009-10-29 00:04:11 +00004847 OnlyDeduced, Depth, Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00004848 break;
4849 }
4850
4851 case Type::DependentSizedArray:
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004852 MarkUsedTemplateParameters(Ctx,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004853 cast<DependentSizedArrayType>(T)->getSizeExpr(),
Douglas Gregor21610382009-10-29 00:04:11 +00004854 OnlyDeduced, Depth, Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00004855 // Fall through to check the element type
4856
4857 case Type::ConstantArray:
4858 case Type::IncompleteArray:
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004859 MarkUsedTemplateParameters(Ctx,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004860 cast<ArrayType>(T)->getElementType(),
Douglas Gregor21610382009-10-29 00:04:11 +00004861 OnlyDeduced, Depth, Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00004862 break;
4863
4864 case Type::Vector:
4865 case Type::ExtVector:
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004866 MarkUsedTemplateParameters(Ctx,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004867 cast<VectorType>(T)->getElementType(),
Douglas Gregor21610382009-10-29 00:04:11 +00004868 OnlyDeduced, Depth, Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00004869 break;
4870
Douglas Gregor758a8692009-06-17 21:51:59 +00004871 case Type::DependentSizedExtVector: {
4872 const DependentSizedExtVectorType *VecType
Douglas Gregor1e09bf83c2009-06-18 18:45:36 +00004873 = cast<DependentSizedExtVectorType>(T);
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004874 MarkUsedTemplateParameters(Ctx, VecType->getElementType(), OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004875 Depth, Used);
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004876 MarkUsedTemplateParameters(Ctx, VecType->getSizeExpr(), OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004877 Depth, Used);
Douglas Gregor758a8692009-06-17 21:51:59 +00004878 break;
4879 }
4880
Douglas Gregor91772d12009-06-13 00:26:55 +00004881 case Type::FunctionProto: {
Douglas Gregor1e09bf83c2009-06-18 18:45:36 +00004882 const FunctionProtoType *Proto = cast<FunctionProtoType>(T);
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004883 MarkUsedTemplateParameters(Ctx, Proto->getResultType(), OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004884 Depth, Used);
Alp Toker9cacbab2014-01-20 20:26:09 +00004885 for (unsigned I = 0, N = Proto->getNumParams(); I != N; ++I)
4886 MarkUsedTemplateParameters(Ctx, Proto->getParamType(I), OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004887 Depth, Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00004888 break;
4889 }
4890
Douglas Gregor21610382009-10-29 00:04:11 +00004891 case Type::TemplateTypeParm: {
4892 const TemplateTypeParmType *TTP = cast<TemplateTypeParmType>(T);
4893 if (TTP->getDepth() == Depth)
4894 Used[TTP->getIndex()] = true;
Douglas Gregor91772d12009-06-13 00:26:55 +00004895 break;
Douglas Gregor21610382009-10-29 00:04:11 +00004896 }
Douglas Gregor91772d12009-06-13 00:26:55 +00004897
Douglas Gregorfb322d82011-01-14 05:11:40 +00004898 case Type::SubstTemplateTypeParmPack: {
4899 const SubstTemplateTypeParmPackType *Subst
4900 = cast<SubstTemplateTypeParmPackType>(T);
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004901 MarkUsedTemplateParameters(Ctx,
Douglas Gregorfb322d82011-01-14 05:11:40 +00004902 QualType(Subst->getReplacedParameter(), 0),
4903 OnlyDeduced, Depth, Used);
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004904 MarkUsedTemplateParameters(Ctx, Subst->getArgumentPack(),
Douglas Gregorfb322d82011-01-14 05:11:40 +00004905 OnlyDeduced, Depth, Used);
4906 break;
4907 }
4908
John McCall2408e322010-04-27 00:57:59 +00004909 case Type::InjectedClassName:
4910 T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
4911 // fall through
4912
Douglas Gregor91772d12009-06-13 00:26:55 +00004913 case Type::TemplateSpecialization: {
Mike Stump11289f42009-09-09 15:08:12 +00004914 const TemplateSpecializationType *Spec
Douglas Gregor1e09bf83c2009-06-18 18:45:36 +00004915 = cast<TemplateSpecializationType>(T);
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004916 MarkUsedTemplateParameters(Ctx, Spec->getTemplateName(), OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00004917 Depth, Used);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004918
Douglas Gregord0ad2942010-12-23 01:24:45 +00004919 // C++0x [temp.deduct.type]p9:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004920 // If the template argument list of P contains a pack expansion that is not
4921 // the last template argument, the entire template argument list is a
Douglas Gregord0ad2942010-12-23 01:24:45 +00004922 // non-deduced context.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004923 if (OnlyDeduced &&
Douglas Gregord0ad2942010-12-23 01:24:45 +00004924 hasPackExpansionBeforeEnd(Spec->getArgs(), Spec->getNumArgs()))
4925 break;
4926
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004927 for (unsigned I = 0, N = Spec->getNumArgs(); I != N; ++I)
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004928 MarkUsedTemplateParameters(Ctx, Spec->getArg(I), OnlyDeduced, Depth,
Douglas Gregor21610382009-10-29 00:04:11 +00004929 Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00004930 break;
4931 }
4932
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004933 case Type::Complex:
4934 if (!OnlyDeduced)
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004935 MarkUsedTemplateParameters(Ctx,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004936 cast<ComplexType>(T)->getElementType(),
Douglas Gregor21610382009-10-29 00:04:11 +00004937 OnlyDeduced, Depth, Used);
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004938 break;
4939
Eli Friedman0dfb8892011-10-06 23:00:33 +00004940 case Type::Atomic:
4941 if (!OnlyDeduced)
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004942 MarkUsedTemplateParameters(Ctx,
Eli Friedman0dfb8892011-10-06 23:00:33 +00004943 cast<AtomicType>(T)->getValueType(),
4944 OnlyDeduced, Depth, Used);
4945 break;
4946
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +00004947 case Type::DependentName:
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004948 if (!OnlyDeduced)
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004949 MarkUsedTemplateParameters(Ctx,
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +00004950 cast<DependentNameType>(T)->getQualifier(),
Douglas Gregor21610382009-10-29 00:04:11 +00004951 OnlyDeduced, Depth, Used);
Douglas Gregore1d2ef32009-09-14 21:25:05 +00004952 break;
4953
John McCallc392f372010-06-11 00:33:02 +00004954 case Type::DependentTemplateSpecialization: {
4955 const DependentTemplateSpecializationType *Spec
4956 = cast<DependentTemplateSpecializationType>(T);
4957 if (!OnlyDeduced)
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004958 MarkUsedTemplateParameters(Ctx, Spec->getQualifier(),
John McCallc392f372010-06-11 00:33:02 +00004959 OnlyDeduced, Depth, Used);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004960
Douglas Gregord0ad2942010-12-23 01:24:45 +00004961 // C++0x [temp.deduct.type]p9:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004962 // If the template argument list of P contains a pack expansion that is not
4963 // the last template argument, the entire template argument list is a
Douglas Gregord0ad2942010-12-23 01:24:45 +00004964 // non-deduced context.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004965 if (OnlyDeduced &&
Douglas Gregord0ad2942010-12-23 01:24:45 +00004966 hasPackExpansionBeforeEnd(Spec->getArgs(), Spec->getNumArgs()))
4967 break;
4968
John McCallc392f372010-06-11 00:33:02 +00004969 for (unsigned I = 0, N = Spec->getNumArgs(); I != N; ++I)
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004970 MarkUsedTemplateParameters(Ctx, Spec->getArg(I), OnlyDeduced, Depth,
John McCallc392f372010-06-11 00:33:02 +00004971 Used);
4972 break;
4973 }
4974
John McCallbd8d9bd2010-03-01 23:49:17 +00004975 case Type::TypeOf:
4976 if (!OnlyDeduced)
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004977 MarkUsedTemplateParameters(Ctx,
John McCallbd8d9bd2010-03-01 23:49:17 +00004978 cast<TypeOfType>(T)->getUnderlyingType(),
4979 OnlyDeduced, Depth, Used);
4980 break;
4981
4982 case Type::TypeOfExpr:
4983 if (!OnlyDeduced)
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004984 MarkUsedTemplateParameters(Ctx,
John McCallbd8d9bd2010-03-01 23:49:17 +00004985 cast<TypeOfExprType>(T)->getUnderlyingExpr(),
4986 OnlyDeduced, Depth, Used);
4987 break;
4988
4989 case Type::Decltype:
4990 if (!OnlyDeduced)
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004991 MarkUsedTemplateParameters(Ctx,
John McCallbd8d9bd2010-03-01 23:49:17 +00004992 cast<DecltypeType>(T)->getUnderlyingExpr(),
4993 OnlyDeduced, Depth, Used);
4994 break;
4995
Alexis Hunte852b102011-05-24 22:41:36 +00004996 case Type::UnaryTransform:
4997 if (!OnlyDeduced)
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00004998 MarkUsedTemplateParameters(Ctx,
Alexis Hunte852b102011-05-24 22:41:36 +00004999 cast<UnaryTransformType>(T)->getUnderlyingType(),
5000 OnlyDeduced, Depth, Used);
5001 break;
5002
Douglas Gregord2fa7662010-12-20 02:24:11 +00005003 case Type::PackExpansion:
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00005004 MarkUsedTemplateParameters(Ctx,
Douglas Gregord2fa7662010-12-20 02:24:11 +00005005 cast<PackExpansionType>(T)->getPattern(),
5006 OnlyDeduced, Depth, Used);
5007 break;
5008
Richard Smith30482bc2011-02-20 03:19:35 +00005009 case Type::Auto:
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00005010 MarkUsedTemplateParameters(Ctx,
Richard Smith30482bc2011-02-20 03:19:35 +00005011 cast<AutoType>(T)->getDeducedType(),
5012 OnlyDeduced, Depth, Used);
5013
Douglas Gregore1d2ef32009-09-14 21:25:05 +00005014 // None of these types have any template parameters in them.
Douglas Gregor91772d12009-06-13 00:26:55 +00005015 case Type::Builtin:
Douglas Gregor91772d12009-06-13 00:26:55 +00005016 case Type::VariableArray:
5017 case Type::FunctionNoProto:
5018 case Type::Record:
5019 case Type::Enum:
Douglas Gregor91772d12009-06-13 00:26:55 +00005020 case Type::ObjCInterface:
John McCall8b07ec22010-05-15 11:32:37 +00005021 case Type::ObjCObject:
Steve Narofffb4330f2009-06-17 22:40:22 +00005022 case Type::ObjCObjectPointer:
John McCallb96ec562009-12-04 22:46:56 +00005023 case Type::UnresolvedUsing:
Douglas Gregor91772d12009-06-13 00:26:55 +00005024#define TYPE(Class, Base)
5025#define ABSTRACT_TYPE(Class, Base)
5026#define DEPENDENT_TYPE(Class, Base)
5027#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
5028#include "clang/AST/TypeNodes.def"
5029 break;
5030 }
5031}
5032
Douglas Gregore1d2ef32009-09-14 21:25:05 +00005033/// \brief Mark the template parameters that are used by this
Douglas Gregor91772d12009-06-13 00:26:55 +00005034/// template argument.
Mike Stump11289f42009-09-09 15:08:12 +00005035static void
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00005036MarkUsedTemplateParameters(ASTContext &Ctx,
Douglas Gregore1d2ef32009-09-14 21:25:05 +00005037 const TemplateArgument &TemplateArg,
5038 bool OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00005039 unsigned Depth,
Benjamin Kramere0513cb2012-01-30 16:17:39 +00005040 llvm::SmallBitVector &Used) {
Douglas Gregor91772d12009-06-13 00:26:55 +00005041 switch (TemplateArg.getKind()) {
5042 case TemplateArgument::Null:
5043 case TemplateArgument::Integral:
Douglas Gregor31f55dc2012-04-06 22:40:38 +00005044 case TemplateArgument::Declaration:
Douglas Gregor91772d12009-06-13 00:26:55 +00005045 break;
Mike Stump11289f42009-09-09 15:08:12 +00005046
Eli Friedmanb826a002012-09-26 02:36:12 +00005047 case TemplateArgument::NullPtr:
5048 MarkUsedTemplateParameters(Ctx, TemplateArg.getNullPtrType(), OnlyDeduced,
5049 Depth, Used);
5050 break;
5051
Douglas Gregor91772d12009-06-13 00:26:55 +00005052 case TemplateArgument::Type:
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00005053 MarkUsedTemplateParameters(Ctx, TemplateArg.getAsType(), OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00005054 Depth, Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00005055 break;
5056
Douglas Gregor9167f8b2009-11-11 01:00:40 +00005057 case TemplateArgument::Template:
Douglas Gregore4ff4b52011-01-05 18:58:31 +00005058 case TemplateArgument::TemplateExpansion:
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00005059 MarkUsedTemplateParameters(Ctx,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005060 TemplateArg.getAsTemplateOrTemplatePattern(),
Douglas Gregor9167f8b2009-11-11 01:00:40 +00005061 OnlyDeduced, Depth, Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00005062 break;
5063
5064 case TemplateArgument::Expression:
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00005065 MarkUsedTemplateParameters(Ctx, TemplateArg.getAsExpr(), OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00005066 Depth, Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00005067 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005068
Anders Carlssonbc343912009-06-15 17:04:53 +00005069 case TemplateArgument::Pack:
Douglas Gregore1d2ef32009-09-14 21:25:05 +00005070 for (TemplateArgument::pack_iterator P = TemplateArg.pack_begin(),
5071 PEnd = TemplateArg.pack_end();
5072 P != PEnd; ++P)
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00005073 MarkUsedTemplateParameters(Ctx, *P, OnlyDeduced, Depth, Used);
Anders Carlssonbc343912009-06-15 17:04:53 +00005074 break;
Douglas Gregor91772d12009-06-13 00:26:55 +00005075 }
5076}
5077
James Dennett41725122012-06-22 10:16:05 +00005078/// \brief Mark which template parameters can be deduced from a given
Douglas Gregor91772d12009-06-13 00:26:55 +00005079/// template argument list.
5080///
5081/// \param TemplateArgs the template argument list from which template
5082/// parameters will be deduced.
5083///
James Dennett41725122012-06-22 10:16:05 +00005084/// \param Used a bit vector whose elements will be set to \c true
Douglas Gregor91772d12009-06-13 00:26:55 +00005085/// to indicate when the corresponding template parameter will be
5086/// deduced.
Mike Stump11289f42009-09-09 15:08:12 +00005087void
Douglas Gregore1d2ef32009-09-14 21:25:05 +00005088Sema::MarkUsedTemplateParameters(const TemplateArgumentList &TemplateArgs,
Douglas Gregor21610382009-10-29 00:04:11 +00005089 bool OnlyDeduced, unsigned Depth,
Benjamin Kramere0513cb2012-01-30 16:17:39 +00005090 llvm::SmallBitVector &Used) {
Douglas Gregord0ad2942010-12-23 01:24:45 +00005091 // C++0x [temp.deduct.type]p9:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005092 // If the template argument list of P contains a pack expansion that is not
5093 // the last template argument, the entire template argument list is a
Douglas Gregord0ad2942010-12-23 01:24:45 +00005094 // non-deduced context.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005095 if (OnlyDeduced &&
Douglas Gregord0ad2942010-12-23 01:24:45 +00005096 hasPackExpansionBeforeEnd(TemplateArgs.data(), TemplateArgs.size()))
5097 return;
5098
Douglas Gregor91772d12009-06-13 00:26:55 +00005099 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00005100 ::MarkUsedTemplateParameters(Context, TemplateArgs[I], OnlyDeduced,
Douglas Gregor21610382009-10-29 00:04:11 +00005101 Depth, Used);
Douglas Gregor91772d12009-06-13 00:26:55 +00005102}
Douglas Gregorce23bae2009-09-18 23:21:38 +00005103
5104/// \brief Marks all of the template parameters that will be deduced by a
5105/// call to the given function template.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005106void
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00005107Sema::MarkDeducedTemplateParameters(ASTContext &Ctx,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00005108 const FunctionTemplateDecl *FunctionTemplate,
Benjamin Kramere0513cb2012-01-30 16:17:39 +00005109 llvm::SmallBitVector &Deduced) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005110 TemplateParameterList *TemplateParams
Douglas Gregorce23bae2009-09-18 23:21:38 +00005111 = FunctionTemplate->getTemplateParameters();
5112 Deduced.clear();
5113 Deduced.resize(TemplateParams->size());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005114
Douglas Gregorce23bae2009-09-18 23:21:38 +00005115 FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
5116 for (unsigned I = 0, N = Function->getNumParams(); I != N; ++I)
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00005117 ::MarkUsedTemplateParameters(Ctx, Function->getParamDecl(I)->getType(),
Douglas Gregor21610382009-10-29 00:04:11 +00005118 true, TemplateParams->getDepth(), Deduced);
Douglas Gregorce23bae2009-09-18 23:21:38 +00005119}
Douglas Gregore65aacb2011-06-16 16:50:48 +00005120
5121bool hasDeducibleTemplateParameters(Sema &S,
5122 FunctionTemplateDecl *FunctionTemplate,
5123 QualType T) {
5124 if (!T->isDependentType())
5125 return false;
5126
5127 TemplateParameterList *TemplateParams
5128 = FunctionTemplate->getTemplateParameters();
Benjamin Kramere0513cb2012-01-30 16:17:39 +00005129 llvm::SmallBitVector Deduced(TemplateParams->size());
Argyrios Kyrtzidisf34950d2012-01-17 02:15:41 +00005130 ::MarkUsedTemplateParameters(S.Context, T, true, TemplateParams->getDepth(),
Douglas Gregore65aacb2011-06-16 16:50:48 +00005131 Deduced);
5132
Benjamin Kramere0513cb2012-01-30 16:17:39 +00005133 return Deduced.any();
Douglas Gregore65aacb2011-06-16 16:50:48 +00005134}