blob: af8d309267c2b735c83b917383460acca8e82c0a [file] [log] [blame]
Douglas Gregor0b9247f2009-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 McCall2a7fb272010-08-25 05:32:35 +000013#include "clang/Sema/TemplateDeduction.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000014#include "TreeTransform.h"
Douglas Gregor0b9247f2009-06-04 00:03:07 +000015#include "clang/AST/ASTContext.h"
Faisal Valid6992ab2013-09-29 08:45:24 +000016#include "clang/AST/ASTLambda.h"
John McCall7cd088e2010-08-24 07:21:54 +000017#include "clang/AST/DeclObjC.h"
Douglas Gregor0b9247f2009-06-04 00:03:07 +000018#include "clang/AST/DeclTemplate.h"
Douglas Gregor0b9247f2009-06-04 00:03:07 +000019#include "clang/AST/Expr.h"
20#include "clang/AST/ExprCXX.h"
Chandler Carruth55fc8732012-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 Kramer013b3662012-01-30 16:17:39 +000025#include "llvm/ADT/SmallBitVector.h"
Douglas Gregor8a514912009-09-14 18:39:43 +000026#include <algorithm>
Douglas Gregor508f1c82009-06-26 23:10:12 +000027
28namespace clang {
John McCall2a7fb272010-08-25 05:32:35 +000029 using namespace sema;
Douglas Gregor508f1c82009-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 Gregor41128772009-06-26 23:27:24 +000047 /// deduction from a template-id of a derived class of the argument type.
Douglas Gregor12820292009-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 Gregor73b3cf62011-01-25 17:19:08 +000052 TDF_SkipNonDependent = 0x08,
53 /// \brief Whether we are performing template argument deduction for
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000054 /// parameters and arguments in a top-level template argument
Douglas Gregor092140a2013-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 Gregor508f1c82009-06-26 23:10:12 +000060 };
61}
62
Douglas Gregor0b9247f2009-06-04 00:03:07 +000063using namespace clang;
64
Douglas Gregor9d0e4412010-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 Foad9f71a8f2010-12-07 08:25:34 +000069 X = X.extend(Y.getBitWidth());
Douglas Gregor9d0e4412010-03-26 05:50:28 +000070 else if (Y.getBitWidth() < X.getBitWidth())
Jay Foad9f71a8f2010-12-07 08:25:34 +000071 Y = Y.extend(X.getBitWidth());
Douglas Gregor9d0e4412010-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 Gregorf67875d2009-06-12 18:26:56 +000086static Sema::TemplateDeductionResult
Chandler Carrutha7ef1302010-02-07 21:33:28 +000087DeduceTemplateArguments(Sema &S,
Douglas Gregorf67875d2009-06-12 18:26:56 +000088 TemplateParameterList *TemplateParams,
89 const TemplateArgument &Param,
Douglas Gregor77d6bb92011-01-11 22:21:24 +000090 TemplateArgument Arg,
John McCall2a7fb272010-08-25 05:32:35 +000091 TemplateDeductionInfo &Info,
Craig Topper1310aac2013-07-08 04:13:06 +000092 SmallVectorImpl<DeducedTemplateArgument> &Deduced);
Douglas Gregord708c722009-06-09 16:35:58 +000093
Douglas Gregor20a55e22010-12-22 18:17:10 +000094static Sema::TemplateDeductionResult
Sebastian Redlbb95e512012-01-17 22:49:52 +000095DeduceTemplateArgumentsByTypeMatch(Sema &S,
96 TemplateParameterList *TemplateParams,
97 QualType Param,
98 QualType Arg,
99 TemplateDeductionInfo &Info,
100 SmallVectorImpl<DeducedTemplateArgument> &
101 Deduced,
102 unsigned TDF,
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700103 bool PartialOrdering = false);
Douglas Gregor603cfb42011-01-05 23:12:31 +0000104
105static Sema::TemplateDeductionResult
106DeduceTemplateArguments(Sema &S,
107 TemplateParameterList *TemplateParams,
Douglas Gregor20a55e22010-12-22 18:17:10 +0000108 const TemplateArgument *Params, unsigned NumParams,
109 const TemplateArgument *Args, unsigned NumArgs,
110 TemplateDeductionInfo &Info,
Richard Smith030a6642012-12-06 06:44:44 +0000111 SmallVectorImpl<DeducedTemplateArgument> &Deduced);
Douglas Gregor20a55e22010-12-22 18:17:10 +0000112
Douglas Gregor199d9912009-06-05 00:53:49 +0000113/// \brief If the given expression is of a form that permits the deduction
114/// of a non-type template parameter, return the declaration of that
115/// non-type template parameter.
116static NonTypeTemplateParmDecl *getDeducedParameterFromExpr(Expr *E) {
Richard Smith5a343d72012-07-08 04:37:51 +0000117 // If we are within an alias template, the expression may have undergone
118 // any number of parameter substitutions already.
119 while (1) {
120 if (ImplicitCastExpr *IC = dyn_cast<ImplicitCastExpr>(E))
121 E = IC->getSubExpr();
122 else if (SubstNonTypeTemplateParmExpr *Subst =
123 dyn_cast<SubstNonTypeTemplateParmExpr>(E))
124 E = Subst->getReplacement();
125 else
126 break;
127 }
Mike Stump1eb44332009-09-09 15:08:12 +0000128
Douglas Gregor199d9912009-06-05 00:53:49 +0000129 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
130 return dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000131
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700132 return nullptr;
Douglas Gregor199d9912009-06-05 00:53:49 +0000133}
134
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000135/// \brief Determine whether two declaration pointers refer to the same
136/// declaration.
137static bool isSameDeclaration(Decl *X, Decl *Y) {
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000138 if (NamedDecl *NX = dyn_cast<NamedDecl>(X))
139 X = NX->getUnderlyingDecl();
140 if (NamedDecl *NY = dyn_cast<NamedDecl>(Y))
141 Y = NY->getUnderlyingDecl();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000142
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000143 return X->getCanonicalDecl() == Y->getCanonicalDecl();
144}
145
146/// \brief Verify that the given, deduced template arguments are compatible.
147///
148/// \returns The deduced template argument, or a NULL template argument if
149/// the deduced template arguments were incompatible.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000150static DeducedTemplateArgument
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000151checkDeducedTemplateArguments(ASTContext &Context,
152 const DeducedTemplateArgument &X,
153 const DeducedTemplateArgument &Y) {
154 // We have no deduction for one or both of the arguments; they're compatible.
155 if (X.isNull())
156 return Y;
157 if (Y.isNull())
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000158 return X;
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000159
160 switch (X.getKind()) {
161 case TemplateArgument::Null:
162 llvm_unreachable("Non-deduced template arguments handled above");
163
164 case TemplateArgument::Type:
165 // If two template type arguments have the same type, they're compatible.
166 if (Y.getKind() == TemplateArgument::Type &&
167 Context.hasSameType(X.getAsType(), Y.getAsType()))
168 return X;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000169
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000170 return DeducedTemplateArgument();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000171
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000172 case TemplateArgument::Integral:
173 // If we deduced a constant in one case and either a dependent expression or
174 // declaration in another case, keep the integral constant.
175 // If both are integral constants with the same value, keep that value.
176 if (Y.getKind() == TemplateArgument::Expression ||
177 Y.getKind() == TemplateArgument::Declaration ||
178 (Y.getKind() == TemplateArgument::Integral &&
Benjamin Kramer85524372012-06-07 15:09:51 +0000179 hasSameExtendedValue(X.getAsIntegral(), Y.getAsIntegral())))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000180 return DeducedTemplateArgument(X,
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000181 X.wasDeducedFromArrayBound() &&
182 Y.wasDeducedFromArrayBound());
183
184 // All other combinations are incompatible.
185 return DeducedTemplateArgument();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000186
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000187 case TemplateArgument::Template:
188 if (Y.getKind() == TemplateArgument::Template &&
189 Context.hasSameTemplateName(X.getAsTemplate(), Y.getAsTemplate()))
190 return X;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000191
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000192 // All other combinations are incompatible.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000193 return DeducedTemplateArgument();
Douglas Gregora7fc9012011-01-05 18:58:31 +0000194
195 case TemplateArgument::TemplateExpansion:
196 if (Y.getKind() == TemplateArgument::TemplateExpansion &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000197 Context.hasSameTemplateName(X.getAsTemplateOrTemplatePattern(),
Douglas Gregora7fc9012011-01-05 18:58:31 +0000198 Y.getAsTemplateOrTemplatePattern()))
199 return X;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000200
Douglas Gregora7fc9012011-01-05 18:58:31 +0000201 // All other combinations are incompatible.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000202 return DeducedTemplateArgument();
Douglas Gregora7fc9012011-01-05 18:58:31 +0000203
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000204 case TemplateArgument::Expression:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000205 // If we deduced a dependent expression in one case and either an integral
206 // constant or a declaration in another case, keep the integral constant
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000207 // or declaration.
208 if (Y.getKind() == TemplateArgument::Integral ||
209 Y.getKind() == TemplateArgument::Declaration)
210 return DeducedTemplateArgument(Y, X.wasDeducedFromArrayBound() &&
211 Y.wasDeducedFromArrayBound());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000212
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000213 if (Y.getKind() == TemplateArgument::Expression) {
214 // Compare the expressions for equality
215 llvm::FoldingSetNodeID ID1, ID2;
216 X.getAsExpr()->Profile(ID1, Context, true);
217 Y.getAsExpr()->Profile(ID2, Context, true);
218 if (ID1 == ID2)
219 return X;
220 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000221
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000222 // All other combinations are incompatible.
223 return DeducedTemplateArgument();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000224
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000225 case TemplateArgument::Declaration:
226 // If we deduced a declaration and a dependent expression, keep the
227 // declaration.
228 if (Y.getKind() == TemplateArgument::Expression)
229 return X;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000230
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000231 // If we deduced a declaration and an integral constant, keep the
232 // integral constant.
233 if (Y.getKind() == TemplateArgument::Integral)
234 return Y;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000235
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000236 // If we deduced two declarations, make sure they they refer to the
237 // same declaration.
238 if (Y.getKind() == TemplateArgument::Declaration &&
Stephen Hines176edba2014-12-01 14:53:08 -0800239 isSameDeclaration(X.getAsDecl(), Y.getAsDecl()))
Eli Friedmand7a6b162012-09-26 02:36:12 +0000240 return X;
241
242 // All other combinations are incompatible.
243 return DeducedTemplateArgument();
244
245 case TemplateArgument::NullPtr:
246 // If we deduced a null pointer and a dependent expression, keep the
247 // null pointer.
248 if (Y.getKind() == TemplateArgument::Expression)
249 return X;
250
251 // If we deduced a null pointer and an integral constant, keep the
252 // integral constant.
253 if (Y.getKind() == TemplateArgument::Integral)
254 return Y;
255
256 // If we deduced two null pointers, make sure they have the same type.
257 if (Y.getKind() == TemplateArgument::NullPtr &&
258 Context.hasSameType(X.getNullPtrType(), Y.getNullPtrType()))
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000259 return X;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000260
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000261 // All other combinations are incompatible.
262 return DeducedTemplateArgument();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000263
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000264 case TemplateArgument::Pack:
265 if (Y.getKind() != TemplateArgument::Pack ||
266 X.pack_size() != Y.pack_size())
267 return DeducedTemplateArgument();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000268
269 for (TemplateArgument::pack_iterator XA = X.pack_begin(),
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000270 XAEnd = X.pack_end(),
271 YA = Y.pack_begin();
272 XA != XAEnd; ++XA, ++YA) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700273 // FIXME: Do we need to merge the results together here?
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000274 if (checkDeducedTemplateArguments(Context,
275 DeducedTemplateArgument(*XA, X.wasDeducedFromArrayBound()),
Douglas Gregor135ffa72011-01-05 21:00:53 +0000276 DeducedTemplateArgument(*YA, Y.wasDeducedFromArrayBound()))
277 .isNull())
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000278 return DeducedTemplateArgument();
279 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000280
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000281 return X;
282 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000283
David Blaikie30263482012-01-20 21:50:17 +0000284 llvm_unreachable("Invalid TemplateArgument Kind!");
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000285}
286
Mike Stump1eb44332009-09-09 15:08:12 +0000287/// \brief Deduce the value of the given non-type template parameter
Douglas Gregor199d9912009-06-05 00:53:49 +0000288/// from the given constant.
Douglas Gregorf67875d2009-06-12 18:26:56 +0000289static Sema::TemplateDeductionResult
Chandler Carrutha7ef1302010-02-07 21:33:28 +0000290DeduceNonTypeTemplateArgument(Sema &S,
Mike Stump1eb44332009-09-09 15:08:12 +0000291 NonTypeTemplateParmDecl *NTTP,
Douglas Gregor9d0e4412010-03-26 05:50:28 +0000292 llvm::APSInt Value, QualType ValueType,
Douglas Gregor02024a92010-03-28 02:42:43 +0000293 bool DeducedFromArrayBound,
John McCall2a7fb272010-08-25 05:32:35 +0000294 TemplateDeductionInfo &Info,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000295 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
Mike Stump1eb44332009-09-09 15:08:12 +0000296 assert(NTTP->getDepth() == 0 &&
Douglas Gregor199d9912009-06-05 00:53:49 +0000297 "Cannot deduce non-type template argument with depth > 0");
Mike Stump1eb44332009-09-09 15:08:12 +0000298
Benjamin Kramer85524372012-06-07 15:09:51 +0000299 DeducedTemplateArgument NewDeduced(S.Context, Value, ValueType,
300 DeducedFromArrayBound);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000301 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context,
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000302 Deduced[NTTP->getIndex()],
303 NewDeduced);
304 if (Result.isNull()) {
Douglas Gregorf67875d2009-06-12 18:26:56 +0000305 Info.Param = NTTP;
306 Info.FirstArg = Deduced[NTTP->getIndex()];
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000307 Info.SecondArg = NewDeduced;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000308 return Sema::TDK_Inconsistent;
Douglas Gregorf67875d2009-06-12 18:26:56 +0000309 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000310
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000311 Deduced[NTTP->getIndex()] = Result;
Douglas Gregorf67875d2009-06-12 18:26:56 +0000312 return Sema::TDK_Success;
Douglas Gregor199d9912009-06-05 00:53:49 +0000313}
314
Mike Stump1eb44332009-09-09 15:08:12 +0000315/// \brief Deduce the value of the given non-type template parameter
Douglas Gregor199d9912009-06-05 00:53:49 +0000316/// from the given type- or value-dependent expression.
317///
318/// \returns true if deduction succeeded, false otherwise.
Douglas Gregorf67875d2009-06-12 18:26:56 +0000319static Sema::TemplateDeductionResult
Chandler Carrutha7ef1302010-02-07 21:33:28 +0000320DeduceNonTypeTemplateArgument(Sema &S,
Douglas Gregorf67875d2009-06-12 18:26:56 +0000321 NonTypeTemplateParmDecl *NTTP,
322 Expr *Value,
John McCall2a7fb272010-08-25 05:32:35 +0000323 TemplateDeductionInfo &Info,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000324 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
Mike Stump1eb44332009-09-09 15:08:12 +0000325 assert(NTTP->getDepth() == 0 &&
Douglas Gregor199d9912009-06-05 00:53:49 +0000326 "Cannot deduce non-type template argument with depth > 0");
327 assert((Value->isTypeDependent() || Value->isValueDependent()) &&
328 "Expression template argument must be type- or value-dependent.");
Mike Stump1eb44332009-09-09 15:08:12 +0000329
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000330 DeducedTemplateArgument NewDeduced(Value);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000331 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context,
332 Deduced[NTTP->getIndex()],
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000333 NewDeduced);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000334
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000335 if (Result.isNull()) {
336 Info.Param = NTTP;
337 Info.FirstArg = Deduced[NTTP->getIndex()];
338 Info.SecondArg = NewDeduced;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000339 return Sema::TDK_Inconsistent;
Douglas Gregor199d9912009-06-05 00:53:49 +0000340 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000341
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000342 Deduced[NTTP->getIndex()] = Result;
Douglas Gregorf67875d2009-06-12 18:26:56 +0000343 return Sema::TDK_Success;
Douglas Gregor199d9912009-06-05 00:53:49 +0000344}
345
Douglas Gregor15755cb2009-11-13 23:45:44 +0000346/// \brief Deduce the value of the given non-type template parameter
347/// from the given declaration.
348///
349/// \returns true if deduction succeeded, false otherwise.
350static Sema::TemplateDeductionResult
Chandler Carrutha7ef1302010-02-07 21:33:28 +0000351DeduceNonTypeTemplateArgument(Sema &S,
Craig Topperd82c0912013-07-08 04:16:49 +0000352 NonTypeTemplateParmDecl *NTTP,
353 ValueDecl *D,
354 TemplateDeductionInfo &Info,
355 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
Douglas Gregor15755cb2009-11-13 23:45:44 +0000356 assert(NTTP->getDepth() == 0 &&
357 "Cannot deduce non-type template argument with depth > 0");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000358
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700359 D = D ? cast<ValueDecl>(D->getCanonicalDecl()) : nullptr;
Stephen Hines176edba2014-12-01 14:53:08 -0800360 TemplateArgument New(D, NTTP->getType());
Eli Friedmand7a6b162012-09-26 02:36:12 +0000361 DeducedTemplateArgument NewDeduced(New);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000362 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context,
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000363 Deduced[NTTP->getIndex()],
364 NewDeduced);
365 if (Result.isNull()) {
366 Info.Param = NTTP;
367 Info.FirstArg = Deduced[NTTP->getIndex()];
368 Info.SecondArg = NewDeduced;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000369 return Sema::TDK_Inconsistent;
Douglas Gregor15755cb2009-11-13 23:45:44 +0000370 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000371
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000372 Deduced[NTTP->getIndex()] = Result;
Douglas Gregor15755cb2009-11-13 23:45:44 +0000373 return Sema::TDK_Success;
374}
375
Douglas Gregorf67875d2009-06-12 18:26:56 +0000376static Sema::TemplateDeductionResult
Chandler Carrutha7ef1302010-02-07 21:33:28 +0000377DeduceTemplateArguments(Sema &S,
Douglas Gregordb0d4b72009-11-11 23:06:43 +0000378 TemplateParameterList *TemplateParams,
Douglas Gregorf67875d2009-06-12 18:26:56 +0000379 TemplateName Param,
380 TemplateName Arg,
John McCall2a7fb272010-08-25 05:32:35 +0000381 TemplateDeductionInfo &Info,
Craig Topperd82c0912013-07-08 04:16:49 +0000382 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
Douglas Gregord708c722009-06-09 16:35:58 +0000383 TemplateDecl *ParamDecl = Param.getAsTemplateDecl();
Douglas Gregordb0d4b72009-11-11 23:06:43 +0000384 if (!ParamDecl) {
385 // The parameter type is dependent and is not a template template parameter,
386 // so there is nothing that we can deduce.
387 return Sema::TDK_Success;
388 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000389
Douglas Gregordb0d4b72009-11-11 23:06:43 +0000390 if (TemplateTemplateParmDecl *TempParam
391 = dyn_cast<TemplateTemplateParmDecl>(ParamDecl)) {
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000392 DeducedTemplateArgument NewDeduced(S.Context.getCanonicalTemplateName(Arg));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000393 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context,
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000394 Deduced[TempParam->getIndex()],
395 NewDeduced);
396 if (Result.isNull()) {
397 Info.Param = TempParam;
398 Info.FirstArg = Deduced[TempParam->getIndex()];
399 Info.SecondArg = NewDeduced;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000400 return Sema::TDK_Inconsistent;
Douglas Gregordb0d4b72009-11-11 23:06:43 +0000401 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000402
Douglas Gregor0d80abc2010-12-22 23:09:49 +0000403 Deduced[TempParam->getIndex()] = Result;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000404 return Sema::TDK_Success;
Douglas Gregorf67875d2009-06-12 18:26:56 +0000405 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000406
Douglas Gregordb0d4b72009-11-11 23:06:43 +0000407 // Verify that the two template names are equivalent.
Chandler Carrutha7ef1302010-02-07 21:33:28 +0000408 if (S.Context.hasSameTemplateName(Param, Arg))
Douglas Gregordb0d4b72009-11-11 23:06:43 +0000409 return Sema::TDK_Success;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000410
Douglas Gregordb0d4b72009-11-11 23:06:43 +0000411 // Mismatch of non-dependent template parameter to argument.
412 Info.FirstArg = TemplateArgument(Param);
413 Info.SecondArg = TemplateArgument(Arg);
414 return Sema::TDK_NonDeducedMismatch;
Douglas Gregord708c722009-06-09 16:35:58 +0000415}
416
Mike Stump1eb44332009-09-09 15:08:12 +0000417/// \brief Deduce the template arguments by comparing the template parameter
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000418/// type (which is a template-id) with the template argument type.
419///
Chandler Carrutha7ef1302010-02-07 21:33:28 +0000420/// \param S the Sema
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000421///
422/// \param TemplateParams the template parameters that we are deducing
423///
424/// \param Param the parameter type
425///
426/// \param Arg the argument type
427///
428/// \param Info information about the template argument deduction itself
429///
430/// \param Deduced the deduced template arguments
431///
432/// \returns the result of template argument deduction so far. Note that a
433/// "success" result means that template argument deduction has not yet failed,
434/// but it may still fail, later, for other reasons.
435static Sema::TemplateDeductionResult
Chandler Carrutha7ef1302010-02-07 21:33:28 +0000436DeduceTemplateArguments(Sema &S,
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000437 TemplateParameterList *TemplateParams,
438 const TemplateSpecializationType *Param,
439 QualType Arg,
John McCall2a7fb272010-08-25 05:32:35 +0000440 TemplateDeductionInfo &Info,
Craig Topper1310aac2013-07-08 04:13:06 +0000441 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
John McCall467b27b2009-10-22 20:10:53 +0000442 assert(Arg.isCanonical() && "Argument type must be canonical");
Mike Stump1eb44332009-09-09 15:08:12 +0000443
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000444 // Check whether the template argument is a dependent template-id.
Mike Stump1eb44332009-09-09 15:08:12 +0000445 if (const TemplateSpecializationType *SpecArg
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000446 = dyn_cast<TemplateSpecializationType>(Arg)) {
447 // Perform template argument deduction for the template name.
448 if (Sema::TemplateDeductionResult Result
Chandler Carrutha7ef1302010-02-07 21:33:28 +0000449 = DeduceTemplateArguments(S, TemplateParams,
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000450 Param->getTemplateName(),
451 SpecArg->getTemplateName(),
452 Info, Deduced))
453 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000454
Mike Stump1eb44332009-09-09 15:08:12 +0000455
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000456 // Perform template argument deduction on each template
Douglas Gregor0972c862010-12-22 18:55:49 +0000457 // argument. Ignore any missing/extra arguments, since they could be
458 // filled in by default arguments.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000459 return DeduceTemplateArguments(S, TemplateParams,
460 Param->getArgs(), Param->getNumArgs(),
Douglas Gregor0972c862010-12-22 18:55:49 +0000461 SpecArg->getArgs(), SpecArg->getNumArgs(),
Richard Smith030a6642012-12-06 06:44:44 +0000462 Info, Deduced);
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000463 }
Mike Stump1eb44332009-09-09 15:08:12 +0000464
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000465 // If the argument type is a class template specialization, we
466 // perform template argument deduction using its template
467 // arguments.
468 const RecordType *RecordArg = dyn_cast<RecordType>(Arg);
Richard Smith29805ca2013-01-31 05:19:49 +0000469 if (!RecordArg) {
470 Info.FirstArg = TemplateArgument(QualType(Param, 0));
471 Info.SecondArg = TemplateArgument(Arg);
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000472 return Sema::TDK_NonDeducedMismatch;
Richard Smith29805ca2013-01-31 05:19:49 +0000473 }
Mike Stump1eb44332009-09-09 15:08:12 +0000474
475 ClassTemplateSpecializationDecl *SpecArg
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000476 = dyn_cast<ClassTemplateSpecializationDecl>(RecordArg->getDecl());
Richard Smith29805ca2013-01-31 05:19:49 +0000477 if (!SpecArg) {
478 Info.FirstArg = TemplateArgument(QualType(Param, 0));
479 Info.SecondArg = TemplateArgument(Arg);
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000480 return Sema::TDK_NonDeducedMismatch;
Richard Smith29805ca2013-01-31 05:19:49 +0000481 }
Mike Stump1eb44332009-09-09 15:08:12 +0000482
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000483 // Perform template argument deduction for the template name.
484 if (Sema::TemplateDeductionResult Result
Chandler Carrutha7ef1302010-02-07 21:33:28 +0000485 = DeduceTemplateArguments(S,
Douglas Gregordb0d4b72009-11-11 23:06:43 +0000486 TemplateParams,
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000487 Param->getTemplateName(),
488 TemplateName(SpecArg->getSpecializedTemplate()),
489 Info, Deduced))
490 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000491
Douglas Gregor20a55e22010-12-22 18:17:10 +0000492 // Perform template argument deduction for the template arguments.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000493 return DeduceTemplateArguments(S, TemplateParams,
Douglas Gregor20a55e22010-12-22 18:17:10 +0000494 Param->getArgs(), Param->getNumArgs(),
495 SpecArg->getTemplateArgs().data(),
496 SpecArg->getTemplateArgs().size(),
497 Info, Deduced);
Douglas Gregorde0cb8b2009-07-07 23:09:34 +0000498}
499
John McCallcd05e812010-08-28 22:14:41 +0000500/// \brief Determines whether the given type is an opaque type that
501/// might be more qualified when instantiated.
502static bool IsPossiblyOpaquelyQualifiedType(QualType T) {
503 switch (T->getTypeClass()) {
504 case Type::TypeOfExpr:
505 case Type::TypeOf:
506 case Type::DependentName:
507 case Type::Decltype:
508 case Type::UnresolvedUsing:
John McCall62c28c82011-01-18 07:41:22 +0000509 case Type::TemplateTypeParm:
John McCallcd05e812010-08-28 22:14:41 +0000510 return true;
511
512 case Type::ConstantArray:
513 case Type::IncompleteArray:
514 case Type::VariableArray:
515 case Type::DependentSizedArray:
516 return IsPossiblyOpaquelyQualifiedType(
517 cast<ArrayType>(T)->getElementType());
518
519 default:
520 return false;
521 }
522}
523
Douglas Gregord3731192011-01-10 07:32:04 +0000524/// \brief Retrieve the depth and index of a template parameter.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000525static std::pair<unsigned, unsigned>
Douglas Gregord3731192011-01-10 07:32:04 +0000526getDepthAndIndex(NamedDecl *ND) {
Douglas Gregor603cfb42011-01-05 23:12:31 +0000527 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(ND))
528 return std::make_pair(TTP->getDepth(), TTP->getIndex());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000529
Douglas Gregor603cfb42011-01-05 23:12:31 +0000530 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND))
531 return std::make_pair(NTTP->getDepth(), NTTP->getIndex());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000532
Douglas Gregor603cfb42011-01-05 23:12:31 +0000533 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(ND);
534 return std::make_pair(TTP->getDepth(), TTP->getIndex());
535}
536
Douglas Gregord3731192011-01-10 07:32:04 +0000537/// \brief Retrieve the depth and index of an unexpanded parameter pack.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000538static std::pair<unsigned, unsigned>
Douglas Gregord3731192011-01-10 07:32:04 +0000539getDepthAndIndex(UnexpandedParameterPack UPP) {
540 if (const TemplateTypeParmType *TTP
541 = UPP.first.dyn_cast<const TemplateTypeParmType *>())
542 return std::make_pair(TTP->getDepth(), TTP->getIndex());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000543
Douglas Gregord3731192011-01-10 07:32:04 +0000544 return getDepthAndIndex(UPP.first.get<NamedDecl *>());
545}
546
Douglas Gregor603cfb42011-01-05 23:12:31 +0000547/// \brief Helper function to build a TemplateParameter when we don't
548/// know its type statically.
549static TemplateParameter makeTemplateParameter(Decl *D) {
550 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(D))
551 return TemplateParameter(TTP);
Craig Toppercb9186e2013-07-08 04:24:47 +0000552 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D))
Douglas Gregor603cfb42011-01-05 23:12:31 +0000553 return TemplateParameter(NTTP);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000554
Douglas Gregor603cfb42011-01-05 23:12:31 +0000555 return TemplateParameter(cast<TemplateTemplateParmDecl>(D));
556}
557
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700558/// A pack that we're currently deducing.
559struct clang::DeducedPack {
560 DeducedPack(unsigned Index) : Index(Index), Outer(nullptr) {}
Craig Topper70d214f2013-07-08 04:44:01 +0000561
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700562 // The index of the pack.
563 unsigned Index;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000564
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700565 // The old value of the pack before we started deducing it.
566 DeducedTemplateArgument Saved;
Richard Smitha8eaf002012-08-23 06:16:52 +0000567
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700568 // A deferred value of this pack from an inner deduction, that couldn't be
569 // deduced because this deduction hadn't happened yet.
570 DeducedTemplateArgument DeferredDeduction;
571
572 // The new value of the pack.
573 SmallVector<DeducedTemplateArgument, 4> New;
574
575 // The outer deduction for this pack, if any.
576 DeducedPack *Outer;
577};
578
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700579namespace {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700580/// A scope in which we're performing pack deduction.
581class PackDeductionScope {
582public:
583 PackDeductionScope(Sema &S, TemplateParameterList *TemplateParams,
584 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
585 TemplateDeductionInfo &Info, TemplateArgument Pattern)
586 : S(S), TemplateParams(TemplateParams), Deduced(Deduced), Info(Info) {
587 // Compute the set of template parameter indices that correspond to
588 // parameter packs expanded by the pack expansion.
589 {
590 llvm::SmallBitVector SawIndices(TemplateParams->size());
591 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
592 S.collectUnexpandedParameterPacks(Pattern, Unexpanded);
593 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) {
594 unsigned Depth, Index;
595 std::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]);
596 if (Depth == 0 && !SawIndices[Index]) {
597 SawIndices[Index] = true;
598
599 // Save the deduced template argument for the parameter pack expanded
600 // by this pack expansion, then clear out the deduction.
601 DeducedPack Pack(Index);
602 Pack.Saved = Deduced[Index];
603 Deduced[Index] = TemplateArgument();
604
605 Packs.push_back(Pack);
606 }
607 }
608 }
609 assert(!Packs.empty() && "Pack expansion without unexpanded packs?");
610
611 for (auto &Pack : Packs) {
612 if (Info.PendingDeducedPacks.size() > Pack.Index)
613 Pack.Outer = Info.PendingDeducedPacks[Pack.Index];
614 else
615 Info.PendingDeducedPacks.resize(Pack.Index + 1);
616 Info.PendingDeducedPacks[Pack.Index] = &Pack;
617
618 if (S.CurrentInstantiationScope) {
619 // If the template argument pack was explicitly specified, add that to
620 // the set of deduced arguments.
621 const TemplateArgument *ExplicitArgs;
622 unsigned NumExplicitArgs;
623 NamedDecl *PartiallySubstitutedPack =
624 S.CurrentInstantiationScope->getPartiallySubstitutedPack(
625 &ExplicitArgs, &NumExplicitArgs);
626 if (PartiallySubstitutedPack &&
627 getDepthAndIndex(PartiallySubstitutedPack).second == Pack.Index)
628 Pack.New.append(ExplicitArgs, ExplicitArgs + NumExplicitArgs);
629 }
Douglas Gregor54293852011-01-10 17:35:05 +0000630 }
631 }
Douglas Gregor54293852011-01-10 17:35:05 +0000632
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700633 ~PackDeductionScope() {
634 for (auto &Pack : Packs)
635 Info.PendingDeducedPacks[Pack.Index] = Pack.Outer;
Douglas Gregor0216f812011-01-10 17:53:52 +0000636 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000637
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700638 /// Move to deducing the next element in each pack that is being deduced.
639 void nextPackElement() {
640 // Capture the deduced template arguments for each parameter pack expanded
641 // by this pack expansion, add them to the list of arguments we've deduced
642 // for that pack, then clear out the deduced argument.
643 for (auto &Pack : Packs) {
644 DeducedTemplateArgument &DeducedArg = Deduced[Pack.Index];
645 if (!DeducedArg.isNull()) {
646 Pack.New.push_back(DeducedArg);
647 DeducedArg = DeducedTemplateArgument();
648 }
649 }
650 }
651
652 /// \brief Finish template argument deduction for a set of argument packs,
653 /// producing the argument packs and checking for consistency with prior
654 /// deductions.
655 Sema::TemplateDeductionResult finish(bool HasAnyArguments) {
656 // Build argument packs for each of the parameter packs expanded by this
657 // pack expansion.
658 for (auto &Pack : Packs) {
659 // Put back the old value for this pack.
660 Deduced[Pack.Index] = Pack.Saved;
661
662 // Build or find a new value for this pack.
663 DeducedTemplateArgument NewPack;
664 if (HasAnyArguments && Pack.New.empty()) {
665 if (Pack.DeferredDeduction.isNull()) {
666 // We were not able to deduce anything for this parameter pack
667 // (because it only appeared in non-deduced contexts), so just
668 // restore the saved argument pack.
669 continue;
670 }
671
672 NewPack = Pack.DeferredDeduction;
673 Pack.DeferredDeduction = TemplateArgument();
674 } else if (Pack.New.empty()) {
675 // If we deduced an empty argument pack, create it now.
676 NewPack = DeducedTemplateArgument(TemplateArgument::getEmptyPack());
677 } else {
678 TemplateArgument *ArgumentPack =
679 new (S.Context) TemplateArgument[Pack.New.size()];
680 std::copy(Pack.New.begin(), Pack.New.end(), ArgumentPack);
681 NewPack = DeducedTemplateArgument(
682 TemplateArgument(ArgumentPack, Pack.New.size()),
683 Pack.New[0].wasDeducedFromArrayBound());
684 }
685
686 // Pick where we're going to put the merged pack.
687 DeducedTemplateArgument *Loc;
688 if (Pack.Outer) {
689 if (Pack.Outer->DeferredDeduction.isNull()) {
690 // Defer checking this pack until we have a complete pack to compare
691 // it against.
692 Pack.Outer->DeferredDeduction = NewPack;
693 continue;
694 }
695 Loc = &Pack.Outer->DeferredDeduction;
696 } else {
697 Loc = &Deduced[Pack.Index];
698 }
699
700 // Check the new pack matches any previous value.
701 DeducedTemplateArgument OldPack = *Loc;
702 DeducedTemplateArgument Result =
703 checkDeducedTemplateArguments(S.Context, OldPack, NewPack);
704
705 // If we deferred a deduction of this pack, check that one now too.
706 if (!Result.isNull() && !Pack.DeferredDeduction.isNull()) {
707 OldPack = Result;
708 NewPack = Pack.DeferredDeduction;
709 Result = checkDeducedTemplateArguments(S.Context, OldPack, NewPack);
710 }
711
712 if (Result.isNull()) {
713 Info.Param =
714 makeTemplateParameter(TemplateParams->getParam(Pack.Index));
715 Info.FirstArg = OldPack;
716 Info.SecondArg = NewPack;
717 return Sema::TDK_Inconsistent;
718 }
719
720 *Loc = Result;
721 }
722
723 return Sema::TDK_Success;
724 }
725
726private:
727 Sema &S;
728 TemplateParameterList *TemplateParams;
729 SmallVectorImpl<DeducedTemplateArgument> &Deduced;
730 TemplateDeductionInfo &Info;
731
732 SmallVector<DeducedPack, 2> Packs;
733};
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700734} // namespace
Douglas Gregor0216f812011-01-10 17:53:52 +0000735
Douglas Gregor603cfb42011-01-05 23:12:31 +0000736/// \brief Deduce the template arguments by comparing the list of parameter
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000737/// types to the list of argument types, as in the parameter-type-lists of
738/// function types (C++ [temp.deduct.type]p10).
Douglas Gregor603cfb42011-01-05 23:12:31 +0000739///
740/// \param S The semantic analysis object within which we are deducing
741///
742/// \param TemplateParams The template parameters that we are deducing
743///
744/// \param Params The list of parameter types
745///
746/// \param NumParams The number of types in \c Params
747///
748/// \param Args The list of argument types
749///
750/// \param NumArgs The number of types in \c Args
751///
752/// \param Info information about the template argument deduction itself
753///
754/// \param Deduced the deduced template arguments
755///
756/// \param TDF bitwise OR of the TemplateDeductionFlags bits that describe
757/// how template argument deduction is performed.
758///
Douglas Gregor5c7bf422011-01-11 17:34:58 +0000759/// \param PartialOrdering If true, we are performing template argument
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000760/// deduction for during partial ordering for a call
Douglas Gregor5c7bf422011-01-11 17:34:58 +0000761/// (C++0x [temp.deduct.partial]).
762///
Douglas Gregor603cfb42011-01-05 23:12:31 +0000763/// \returns the result of template argument deduction so far. Note that a
764/// "success" result means that template argument deduction has not yet failed,
765/// but it may still fail, later, for other reasons.
766static Sema::TemplateDeductionResult
767DeduceTemplateArguments(Sema &S,
768 TemplateParameterList *TemplateParams,
769 const QualType *Params, unsigned NumParams,
770 const QualType *Args, unsigned NumArgs,
771 TemplateDeductionInfo &Info,
Craig Topperd82c0912013-07-08 04:16:49 +0000772 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
Douglas Gregor5c7bf422011-01-11 17:34:58 +0000773 unsigned TDF,
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700774 bool PartialOrdering = false) {
Douglas Gregor0bbacf82011-01-05 23:23:17 +0000775 // Fast-path check to see if we have too many/too few arguments.
776 if (NumParams != NumArgs &&
777 !(NumParams && isa<PackExpansionType>(Params[NumParams - 1])) &&
778 !(NumArgs && isa<PackExpansionType>(Args[NumArgs - 1])))
Richard Smith29805ca2013-01-31 05:19:49 +0000779 return Sema::TDK_MiscellaneousDeductionFailure;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000780
Douglas Gregor603cfb42011-01-05 23:12:31 +0000781 // C++0x [temp.deduct.type]p10:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000782 // Similarly, if P has a form that contains (T), then each parameter type
783 // Pi of the respective parameter-type- list of P is compared with the
784 // corresponding parameter type Ai of the corresponding parameter-type-list
785 // of A. [...]
Douglas Gregor603cfb42011-01-05 23:12:31 +0000786 unsigned ArgIdx = 0, ParamIdx = 0;
787 for (; ParamIdx != NumParams; ++ParamIdx) {
788 // Check argument types.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000789 const PackExpansionType *Expansion
Douglas Gregor603cfb42011-01-05 23:12:31 +0000790 = dyn_cast<PackExpansionType>(Params[ParamIdx]);
791 if (!Expansion) {
792 // Simple case: compare the parameter and argument types at this point.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000793
Douglas Gregor603cfb42011-01-05 23:12:31 +0000794 // Make sure we have an argument.
795 if (ArgIdx >= NumArgs)
Richard Smith29805ca2013-01-31 05:19:49 +0000796 return Sema::TDK_MiscellaneousDeductionFailure;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000797
Douglas Gregor77d6bb92011-01-11 22:21:24 +0000798 if (isa<PackExpansionType>(Args[ArgIdx])) {
799 // C++0x [temp.deduct.type]p22:
800 // If the original function parameter associated with A is a function
801 // parameter pack and the function parameter associated with P is not
802 // a function parameter pack, then template argument deduction fails.
Richard Smith29805ca2013-01-31 05:19:49 +0000803 return Sema::TDK_MiscellaneousDeductionFailure;
Douglas Gregor77d6bb92011-01-11 22:21:24 +0000804 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000805
Douglas Gregor603cfb42011-01-05 23:12:31 +0000806 if (Sema::TemplateDeductionResult Result
Sebastian Redlbb95e512012-01-17 22:49:52 +0000807 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
808 Params[ParamIdx], Args[ArgIdx],
809 Info, Deduced, TDF,
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700810 PartialOrdering))
Douglas Gregor603cfb42011-01-05 23:12:31 +0000811 return Result;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000812
Douglas Gregor603cfb42011-01-05 23:12:31 +0000813 ++ArgIdx;
814 continue;
815 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000816
Douglas Gregor7d5c0c12011-01-11 01:52:23 +0000817 // C++0x [temp.deduct.type]p5:
818 // The non-deduced contexts are:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000819 // - A function parameter pack that does not occur at the end of the
Douglas Gregor7d5c0c12011-01-11 01:52:23 +0000820 // parameter-declaration-clause.
821 if (ParamIdx + 1 < NumParams)
822 return Sema::TDK_Success;
823
Douglas Gregor603cfb42011-01-05 23:12:31 +0000824 // C++0x [temp.deduct.type]p10:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000825 // If the parameter-declaration corresponding to Pi is a function
Douglas Gregor603cfb42011-01-05 23:12:31 +0000826 // parameter pack, then the type of its declarator- id is compared with
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000827 // each remaining parameter type in the parameter-type-list of A. Each
Douglas Gregor603cfb42011-01-05 23:12:31 +0000828 // comparison deduces template arguments for subsequent positions in the
829 // template parameter packs expanded by the function parameter pack.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000830
Douglas Gregor603cfb42011-01-05 23:12:31 +0000831 QualType Pattern = Expansion->getPattern();
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700832 PackDeductionScope PackScope(S, TemplateParams, Deduced, Info, Pattern);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000833
Douglas Gregor603cfb42011-01-05 23:12:31 +0000834 bool HasAnyArguments = false;
835 for (; ArgIdx < NumArgs; ++ArgIdx) {
836 HasAnyArguments = true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000837
Douglas Gregor603cfb42011-01-05 23:12:31 +0000838 // Deduce template arguments from the pattern.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000839 if (Sema::TemplateDeductionResult Result
Sebastian Redlbb95e512012-01-17 22:49:52 +0000840 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, Pattern,
841 Args[ArgIdx], Info, Deduced,
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700842 TDF, PartialOrdering))
Douglas Gregor603cfb42011-01-05 23:12:31 +0000843 return Result;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000844
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700845 PackScope.nextPackElement();
Douglas Gregor603cfb42011-01-05 23:12:31 +0000846 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000847
Douglas Gregor603cfb42011-01-05 23:12:31 +0000848 // Build argument packs for each of the parameter packs expanded by this
849 // pack expansion.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700850 if (auto Result = PackScope.finish(HasAnyArguments))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000851 return Result;
Douglas Gregor603cfb42011-01-05 23:12:31 +0000852 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000853
Douglas Gregor603cfb42011-01-05 23:12:31 +0000854 // Make sure we don't have any extra arguments.
855 if (ArgIdx < NumArgs)
Richard Smith29805ca2013-01-31 05:19:49 +0000856 return Sema::TDK_MiscellaneousDeductionFailure;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000857
Douglas Gregor603cfb42011-01-05 23:12:31 +0000858 return Sema::TDK_Success;
859}
860
Douglas Gregor61d0b6b2011-04-28 00:56:09 +0000861/// \brief Determine whether the parameter has qualifiers that are either
862/// inconsistent with or a superset of the argument's qualifiers.
863static bool hasInconsistentOrSupersetQualifiersOf(QualType ParamType,
864 QualType ArgType) {
865 Qualifiers ParamQs = ParamType.getQualifiers();
866 Qualifiers ArgQs = ArgType.getQualifiers();
867
868 if (ParamQs == ArgQs)
869 return false;
870
871 // Mismatched (but not missing) Objective-C GC attributes.
872 if (ParamQs.getObjCGCAttr() != ArgQs.getObjCGCAttr() &&
873 ParamQs.hasObjCGCAttr())
874 return true;
875
876 // Mismatched (but not missing) address spaces.
877 if (ParamQs.getAddressSpace() != ArgQs.getAddressSpace() &&
878 ParamQs.hasAddressSpace())
879 return true;
880
John McCallf85e1932011-06-15 23:02:42 +0000881 // Mismatched (but not missing) Objective-C lifetime qualifiers.
882 if (ParamQs.getObjCLifetime() != ArgQs.getObjCLifetime() &&
883 ParamQs.hasObjCLifetime())
884 return true;
885
Douglas Gregor61d0b6b2011-04-28 00:56:09 +0000886 // CVR qualifier superset.
887 return (ParamQs.getCVRQualifiers() != ArgQs.getCVRQualifiers()) &&
888 ((ParamQs.getCVRQualifiers() | ArgQs.getCVRQualifiers())
889 == ParamQs.getCVRQualifiers());
890}
891
Douglas Gregor092140a2013-04-17 08:45:07 +0000892/// \brief Compare types for equality with respect to possibly compatible
893/// function types (noreturn adjustment, implicit calling conventions). If any
894/// of parameter and argument is not a function, just perform type comparison.
895///
896/// \param Param the template parameter type.
897///
898/// \param Arg the argument type.
899bool Sema::isSameOrCompatibleFunctionType(CanQualType Param,
900 CanQualType Arg) {
901 const FunctionType *ParamFunction = Param->getAs<FunctionType>(),
902 *ArgFunction = Arg->getAs<FunctionType>();
903
904 // Just compare if not functions.
905 if (!ParamFunction || !ArgFunction)
906 return Param == Arg;
907
908 // Noreturn adjustment.
909 QualType AdjustedParam;
910 if (IsNoReturnConversion(Param, Arg, AdjustedParam))
911 return Arg == Context.getCanonicalType(AdjustedParam);
912
913 // FIXME: Compatible calling conventions.
914
915 return Param == Arg;
916}
917
Douglas Gregor500d3312009-06-26 18:27:22 +0000918/// \brief Deduce the template arguments by comparing the parameter type and
919/// the argument type (C++ [temp.deduct.type]).
920///
Chandler Carrutha7ef1302010-02-07 21:33:28 +0000921/// \param S the semantic analysis object within which we are deducing
Douglas Gregor500d3312009-06-26 18:27:22 +0000922///
923/// \param TemplateParams the template parameters that we are deducing
924///
925/// \param ParamIn the parameter type
926///
927/// \param ArgIn the argument type
928///
929/// \param Info information about the template argument deduction itself
930///
931/// \param Deduced the deduced template arguments
932///
Douglas Gregor508f1c82009-06-26 23:10:12 +0000933/// \param TDF bitwise OR of the TemplateDeductionFlags bits that describe
Mike Stump1eb44332009-09-09 15:08:12 +0000934/// how template argument deduction is performed.
Douglas Gregor500d3312009-06-26 18:27:22 +0000935///
Douglas Gregor5c7bf422011-01-11 17:34:58 +0000936/// \param PartialOrdering Whether we're performing template argument deduction
937/// in the context of partial ordering (C++0x [temp.deduct.partial]).
938///
Douglas Gregor500d3312009-06-26 18:27:22 +0000939/// \returns the result of template argument deduction so far. Note that a
940/// "success" result means that template argument deduction has not yet failed,
941/// but it may still fail, later, for other reasons.
Douglas Gregorf67875d2009-06-12 18:26:56 +0000942static Sema::TemplateDeductionResult
Sebastian Redlbb95e512012-01-17 22:49:52 +0000943DeduceTemplateArgumentsByTypeMatch(Sema &S,
944 TemplateParameterList *TemplateParams,
945 QualType ParamIn, QualType ArgIn,
946 TemplateDeductionInfo &Info,
947 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
948 unsigned TDF,
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700949 bool PartialOrdering) {
Douglas Gregor0b9247f2009-06-04 00:03:07 +0000950 // We only want to look at the canonical types, since typedefs and
951 // sugar are not part of template argument deduction.
Chandler Carrutha7ef1302010-02-07 21:33:28 +0000952 QualType Param = S.Context.getCanonicalType(ParamIn);
953 QualType Arg = S.Context.getCanonicalType(ArgIn);
Douglas Gregor0b9247f2009-06-04 00:03:07 +0000954
Douglas Gregor77d6bb92011-01-11 22:21:24 +0000955 // If the argument type is a pack expansion, look at its pattern.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000956 // This isn't explicitly called out
Douglas Gregor77d6bb92011-01-11 22:21:24 +0000957 if (const PackExpansionType *ArgExpansion
958 = dyn_cast<PackExpansionType>(Arg))
959 Arg = ArgExpansion->getPattern();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000960
Douglas Gregor5c7bf422011-01-11 17:34:58 +0000961 if (PartialOrdering) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700962 // C++11 [temp.deduct.partial]p5:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000963 // Before the partial ordering is done, certain transformations are
964 // performed on the types used for partial ordering:
965 // - If P is a reference type, P is replaced by the type referred to.
Douglas Gregor5c7bf422011-01-11 17:34:58 +0000966 const ReferenceType *ParamRef = Param->getAs<ReferenceType>();
967 if (ParamRef)
968 Param = ParamRef->getPointeeType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000969
Douglas Gregor5c7bf422011-01-11 17:34:58 +0000970 // - If A is a reference type, A is replaced by the type referred to.
971 const ReferenceType *ArgRef = Arg->getAs<ReferenceType>();
972 if (ArgRef)
973 Arg = ArgRef->getPointeeType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000974
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700975 if (ParamRef && ArgRef && S.Context.hasSameUnqualifiedType(Param, Arg)) {
976 // C++11 [temp.deduct.partial]p9:
977 // If, for a given type, deduction succeeds in both directions (i.e.,
978 // the types are identical after the transformations above) and both
979 // P and A were reference types [...]:
980 // - if [one type] was an lvalue reference and [the other type] was
981 // not, [the other type] is not considered to be at least as
982 // specialized as [the first type]
983 // - if [one type] is more cv-qualified than [the other type],
984 // [the other type] is not considered to be at least as specialized
985 // as [the first type]
986 // Objective-C ARC adds:
987 // - [one type] has non-trivial lifetime, [the other type] has
988 // __unsafe_unretained lifetime, and the types are otherwise
989 // identical
Douglas Gregor5c7bf422011-01-11 17:34:58 +0000990 //
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700991 // A is "considered to be at least as specialized" as P iff deduction
992 // succeeds, so we model this as a deduction failure. Note that
993 // [the first type] is P and [the other type] is A here; the standard
994 // gets this backwards.
Douglas Gregor769d0cc2011-04-30 17:07:52 +0000995 Qualifiers ParamQuals = Param.getQualifiers();
996 Qualifiers ArgQuals = Arg.getQualifiers();
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700997 if ((ParamRef->isLValueReferenceType() &&
998 !ArgRef->isLValueReferenceType()) ||
999 ParamQuals.isStrictSupersetOf(ArgQuals) ||
1000 (ParamQuals.hasNonTrivialObjCLifetime() &&
1001 ArgQuals.getObjCLifetime() == Qualifiers::OCL_ExplicitNone &&
1002 ParamQuals.withoutObjCLifetime() ==
1003 ArgQuals.withoutObjCLifetime())) {
1004 Info.FirstArg = TemplateArgument(ParamIn);
1005 Info.SecondArg = TemplateArgument(ArgIn);
1006 return Sema::TDK_NonDeducedMismatch;
Stephen Hines651f13c2014-04-23 16:59:28 -07001007 }
Douglas Gregor5c7bf422011-01-11 17:34:58 +00001008 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001009
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001010 // C++11 [temp.deduct.partial]p7:
Douglas Gregor5c7bf422011-01-11 17:34:58 +00001011 // Remove any top-level cv-qualifiers:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001012 // - If P is a cv-qualified type, P is replaced by the cv-unqualified
Douglas Gregor5c7bf422011-01-11 17:34:58 +00001013 // version of P.
1014 Param = Param.getUnqualifiedType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001015 // - If A is a cv-qualified type, A is replaced by the cv-unqualified
Douglas Gregor5c7bf422011-01-11 17:34:58 +00001016 // version of A.
1017 Arg = Arg.getUnqualifiedType();
1018 } else {
1019 // C++0x [temp.deduct.call]p4 bullet 1:
1020 // - If the original P is a reference type, the deduced A (i.e., the type
1021 // referred to by the reference) can be more cv-qualified than the
1022 // transformed A.
1023 if (TDF & TDF_ParamWithReferenceType) {
1024 Qualifiers Quals;
1025 QualType UnqualParam = S.Context.getUnqualifiedArrayType(Param, Quals);
1026 Quals.setCVRQualifiers(Quals.getCVRQualifiers() &
John McCall62c28c82011-01-18 07:41:22 +00001027 Arg.getCVRQualifiers());
Douglas Gregor5c7bf422011-01-11 17:34:58 +00001028 Param = S.Context.getQualifiedType(UnqualParam, Quals);
1029 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001030
Douglas Gregor73b3cf62011-01-25 17:19:08 +00001031 if ((TDF & TDF_TopLevelParameterTypeList) && !Param->isFunctionType()) {
1032 // C++0x [temp.deduct.type]p10:
1033 // If P and A are function types that originated from deduction when
1034 // taking the address of a function template (14.8.2.2) or when deducing
1035 // template arguments from a function declaration (14.8.2.6) and Pi and
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001036 // Ai are parameters of the top-level parameter-type-list of P and A,
1037 // respectively, Pi is adjusted if it is an rvalue reference to a
1038 // cv-unqualified template parameter and Ai is an lvalue reference, in
1039 // which case the type of Pi is changed to be the template parameter
Douglas Gregor73b3cf62011-01-25 17:19:08 +00001040 // type (i.e., T&& is changed to simply T). [ Note: As a result, when
1041 // Pi is T&& and Ai is X&, the adjusted Pi will be T, causing T to be
NAKAMURA Takumi00995302011-01-27 07:09:49 +00001042 // deduced as X&. - end note ]
Douglas Gregor73b3cf62011-01-25 17:19:08 +00001043 TDF &= ~TDF_TopLevelParameterTypeList;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001044
Douglas Gregor73b3cf62011-01-25 17:19:08 +00001045 if (const RValueReferenceType *ParamRef
1046 = Param->getAs<RValueReferenceType>()) {
1047 if (isa<TemplateTypeParmType>(ParamRef->getPointeeType()) &&
1048 !ParamRef->getPointeeType().getQualifiers())
1049 if (Arg->isLValueReferenceType())
1050 Param = ParamRef->getPointeeType();
1051 }
1052 }
Douglas Gregor500d3312009-06-26 18:27:22 +00001053 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001054
Douglas Gregor199d9912009-06-05 00:53:49 +00001055 // C++ [temp.deduct.type]p9:
Mike Stump1eb44332009-09-09 15:08:12 +00001056 // A template type argument T, a template template argument TT or a
1057 // template non-type argument i can be deduced if P and A have one of
Douglas Gregor199d9912009-06-05 00:53:49 +00001058 // the following forms:
1059 //
1060 // T
1061 // cv-list T
Mike Stump1eb44332009-09-09 15:08:12 +00001062 if (const TemplateTypeParmType *TemplateTypeParm
John McCall183700f2009-09-21 23:43:11 +00001063 = Param->getAs<TemplateTypeParmType>()) {
Douglas Gregoraf1308232011-09-22 15:57:07 +00001064 // Just skip any attempts to deduce from a placeholder type.
1065 if (Arg->isPlaceholderType())
1066 return Sema::TDK_Success;
1067
Douglas Gregorf67875d2009-06-12 18:26:56 +00001068 unsigned Index = TemplateTypeParm->getIndex();
Douglas Gregorf290e0d2009-07-22 21:30:48 +00001069 bool RecanonicalizeArg = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001070
Douglas Gregor9e9fae42009-07-22 20:02:25 +00001071 // If the argument type is an array type, move the qualifiers up to the
1072 // top level, so they can be matched with the qualifiers on the parameter.
Douglas Gregorf290e0d2009-07-22 21:30:48 +00001073 if (isa<ArrayType>(Arg)) {
John McCall0953e762009-09-24 19:53:00 +00001074 Qualifiers Quals;
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001075 Arg = S.Context.getUnqualifiedArrayType(Arg, Quals);
John McCall0953e762009-09-24 19:53:00 +00001076 if (Quals) {
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001077 Arg = S.Context.getQualifiedType(Arg, Quals);
Douglas Gregorf290e0d2009-07-22 21:30:48 +00001078 RecanonicalizeArg = true;
1079 }
1080 }
Mike Stump1eb44332009-09-09 15:08:12 +00001081
Douglas Gregor0b9247f2009-06-04 00:03:07 +00001082 // The argument type can not be less qualified than the parameter
1083 // type.
Douglas Gregor61d0b6b2011-04-28 00:56:09 +00001084 if (!(TDF & TDF_IgnoreQualifiers) &&
1085 hasInconsistentOrSupersetQualifiersOf(Param, Arg)) {
Douglas Gregorf67875d2009-06-12 18:26:56 +00001086 Info.Param = cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index));
John McCall57e97782010-08-05 09:05:08 +00001087 Info.FirstArg = TemplateArgument(Param);
John McCall833ca992009-10-29 08:12:44 +00001088 Info.SecondArg = TemplateArgument(Arg);
John McCall57e97782010-08-05 09:05:08 +00001089 return Sema::TDK_Underqualified;
Douglas Gregorf67875d2009-06-12 18:26:56 +00001090 }
Douglas Gregor0b9247f2009-06-04 00:03:07 +00001091
1092 assert(TemplateTypeParm->getDepth() == 0 && "Can't deduce with depth > 0");
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001093 assert(Arg != S.Context.OverloadTy && "Unresolved overloaded function");
John McCall0953e762009-09-24 19:53:00 +00001094 QualType DeducedType = Arg;
John McCall49f4e1c2010-12-10 11:01:00 +00001095
Douglas Gregor61d0b6b2011-04-28 00:56:09 +00001096 // Remove any qualifiers on the parameter from the deduced type.
1097 // We checked the qualifiers for consistency above.
1098 Qualifiers DeducedQs = DeducedType.getQualifiers();
1099 Qualifiers ParamQs = Param.getQualifiers();
1100 DeducedQs.removeCVRQualifiers(ParamQs.getCVRQualifiers());
1101 if (ParamQs.hasObjCGCAttr())
1102 DeducedQs.removeObjCGCAttr();
1103 if (ParamQs.hasAddressSpace())
1104 DeducedQs.removeAddressSpace();
John McCallf85e1932011-06-15 23:02:42 +00001105 if (ParamQs.hasObjCLifetime())
1106 DeducedQs.removeObjCLifetime();
Douglas Gregore559ca12011-06-17 22:11:49 +00001107
1108 // Objective-C ARC:
Douglas Gregorda8b2492011-07-26 14:53:44 +00001109 // If template deduction would produce a lifetime qualifier on a type
1110 // that is not a lifetime type, template argument deduction fails.
1111 if (ParamQs.hasObjCLifetime() && !DeducedType->isObjCLifetimeType() &&
1112 !DeducedType->isDependentType()) {
1113 Info.Param = cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index));
1114 Info.FirstArg = TemplateArgument(Param);
1115 Info.SecondArg = TemplateArgument(Arg);
1116 return Sema::TDK_Underqualified;
1117 }
1118
1119 // Objective-C ARC:
Douglas Gregore559ca12011-06-17 22:11:49 +00001120 // If template deduction would produce an argument type with lifetime type
1121 // but no lifetime qualifier, the __strong lifetime qualifier is inferred.
David Blaikie4e4d0842012-03-11 07:00:24 +00001122 if (S.getLangOpts().ObjCAutoRefCount &&
Douglas Gregore559ca12011-06-17 22:11:49 +00001123 DeducedType->isObjCLifetimeType() &&
1124 !DeducedQs.hasObjCLifetime())
1125 DeducedQs.setObjCLifetime(Qualifiers::OCL_Strong);
1126
Douglas Gregor61d0b6b2011-04-28 00:56:09 +00001127 DeducedType = S.Context.getQualifiedType(DeducedType.getUnqualifiedType(),
1128 DeducedQs);
1129
Douglas Gregorf290e0d2009-07-22 21:30:48 +00001130 if (RecanonicalizeArg)
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001131 DeducedType = S.Context.getCanonicalType(DeducedType);
Mike Stump1eb44332009-09-09 15:08:12 +00001132
Douglas Gregor0d80abc2010-12-22 23:09:49 +00001133 DeducedTemplateArgument NewDeduced(DeducedType);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001134 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context,
Douglas Gregor0d80abc2010-12-22 23:09:49 +00001135 Deduced[Index],
1136 NewDeduced);
1137 if (Result.isNull()) {
1138 Info.Param = cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index));
1139 Info.FirstArg = Deduced[Index];
1140 Info.SecondArg = NewDeduced;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001141 return Sema::TDK_Inconsistent;
Douglas Gregor0b9247f2009-06-04 00:03:07 +00001142 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001143
Douglas Gregor0d80abc2010-12-22 23:09:49 +00001144 Deduced[Index] = Result;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001145 return Sema::TDK_Success;
Douglas Gregor0b9247f2009-06-04 00:03:07 +00001146 }
1147
Douglas Gregorf67875d2009-06-12 18:26:56 +00001148 // Set up the template argument deduction information for a failure.
John McCall833ca992009-10-29 08:12:44 +00001149 Info.FirstArg = TemplateArgument(ParamIn);
1150 Info.SecondArg = TemplateArgument(ArgIn);
Douglas Gregorf67875d2009-06-12 18:26:56 +00001151
Douglas Gregor0bc15d92011-01-14 05:11:40 +00001152 // If the parameter is an already-substituted template parameter
1153 // pack, do nothing: we don't know which of its arguments to look
1154 // at, so we have to wait until all of the parameter packs in this
1155 // expansion have arguments.
1156 if (isa<SubstTemplateTypeParmPackType>(Param))
1157 return Sema::TDK_Success;
1158
Douglas Gregor508f1c82009-06-26 23:10:12 +00001159 // Check the cv-qualifiers on the parameter and argument types.
Douglas Gregor092140a2013-04-17 08:45:07 +00001160 CanQualType CanParam = S.Context.getCanonicalType(Param);
1161 CanQualType CanArg = S.Context.getCanonicalType(Arg);
Douglas Gregor508f1c82009-06-26 23:10:12 +00001162 if (!(TDF & TDF_IgnoreQualifiers)) {
1163 if (TDF & TDF_ParamWithReferenceType) {
Douglas Gregor61d0b6b2011-04-28 00:56:09 +00001164 if (hasInconsistentOrSupersetQualifiersOf(Param, Arg))
Douglas Gregor508f1c82009-06-26 23:10:12 +00001165 return Sema::TDK_NonDeducedMismatch;
John McCallcd05e812010-08-28 22:14:41 +00001166 } else if (!IsPossiblyOpaquelyQualifiedType(Param)) {
Douglas Gregor508f1c82009-06-26 23:10:12 +00001167 if (Param.getCVRQualifiers() != Arg.getCVRQualifiers())
Mike Stump1eb44332009-09-09 15:08:12 +00001168 return Sema::TDK_NonDeducedMismatch;
Douglas Gregor508f1c82009-06-26 23:10:12 +00001169 }
Douglas Gregorfc55a822012-03-11 03:29:50 +00001170
1171 // If the parameter type is not dependent, there is nothing to deduce.
1172 if (!Param->isDependentType()) {
Douglas Gregor092140a2013-04-17 08:45:07 +00001173 if (!(TDF & TDF_SkipNonDependent)) {
1174 bool NonDeduced = (TDF & TDF_InOverloadResolution)?
1175 !S.isSameOrCompatibleFunctionType(CanParam, CanArg) :
1176 Param != Arg;
1177 if (NonDeduced) {
1178 return Sema::TDK_NonDeducedMismatch;
1179 }
1180 }
Douglas Gregorfc55a822012-03-11 03:29:50 +00001181 return Sema::TDK_Success;
1182 }
Douglas Gregor092140a2013-04-17 08:45:07 +00001183 } else if (!Param->isDependentType()) {
1184 CanQualType ParamUnqualType = CanParam.getUnqualifiedType(),
1185 ArgUnqualType = CanArg.getUnqualifiedType();
1186 bool Success = (TDF & TDF_InOverloadResolution)?
1187 S.isSameOrCompatibleFunctionType(ParamUnqualType,
1188 ArgUnqualType) :
1189 ParamUnqualType == ArgUnqualType;
1190 if (Success)
1191 return Sema::TDK_Success;
Douglas Gregor508f1c82009-06-26 23:10:12 +00001192 }
Douglas Gregor0b9247f2009-06-04 00:03:07 +00001193
Douglas Gregord560d502009-06-04 00:21:18 +00001194 switch (Param->getTypeClass()) {
Douglas Gregor4ac01402011-06-15 16:02:29 +00001195 // Non-canonical types cannot appear here.
1196#define NON_CANONICAL_TYPE(Class, Base) \
1197 case Type::Class: llvm_unreachable("deducing non-canonical type: " #Class);
1198#define TYPE(Class, Base)
1199#include "clang/AST/TypeNodes.def"
1200
1201 case Type::TemplateTypeParm:
1202 case Type::SubstTemplateTypeParmPack:
1203 llvm_unreachable("Type nodes handled above");
Douglas Gregorfc55a822012-03-11 03:29:50 +00001204
1205 // These types cannot be dependent, so simply check whether the types are
1206 // the same.
Douglas Gregor199d9912009-06-05 00:53:49 +00001207 case Type::Builtin:
Douglas Gregor4ac01402011-06-15 16:02:29 +00001208 case Type::VariableArray:
1209 case Type::Vector:
1210 case Type::FunctionNoProto:
1211 case Type::Record:
1212 case Type::Enum:
1213 case Type::ObjCObject:
1214 case Type::ObjCInterface:
Douglas Gregorfc55a822012-03-11 03:29:50 +00001215 case Type::ObjCObjectPointer: {
1216 if (TDF & TDF_SkipNonDependent)
1217 return Sema::TDK_Success;
1218
1219 if (TDF & TDF_IgnoreQualifiers) {
1220 Param = Param.getUnqualifiedType();
1221 Arg = Arg.getUnqualifiedType();
1222 }
1223
1224 return Param == Arg? Sema::TDK_Success : Sema::TDK_NonDeducedMismatch;
1225 }
1226
Douglas Gregor4ac01402011-06-15 16:02:29 +00001227 // _Complex T [placeholder extension]
1228 case Type::Complex:
1229 if (const ComplexType *ComplexArg = Arg->getAs<ComplexType>())
Sebastian Redlbb95e512012-01-17 22:49:52 +00001230 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
Douglas Gregor4ac01402011-06-15 16:02:29 +00001231 cast<ComplexType>(Param)->getElementType(),
Sebastian Redlbb95e512012-01-17 22:49:52 +00001232 ComplexArg->getElementType(),
1233 Info, Deduced, TDF);
Douglas Gregor4ac01402011-06-15 16:02:29 +00001234
1235 return Sema::TDK_NonDeducedMismatch;
Eli Friedmanb001de72011-10-06 23:00:33 +00001236
1237 // _Atomic T [extension]
1238 case Type::Atomic:
1239 if (const AtomicType *AtomicArg = Arg->getAs<AtomicType>())
Sebastian Redlbb95e512012-01-17 22:49:52 +00001240 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
Eli Friedmanb001de72011-10-06 23:00:33 +00001241 cast<AtomicType>(Param)->getValueType(),
1242 AtomicArg->getValueType(),
1243 Info, Deduced, TDF);
1244
1245 return Sema::TDK_NonDeducedMismatch;
1246
Douglas Gregor199d9912009-06-05 00:53:49 +00001247 // T *
Douglas Gregord560d502009-06-04 00:21:18 +00001248 case Type::Pointer: {
John McCallc0008342010-05-13 07:48:05 +00001249 QualType PointeeType;
1250 if (const PointerType *PointerArg = Arg->getAs<PointerType>()) {
1251 PointeeType = PointerArg->getPointeeType();
1252 } else if (const ObjCObjectPointerType *PointerArg
1253 = Arg->getAs<ObjCObjectPointerType>()) {
1254 PointeeType = PointerArg->getPointeeType();
1255 } else {
Douglas Gregorf67875d2009-06-12 18:26:56 +00001256 return Sema::TDK_NonDeducedMismatch;
John McCallc0008342010-05-13 07:48:05 +00001257 }
Mike Stump1eb44332009-09-09 15:08:12 +00001258
Douglas Gregor41128772009-06-26 23:27:24 +00001259 unsigned SubTDF = TDF & (TDF_IgnoreQualifiers | TDF_DerivedClass);
Sebastian Redlbb95e512012-01-17 22:49:52 +00001260 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1261 cast<PointerType>(Param)->getPointeeType(),
John McCallc0008342010-05-13 07:48:05 +00001262 PointeeType,
Douglas Gregor41128772009-06-26 23:27:24 +00001263 Info, Deduced, SubTDF);
Douglas Gregord560d502009-06-04 00:21:18 +00001264 }
Mike Stump1eb44332009-09-09 15:08:12 +00001265
Douglas Gregor199d9912009-06-05 00:53:49 +00001266 // T &
Douglas Gregord560d502009-06-04 00:21:18 +00001267 case Type::LValueReference: {
Stephen Hines176edba2014-12-01 14:53:08 -08001268 const LValueReferenceType *ReferenceArg =
1269 Arg->getAs<LValueReferenceType>();
Douglas Gregord560d502009-06-04 00:21:18 +00001270 if (!ReferenceArg)
Douglas Gregorf67875d2009-06-12 18:26:56 +00001271 return Sema::TDK_NonDeducedMismatch;
Mike Stump1eb44332009-09-09 15:08:12 +00001272
Sebastian Redlbb95e512012-01-17 22:49:52 +00001273 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
Douglas Gregord560d502009-06-04 00:21:18 +00001274 cast<LValueReferenceType>(Param)->getPointeeType(),
Sebastian Redlbb95e512012-01-17 22:49:52 +00001275 ReferenceArg->getPointeeType(), Info, Deduced, 0);
Douglas Gregord560d502009-06-04 00:21:18 +00001276 }
Douglas Gregor0b9247f2009-06-04 00:03:07 +00001277
Douglas Gregor199d9912009-06-05 00:53:49 +00001278 // T && [C++0x]
Douglas Gregord560d502009-06-04 00:21:18 +00001279 case Type::RValueReference: {
Stephen Hines176edba2014-12-01 14:53:08 -08001280 const RValueReferenceType *ReferenceArg =
1281 Arg->getAs<RValueReferenceType>();
Douglas Gregord560d502009-06-04 00:21:18 +00001282 if (!ReferenceArg)
Douglas Gregorf67875d2009-06-12 18:26:56 +00001283 return Sema::TDK_NonDeducedMismatch;
Mike Stump1eb44332009-09-09 15:08:12 +00001284
Sebastian Redlbb95e512012-01-17 22:49:52 +00001285 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1286 cast<RValueReferenceType>(Param)->getPointeeType(),
1287 ReferenceArg->getPointeeType(),
1288 Info, Deduced, 0);
Douglas Gregord560d502009-06-04 00:21:18 +00001289 }
Mike Stump1eb44332009-09-09 15:08:12 +00001290
Douglas Gregor199d9912009-06-05 00:53:49 +00001291 // T [] (implied, but not stated explicitly)
Anders Carlsson4d6fb502009-06-04 04:11:30 +00001292 case Type::IncompleteArray: {
Mike Stump1eb44332009-09-09 15:08:12 +00001293 const IncompleteArrayType *IncompleteArrayArg =
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001294 S.Context.getAsIncompleteArrayType(Arg);
Anders Carlsson4d6fb502009-06-04 04:11:30 +00001295 if (!IncompleteArrayArg)
Douglas Gregorf67875d2009-06-12 18:26:56 +00001296 return Sema::TDK_NonDeducedMismatch;
Mike Stump1eb44332009-09-09 15:08:12 +00001297
John McCalle4f26e52010-08-19 00:20:19 +00001298 unsigned SubTDF = TDF & TDF_IgnoreQualifiers;
Sebastian Redlbb95e512012-01-17 22:49:52 +00001299 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1300 S.Context.getAsIncompleteArrayType(Param)->getElementType(),
1301 IncompleteArrayArg->getElementType(),
1302 Info, Deduced, SubTDF);
Anders Carlsson4d6fb502009-06-04 04:11:30 +00001303 }
Douglas Gregor199d9912009-06-05 00:53:49 +00001304
1305 // T [integer-constant]
Anders Carlsson4d6fb502009-06-04 04:11:30 +00001306 case Type::ConstantArray: {
Mike Stump1eb44332009-09-09 15:08:12 +00001307 const ConstantArrayType *ConstantArrayArg =
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001308 S.Context.getAsConstantArrayType(Arg);
Anders Carlsson4d6fb502009-06-04 04:11:30 +00001309 if (!ConstantArrayArg)
Douglas Gregorf67875d2009-06-12 18:26:56 +00001310 return Sema::TDK_NonDeducedMismatch;
Mike Stump1eb44332009-09-09 15:08:12 +00001311
1312 const ConstantArrayType *ConstantArrayParm =
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001313 S.Context.getAsConstantArrayType(Param);
Anders Carlsson4d6fb502009-06-04 04:11:30 +00001314 if (ConstantArrayArg->getSize() != ConstantArrayParm->getSize())
Douglas Gregorf67875d2009-06-12 18:26:56 +00001315 return Sema::TDK_NonDeducedMismatch;
Mike Stump1eb44332009-09-09 15:08:12 +00001316
John McCalle4f26e52010-08-19 00:20:19 +00001317 unsigned SubTDF = TDF & TDF_IgnoreQualifiers;
Sebastian Redlbb95e512012-01-17 22:49:52 +00001318 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1319 ConstantArrayParm->getElementType(),
1320 ConstantArrayArg->getElementType(),
1321 Info, Deduced, SubTDF);
Anders Carlsson4d6fb502009-06-04 04:11:30 +00001322 }
1323
Douglas Gregor199d9912009-06-05 00:53:49 +00001324 // type [i]
1325 case Type::DependentSizedArray: {
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001326 const ArrayType *ArrayArg = S.Context.getAsArrayType(Arg);
Douglas Gregor199d9912009-06-05 00:53:49 +00001327 if (!ArrayArg)
Douglas Gregorf67875d2009-06-12 18:26:56 +00001328 return Sema::TDK_NonDeducedMismatch;
Mike Stump1eb44332009-09-09 15:08:12 +00001329
John McCalle4f26e52010-08-19 00:20:19 +00001330 unsigned SubTDF = TDF & TDF_IgnoreQualifiers;
1331
Douglas Gregor199d9912009-06-05 00:53:49 +00001332 // Check the element type of the arrays
1333 const DependentSizedArrayType *DependentArrayParm
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001334 = S.Context.getAsDependentSizedArrayType(Param);
Douglas Gregorf67875d2009-06-12 18:26:56 +00001335 if (Sema::TemplateDeductionResult Result
Sebastian Redlbb95e512012-01-17 22:49:52 +00001336 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1337 DependentArrayParm->getElementType(),
1338 ArrayArg->getElementType(),
1339 Info, Deduced, SubTDF))
Douglas Gregorf67875d2009-06-12 18:26:56 +00001340 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001341
Douglas Gregor199d9912009-06-05 00:53:49 +00001342 // Determine the array bound is something we can deduce.
Mike Stump1eb44332009-09-09 15:08:12 +00001343 NonTypeTemplateParmDecl *NTTP
Douglas Gregor199d9912009-06-05 00:53:49 +00001344 = getDeducedParameterFromExpr(DependentArrayParm->getSizeExpr());
1345 if (!NTTP)
Douglas Gregorf67875d2009-06-12 18:26:56 +00001346 return Sema::TDK_Success;
Mike Stump1eb44332009-09-09 15:08:12 +00001347
1348 // We can perform template argument deduction for the given non-type
Douglas Gregor199d9912009-06-05 00:53:49 +00001349 // template parameter.
Mike Stump1eb44332009-09-09 15:08:12 +00001350 assert(NTTP->getDepth() == 0 &&
Douglas Gregor199d9912009-06-05 00:53:49 +00001351 "Cannot deduce non-type template argument at depth > 0");
Mike Stump1eb44332009-09-09 15:08:12 +00001352 if (const ConstantArrayType *ConstantArrayArg
Anders Carlsson335e24a2009-06-16 22:44:31 +00001353 = dyn_cast<ConstantArrayType>(ArrayArg)) {
1354 llvm::APSInt Size(ConstantArrayArg->getSize());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001355 return DeduceNonTypeTemplateArgument(S, NTTP, Size,
Douglas Gregor9d0e4412010-03-26 05:50:28 +00001356 S.Context.getSizeType(),
Douglas Gregor02024a92010-03-28 02:42:43 +00001357 /*ArrayBound=*/true,
Douglas Gregorf67875d2009-06-12 18:26:56 +00001358 Info, Deduced);
Anders Carlsson335e24a2009-06-16 22:44:31 +00001359 }
Douglas Gregor199d9912009-06-05 00:53:49 +00001360 if (const DependentSizedArrayType *DependentArrayArg
1361 = dyn_cast<DependentSizedArrayType>(ArrayArg))
Douglas Gregor34c2f8c2010-12-22 23:15:38 +00001362 if (DependentArrayArg->getSizeExpr())
1363 return DeduceNonTypeTemplateArgument(S, NTTP,
1364 DependentArrayArg->getSizeExpr(),
1365 Info, Deduced);
Mike Stump1eb44332009-09-09 15:08:12 +00001366
Douglas Gregor199d9912009-06-05 00:53:49 +00001367 // Incomplete type does not match a dependently-sized array type
Douglas Gregorf67875d2009-06-12 18:26:56 +00001368 return Sema::TDK_NonDeducedMismatch;
Douglas Gregor199d9912009-06-05 00:53:49 +00001369 }
Mike Stump1eb44332009-09-09 15:08:12 +00001370
1371 // type(*)(T)
1372 // T(*)()
1373 // T(*)(T)
Anders Carlssona27fad52009-06-08 15:19:08 +00001374 case Type::FunctionProto: {
Douglas Gregor73b3cf62011-01-25 17:19:08 +00001375 unsigned SubTDF = TDF & TDF_TopLevelParameterTypeList;
Mike Stump1eb44332009-09-09 15:08:12 +00001376 const FunctionProtoType *FunctionProtoArg =
Anders Carlssona27fad52009-06-08 15:19:08 +00001377 dyn_cast<FunctionProtoType>(Arg);
1378 if (!FunctionProtoArg)
Douglas Gregorf67875d2009-06-12 18:26:56 +00001379 return Sema::TDK_NonDeducedMismatch;
Mike Stump1eb44332009-09-09 15:08:12 +00001380
1381 const FunctionProtoType *FunctionProtoParam =
Anders Carlssona27fad52009-06-08 15:19:08 +00001382 cast<FunctionProtoType>(Param);
Anders Carlsson994b6cb2009-06-08 19:22:23 +00001383
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001384 if (FunctionProtoParam->getTypeQuals()
Douglas Gregore3c7a7c2011-01-26 16:50:54 +00001385 != FunctionProtoArg->getTypeQuals() ||
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001386 FunctionProtoParam->getRefQualifier()
Douglas Gregore3c7a7c2011-01-26 16:50:54 +00001387 != FunctionProtoArg->getRefQualifier() ||
1388 FunctionProtoParam->isVariadic() != FunctionProtoArg->isVariadic())
Douglas Gregorf67875d2009-06-12 18:26:56 +00001389 return Sema::TDK_NonDeducedMismatch;
Anders Carlsson994b6cb2009-06-08 19:22:23 +00001390
Anders Carlssona27fad52009-06-08 15:19:08 +00001391 // Check return types.
Stephen Hines651f13c2014-04-23 16:59:28 -07001392 if (Sema::TemplateDeductionResult Result =
1393 DeduceTemplateArgumentsByTypeMatch(
1394 S, TemplateParams, FunctionProtoParam->getReturnType(),
1395 FunctionProtoArg->getReturnType(), Info, Deduced, 0))
Douglas Gregorf67875d2009-06-12 18:26:56 +00001396 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001397
Stephen Hines651f13c2014-04-23 16:59:28 -07001398 return DeduceTemplateArguments(
1399 S, TemplateParams, FunctionProtoParam->param_type_begin(),
1400 FunctionProtoParam->getNumParams(),
1401 FunctionProtoArg->param_type_begin(),
1402 FunctionProtoArg->getNumParams(), Info, Deduced, SubTDF);
Anders Carlssona27fad52009-06-08 15:19:08 +00001403 }
Mike Stump1eb44332009-09-09 15:08:12 +00001404
John McCall3cb0ebd2010-03-10 03:28:59 +00001405 case Type::InjectedClassName: {
1406 // Treat a template's injected-class-name as if the template
1407 // specialization type had been used.
John McCall31f17ec2010-04-27 00:57:59 +00001408 Param = cast<InjectedClassNameType>(Param)
1409 ->getInjectedSpecializationType();
John McCall3cb0ebd2010-03-10 03:28:59 +00001410 assert(isa<TemplateSpecializationType>(Param) &&
1411 "injected class name is not a template specialization type");
1412 // fall through
1413 }
1414
Douglas Gregorf670c8c2009-06-26 20:57:09 +00001415 // template-name<T> (where template-name refers to a class template)
Douglas Gregord708c722009-06-09 16:35:58 +00001416 // template-name<i>
Douglas Gregordb0d4b72009-11-11 23:06:43 +00001417 // TT<T>
1418 // TT<i>
1419 // TT<>
Douglas Gregord708c722009-06-09 16:35:58 +00001420 case Type::TemplateSpecialization: {
1421 const TemplateSpecializationType *SpecParam
1422 = cast<TemplateSpecializationType>(Param);
Mike Stump1eb44332009-09-09 15:08:12 +00001423
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001424 // Try to deduce template arguments from the template-id.
1425 Sema::TemplateDeductionResult Result
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001426 = DeduceTemplateArguments(S, TemplateParams, SpecParam, Arg,
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001427 Info, Deduced);
Mike Stump1eb44332009-09-09 15:08:12 +00001428
Douglas Gregor4a5c15f2009-09-30 22:13:51 +00001429 if (Result && (TDF & TDF_DerivedClass)) {
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001430 // C++ [temp.deduct.call]p3b3:
1431 // If P is a class, and P has the form template-id, then A can be a
1432 // derived class of the deduced A. Likewise, if P is a pointer to a
Mike Stump1eb44332009-09-09 15:08:12 +00001433 // class of the form template-id, A can be a pointer to a derived
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001434 // class pointed to by the deduced A.
1435 //
1436 // More importantly:
Mike Stump1eb44332009-09-09 15:08:12 +00001437 // These alternatives are considered only if type deduction would
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001438 // otherwise fail.
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001439 if (const RecordType *RecordT = Arg->getAs<RecordType>()) {
1440 // We cannot inspect base classes as part of deduction when the type
1441 // is incomplete, so either instantiate any templates necessary to
1442 // complete the type, or skip over it if it cannot be completed.
John McCall5769d612010-02-08 23:07:23 +00001443 if (S.RequireCompleteType(Info.getLocation(), Arg, 0))
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001444 return Result;
1445
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001446 // Use data recursion to crawl through the list of base classes.
Mike Stump1eb44332009-09-09 15:08:12 +00001447 // Visited contains the set of nodes we have already visited, while
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001448 // ToVisit is our stack of records that we still need to visit.
1449 llvm::SmallPtrSet<const RecordType *, 8> Visited;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001450 SmallVector<const RecordType *, 8> ToVisit;
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001451 ToVisit.push_back(RecordT);
1452 bool Successful = false;
Benjamin Kramer74fe6612012-01-20 16:39:18 +00001453 SmallVector<DeducedTemplateArgument, 8> DeducedOrig(Deduced.begin(),
1454 Deduced.end());
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001455 while (!ToVisit.empty()) {
1456 // Retrieve the next class in the inheritance hierarchy.
Robert Wilhelm344472e2013-08-23 16:11:15 +00001457 const RecordType *NextT = ToVisit.pop_back_val();
Mike Stump1eb44332009-09-09 15:08:12 +00001458
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001459 // If we have already seen this type, skip it.
Stephen Hines176edba2014-12-01 14:53:08 -08001460 if (!Visited.insert(NextT).second)
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001461 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001462
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001463 // If this is a base class, try to perform template argument
1464 // deduction from it.
1465 if (NextT != RecordT) {
Richard Trieu910515b2012-11-07 21:17:13 +00001466 TemplateDeductionInfo BaseInfo(Info.getLocation());
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001467 Sema::TemplateDeductionResult BaseResult
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001468 = DeduceTemplateArguments(S, TemplateParams, SpecParam,
Richard Trieu910515b2012-11-07 21:17:13 +00001469 QualType(NextT, 0), BaseInfo,
1470 Deduced);
Mike Stump1eb44332009-09-09 15:08:12 +00001471
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001472 // If template argument deduction for this base was successful,
Douglas Gregor053105d2010-11-02 00:02:34 +00001473 // note that we had some success. Otherwise, ignore any deductions
1474 // from this base class.
1475 if (BaseResult == Sema::TDK_Success) {
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001476 Successful = true;
Benjamin Kramer74fe6612012-01-20 16:39:18 +00001477 DeducedOrig.clear();
1478 DeducedOrig.append(Deduced.begin(), Deduced.end());
Richard Trieu910515b2012-11-07 21:17:13 +00001479 Info.Param = BaseInfo.Param;
1480 Info.FirstArg = BaseInfo.FirstArg;
1481 Info.SecondArg = BaseInfo.SecondArg;
Douglas Gregor053105d2010-11-02 00:02:34 +00001482 }
1483 else
1484 Deduced = DeducedOrig;
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001485 }
Mike Stump1eb44332009-09-09 15:08:12 +00001486
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001487 // Visit base classes
1488 CXXRecordDecl *Next = cast<CXXRecordDecl>(NextT->getDecl());
Stephen Hines651f13c2014-04-23 16:59:28 -07001489 for (const auto &Base : Next->bases()) {
1490 assert(Base.getType()->isRecordType() &&
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001491 "Base class that isn't a record?");
Stephen Hines651f13c2014-04-23 16:59:28 -07001492 ToVisit.push_back(Base.getType()->getAs<RecordType>());
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001493 }
1494 }
Mike Stump1eb44332009-09-09 15:08:12 +00001495
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001496 if (Successful)
1497 return Sema::TDK_Success;
1498 }
Mike Stump1eb44332009-09-09 15:08:12 +00001499
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001500 }
Mike Stump1eb44332009-09-09 15:08:12 +00001501
Douglas Gregorde0cb8b2009-07-07 23:09:34 +00001502 return Result;
Douglas Gregord708c722009-06-09 16:35:58 +00001503 }
1504
Douglas Gregor637a4092009-06-10 23:47:09 +00001505 // T type::*
1506 // T T::*
1507 // T (type::*)()
1508 // type (T::*)()
1509 // type (type::*)(T)
1510 // type (T::*)(T)
1511 // T (type::*)(T)
1512 // T (T::*)()
1513 // T (T::*)(T)
1514 case Type::MemberPointer: {
1515 const MemberPointerType *MemPtrParam = cast<MemberPointerType>(Param);
1516 const MemberPointerType *MemPtrArg = dyn_cast<MemberPointerType>(Arg);
1517 if (!MemPtrArg)
Douglas Gregorf67875d2009-06-12 18:26:56 +00001518 return Sema::TDK_NonDeducedMismatch;
Douglas Gregor637a4092009-06-10 23:47:09 +00001519
Douglas Gregorf67875d2009-06-12 18:26:56 +00001520 if (Sema::TemplateDeductionResult Result
Sebastian Redlbb95e512012-01-17 22:49:52 +00001521 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1522 MemPtrParam->getPointeeType(),
1523 MemPtrArg->getPointeeType(),
1524 Info, Deduced,
1525 TDF & TDF_IgnoreQualifiers))
Douglas Gregorf67875d2009-06-12 18:26:56 +00001526 return Result;
1527
Sebastian Redlbb95e512012-01-17 22:49:52 +00001528 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1529 QualType(MemPtrParam->getClass(), 0),
1530 QualType(MemPtrArg->getClass(), 0),
Douglas Gregorfc55a822012-03-11 03:29:50 +00001531 Info, Deduced,
1532 TDF & TDF_IgnoreQualifiers);
Douglas Gregor637a4092009-06-10 23:47:09 +00001533 }
1534
Anders Carlsson9a917e42009-06-12 22:56:54 +00001535 // (clang extension)
1536 //
Mike Stump1eb44332009-09-09 15:08:12 +00001537 // type(^)(T)
1538 // T(^)()
1539 // T(^)(T)
Anders Carlsson859ba502009-06-12 16:23:10 +00001540 case Type::BlockPointer: {
1541 const BlockPointerType *BlockPtrParam = cast<BlockPointerType>(Param);
1542 const BlockPointerType *BlockPtrArg = dyn_cast<BlockPointerType>(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +00001543
Anders Carlsson859ba502009-06-12 16:23:10 +00001544 if (!BlockPtrArg)
Douglas Gregorf67875d2009-06-12 18:26:56 +00001545 return Sema::TDK_NonDeducedMismatch;
Mike Stump1eb44332009-09-09 15:08:12 +00001546
Sebastian Redlbb95e512012-01-17 22:49:52 +00001547 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1548 BlockPtrParam->getPointeeType(),
1549 BlockPtrArg->getPointeeType(),
1550 Info, Deduced, 0);
Anders Carlsson859ba502009-06-12 16:23:10 +00001551 }
1552
Douglas Gregor4ac01402011-06-15 16:02:29 +00001553 // (clang extension)
1554 //
1555 // T __attribute__(((ext_vector_type(<integral constant>))))
1556 case Type::ExtVector: {
1557 const ExtVectorType *VectorParam = cast<ExtVectorType>(Param);
1558 if (const ExtVectorType *VectorArg = dyn_cast<ExtVectorType>(Arg)) {
1559 // Make sure that the vectors have the same number of elements.
1560 if (VectorParam->getNumElements() != VectorArg->getNumElements())
1561 return Sema::TDK_NonDeducedMismatch;
1562
1563 // Perform deduction on the element types.
Sebastian Redlbb95e512012-01-17 22:49:52 +00001564 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1565 VectorParam->getElementType(),
1566 VectorArg->getElementType(),
1567 Info, Deduced, TDF);
Douglas Gregor4ac01402011-06-15 16:02:29 +00001568 }
1569
1570 if (const DependentSizedExtVectorType *VectorArg
1571 = dyn_cast<DependentSizedExtVectorType>(Arg)) {
1572 // We can't check the number of elements, since the argument has a
1573 // dependent number of elements. This can only occur during partial
1574 // ordering.
1575
1576 // Perform deduction on the element types.
Sebastian Redlbb95e512012-01-17 22:49:52 +00001577 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1578 VectorParam->getElementType(),
1579 VectorArg->getElementType(),
1580 Info, Deduced, TDF);
Douglas Gregor4ac01402011-06-15 16:02:29 +00001581 }
1582
1583 return Sema::TDK_NonDeducedMismatch;
1584 }
1585
1586 // (clang extension)
1587 //
1588 // T __attribute__(((ext_vector_type(N))))
1589 case Type::DependentSizedExtVector: {
1590 const DependentSizedExtVectorType *VectorParam
1591 = cast<DependentSizedExtVectorType>(Param);
1592
1593 if (const ExtVectorType *VectorArg = dyn_cast<ExtVectorType>(Arg)) {
1594 // Perform deduction on the element types.
1595 if (Sema::TemplateDeductionResult Result
Sebastian Redlbb95e512012-01-17 22:49:52 +00001596 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1597 VectorParam->getElementType(),
1598 VectorArg->getElementType(),
1599 Info, Deduced, TDF))
Douglas Gregor4ac01402011-06-15 16:02:29 +00001600 return Result;
1601
1602 // Perform deduction on the vector size, if we can.
1603 NonTypeTemplateParmDecl *NTTP
1604 = getDeducedParameterFromExpr(VectorParam->getSizeExpr());
1605 if (!NTTP)
1606 return Sema::TDK_Success;
1607
1608 llvm::APSInt ArgSize(S.Context.getTypeSize(S.Context.IntTy), false);
1609 ArgSize = VectorArg->getNumElements();
1610 return DeduceNonTypeTemplateArgument(S, NTTP, ArgSize, S.Context.IntTy,
1611 false, Info, Deduced);
1612 }
1613
1614 if (const DependentSizedExtVectorType *VectorArg
1615 = dyn_cast<DependentSizedExtVectorType>(Arg)) {
1616 // Perform deduction on the element types.
1617 if (Sema::TemplateDeductionResult Result
Sebastian Redlbb95e512012-01-17 22:49:52 +00001618 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1619 VectorParam->getElementType(),
1620 VectorArg->getElementType(),
1621 Info, Deduced, TDF))
Douglas Gregor4ac01402011-06-15 16:02:29 +00001622 return Result;
1623
1624 // Perform deduction on the vector size, if we can.
1625 NonTypeTemplateParmDecl *NTTP
1626 = getDeducedParameterFromExpr(VectorParam->getSizeExpr());
1627 if (!NTTP)
1628 return Sema::TDK_Success;
1629
1630 return DeduceNonTypeTemplateArgument(S, NTTP, VectorArg->getSizeExpr(),
1631 Info, Deduced);
1632 }
1633
1634 return Sema::TDK_NonDeducedMismatch;
1635 }
1636
Douglas Gregor637a4092009-06-10 23:47:09 +00001637 case Type::TypeOfExpr:
1638 case Type::TypeOf:
Douglas Gregor4714c122010-03-31 17:34:00 +00001639 case Type::DependentName:
Douglas Gregor4ac01402011-06-15 16:02:29 +00001640 case Type::UnresolvedUsing:
1641 case Type::Decltype:
1642 case Type::UnaryTransform:
1643 case Type::Auto:
1644 case Type::DependentTemplateSpecialization:
1645 case Type::PackExpansion:
Douglas Gregor637a4092009-06-10 23:47:09 +00001646 // No template argument deduction for these types
Douglas Gregorf67875d2009-06-12 18:26:56 +00001647 return Sema::TDK_Success;
Douglas Gregor0b9247f2009-06-04 00:03:07 +00001648 }
1649
David Blaikie30263482012-01-20 21:50:17 +00001650 llvm_unreachable("Invalid Type Class!");
Douglas Gregor0b9247f2009-06-04 00:03:07 +00001651}
1652
Douglas Gregorf67875d2009-06-12 18:26:56 +00001653static Sema::TemplateDeductionResult
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001654DeduceTemplateArguments(Sema &S,
Douglas Gregorf67875d2009-06-12 18:26:56 +00001655 TemplateParameterList *TemplateParams,
1656 const TemplateArgument &Param,
Douglas Gregor77d6bb92011-01-11 22:21:24 +00001657 TemplateArgument Arg,
John McCall2a7fb272010-08-25 05:32:35 +00001658 TemplateDeductionInfo &Info,
Craig Topper1310aac2013-07-08 04:13:06 +00001659 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
Douglas Gregor77d6bb92011-01-11 22:21:24 +00001660 // If the template argument is a pack expansion, perform template argument
1661 // deduction against the pattern of that expansion. This only occurs during
1662 // partial ordering.
1663 if (Arg.isPackExpansion())
1664 Arg = Arg.getPackExpansionPattern();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001665
Douglas Gregor0b9247f2009-06-04 00:03:07 +00001666 switch (Param.getKind()) {
Douglas Gregor199d9912009-06-05 00:53:49 +00001667 case TemplateArgument::Null:
David Blaikieb219cfc2011-09-23 05:06:16 +00001668 llvm_unreachable("Null template argument in parameter list");
Mike Stump1eb44332009-09-09 15:08:12 +00001669
1670 case TemplateArgument::Type:
Douglas Gregor788cd062009-11-11 01:00:40 +00001671 if (Arg.getKind() == TemplateArgument::Type)
Sebastian Redlbb95e512012-01-17 22:49:52 +00001672 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
1673 Param.getAsType(),
1674 Arg.getAsType(),
1675 Info, Deduced, 0);
Douglas Gregor788cd062009-11-11 01:00:40 +00001676 Info.FirstArg = Param;
1677 Info.SecondArg = Arg;
1678 return Sema::TDK_NonDeducedMismatch;
Douglas Gregora7fc9012011-01-05 18:58:31 +00001679
Douglas Gregor788cd062009-11-11 01:00:40 +00001680 case TemplateArgument::Template:
Douglas Gregordb0d4b72009-11-11 23:06:43 +00001681 if (Arg.getKind() == TemplateArgument::Template)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001682 return DeduceTemplateArguments(S, TemplateParams,
Douglas Gregor788cd062009-11-11 01:00:40 +00001683 Param.getAsTemplate(),
Douglas Gregordb0d4b72009-11-11 23:06:43 +00001684 Arg.getAsTemplate(), Info, Deduced);
Douglas Gregor788cd062009-11-11 01:00:40 +00001685 Info.FirstArg = Param;
1686 Info.SecondArg = Arg;
1687 return Sema::TDK_NonDeducedMismatch;
Douglas Gregora7fc9012011-01-05 18:58:31 +00001688
1689 case TemplateArgument::TemplateExpansion:
1690 llvm_unreachable("caller should handle pack expansions");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001691
Douglas Gregor199d9912009-06-05 00:53:49 +00001692 case TemplateArgument::Declaration:
Douglas Gregor788cd062009-11-11 01:00:40 +00001693 if (Arg.getKind() == TemplateArgument::Declaration &&
Stephen Hines176edba2014-12-01 14:53:08 -08001694 isSameDeclaration(Param.getAsDecl(), Arg.getAsDecl()))
Eli Friedmand7a6b162012-09-26 02:36:12 +00001695 return Sema::TDK_Success;
1696
1697 Info.FirstArg = Param;
1698 Info.SecondArg = Arg;
1699 return Sema::TDK_NonDeducedMismatch;
1700
1701 case TemplateArgument::NullPtr:
1702 if (Arg.getKind() == TemplateArgument::NullPtr &&
1703 S.Context.hasSameType(Param.getNullPtrType(), Arg.getNullPtrType()))
Douglas Gregor788cd062009-11-11 01:00:40 +00001704 return Sema::TDK_Success;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001705
Douglas Gregorf67875d2009-06-12 18:26:56 +00001706 Info.FirstArg = Param;
1707 Info.SecondArg = Arg;
1708 return Sema::TDK_NonDeducedMismatch;
Mike Stump1eb44332009-09-09 15:08:12 +00001709
Douglas Gregor199d9912009-06-05 00:53:49 +00001710 case TemplateArgument::Integral:
1711 if (Arg.getKind() == TemplateArgument::Integral) {
Benjamin Kramer85524372012-06-07 15:09:51 +00001712 if (hasSameExtendedValue(Param.getAsIntegral(), Arg.getAsIntegral()))
Douglas Gregorf67875d2009-06-12 18:26:56 +00001713 return Sema::TDK_Success;
1714
1715 Info.FirstArg = Param;
1716 Info.SecondArg = Arg;
1717 return Sema::TDK_NonDeducedMismatch;
Douglas Gregor199d9912009-06-05 00:53:49 +00001718 }
Douglas Gregorf67875d2009-06-12 18:26:56 +00001719
1720 if (Arg.getKind() == TemplateArgument::Expression) {
1721 Info.FirstArg = Param;
1722 Info.SecondArg = Arg;
1723 return Sema::TDK_NonDeducedMismatch;
1724 }
Douglas Gregor199d9912009-06-05 00:53:49 +00001725
Douglas Gregorf67875d2009-06-12 18:26:56 +00001726 Info.FirstArg = Param;
1727 Info.SecondArg = Arg;
1728 return Sema::TDK_NonDeducedMismatch;
Mike Stump1eb44332009-09-09 15:08:12 +00001729
Douglas Gregor199d9912009-06-05 00:53:49 +00001730 case TemplateArgument::Expression: {
Mike Stump1eb44332009-09-09 15:08:12 +00001731 if (NonTypeTemplateParmDecl *NTTP
Douglas Gregor199d9912009-06-05 00:53:49 +00001732 = getDeducedParameterFromExpr(Param.getAsExpr())) {
1733 if (Arg.getKind() == TemplateArgument::Integral)
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001734 return DeduceNonTypeTemplateArgument(S, NTTP,
Benjamin Kramer85524372012-06-07 15:09:51 +00001735 Arg.getAsIntegral(),
Douglas Gregor9d0e4412010-03-26 05:50:28 +00001736 Arg.getIntegralType(),
Douglas Gregor02024a92010-03-28 02:42:43 +00001737 /*ArrayBound=*/false,
Douglas Gregorf67875d2009-06-12 18:26:56 +00001738 Info, Deduced);
Douglas Gregor199d9912009-06-05 00:53:49 +00001739 if (Arg.getKind() == TemplateArgument::Expression)
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001740 return DeduceNonTypeTemplateArgument(S, NTTP, Arg.getAsExpr(),
Douglas Gregorf67875d2009-06-12 18:26:56 +00001741 Info, Deduced);
Douglas Gregor15755cb2009-11-13 23:45:44 +00001742 if (Arg.getKind() == TemplateArgument::Declaration)
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001743 return DeduceNonTypeTemplateArgument(S, NTTP, Arg.getAsDecl(),
Douglas Gregor15755cb2009-11-13 23:45:44 +00001744 Info, Deduced);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001745
Douglas Gregorf67875d2009-06-12 18:26:56 +00001746 Info.FirstArg = Param;
1747 Info.SecondArg = Arg;
1748 return Sema::TDK_NonDeducedMismatch;
Douglas Gregor199d9912009-06-05 00:53:49 +00001749 }
Mike Stump1eb44332009-09-09 15:08:12 +00001750
Douglas Gregor199d9912009-06-05 00:53:49 +00001751 // Can't deduce anything, but that's okay.
Douglas Gregorf67875d2009-06-12 18:26:56 +00001752 return Sema::TDK_Success;
Douglas Gregor0b9247f2009-06-04 00:03:07 +00001753 }
Anders Carlssond01b1da2009-06-15 17:04:53 +00001754 case TemplateArgument::Pack:
Douglas Gregor20a55e22010-12-22 18:17:10 +00001755 llvm_unreachable("Argument packs should be expanded by the caller!");
Douglas Gregor199d9912009-06-05 00:53:49 +00001756 }
Mike Stump1eb44332009-09-09 15:08:12 +00001757
David Blaikie30263482012-01-20 21:50:17 +00001758 llvm_unreachable("Invalid TemplateArgument Kind!");
Douglas Gregor0b9247f2009-06-04 00:03:07 +00001759}
1760
Douglas Gregor20a55e22010-12-22 18:17:10 +00001761/// \brief Determine whether there is a template argument to be used for
1762/// deduction.
1763///
1764/// This routine "expands" argument packs in-place, overriding its input
1765/// parameters so that \c Args[ArgIdx] will be the available template argument.
1766///
1767/// \returns true if there is another template argument (which will be at
1768/// \c Args[ArgIdx]), false otherwise.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001769static bool hasTemplateArgumentForDeduction(const TemplateArgument *&Args,
Douglas Gregor20a55e22010-12-22 18:17:10 +00001770 unsigned &ArgIdx,
1771 unsigned &NumArgs) {
1772 if (ArgIdx == NumArgs)
1773 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001774
Douglas Gregor20a55e22010-12-22 18:17:10 +00001775 const TemplateArgument &Arg = Args[ArgIdx];
1776 if (Arg.getKind() != TemplateArgument::Pack)
1777 return true;
1778
1779 assert(ArgIdx == NumArgs - 1 && "Pack not at the end of argument list?");
1780 Args = Arg.pack_begin();
1781 NumArgs = Arg.pack_size();
1782 ArgIdx = 0;
1783 return ArgIdx < NumArgs;
1784}
1785
Douglas Gregor7b976ec2010-12-23 01:24:45 +00001786/// \brief Determine whether the given set of template arguments has a pack
1787/// expansion that is not the last template argument.
1788static bool hasPackExpansionBeforeEnd(const TemplateArgument *Args,
1789 unsigned NumArgs) {
1790 unsigned ArgIdx = 0;
1791 while (ArgIdx < NumArgs) {
1792 const TemplateArgument &Arg = Args[ArgIdx];
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001793
Douglas Gregor7b976ec2010-12-23 01:24:45 +00001794 // Unwrap argument packs.
1795 if (Args[ArgIdx].getKind() == TemplateArgument::Pack) {
1796 Args = Arg.pack_begin();
1797 NumArgs = Arg.pack_size();
1798 ArgIdx = 0;
1799 continue;
1800 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001801
Douglas Gregor7b976ec2010-12-23 01:24:45 +00001802 ++ArgIdx;
1803 if (ArgIdx == NumArgs)
1804 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001805
Douglas Gregor7b976ec2010-12-23 01:24:45 +00001806 if (Arg.isPackExpansion())
1807 return true;
1808 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001809
Douglas Gregor7b976ec2010-12-23 01:24:45 +00001810 return false;
1811}
1812
Douglas Gregor20a55e22010-12-22 18:17:10 +00001813static Sema::TemplateDeductionResult
1814DeduceTemplateArguments(Sema &S,
1815 TemplateParameterList *TemplateParams,
1816 const TemplateArgument *Params, unsigned NumParams,
1817 const TemplateArgument *Args, unsigned NumArgs,
1818 TemplateDeductionInfo &Info,
Richard Smith030a6642012-12-06 06:44:44 +00001819 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
Douglas Gregore02e2622010-12-22 21:19:48 +00001820 // C++0x [temp.deduct.type]p9:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001821 // If the template argument list of P contains a pack expansion that is not
1822 // the last template argument, the entire template argument list is a
Douglas Gregore02e2622010-12-22 21:19:48 +00001823 // non-deduced context.
Douglas Gregor7b976ec2010-12-23 01:24:45 +00001824 if (hasPackExpansionBeforeEnd(Params, NumParams))
1825 return Sema::TDK_Success;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001826
Douglas Gregore02e2622010-12-22 21:19:48 +00001827 // C++0x [temp.deduct.type]p9:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001828 // If P has a form that contains <T> or <i>, then each argument Pi of the
1829 // respective template argument list P is compared with the corresponding
Douglas Gregore02e2622010-12-22 21:19:48 +00001830 // argument Ai of the corresponding template argument list of A.
Douglas Gregor20a55e22010-12-22 18:17:10 +00001831 unsigned ArgIdx = 0, ParamIdx = 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001832 for (; hasTemplateArgumentForDeduction(Params, ParamIdx, NumParams);
Douglas Gregor20a55e22010-12-22 18:17:10 +00001833 ++ParamIdx) {
1834 if (!Params[ParamIdx].isPackExpansion()) {
Douglas Gregore02e2622010-12-22 21:19:48 +00001835 // The simple case: deduce template arguments by matching Pi and Ai.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001836
Douglas Gregor20a55e22010-12-22 18:17:10 +00001837 // Check whether we have enough arguments.
1838 if (!hasTemplateArgumentForDeduction(Args, ArgIdx, NumArgs))
Richard Smith030a6642012-12-06 06:44:44 +00001839 return Sema::TDK_Success;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001840
Douglas Gregor77d6bb92011-01-11 22:21:24 +00001841 if (Args[ArgIdx].isPackExpansion()) {
1842 // FIXME: We follow the logic of C++0x [temp.deduct.type]p22 here,
1843 // but applied to pack expansions that are template arguments.
Richard Smith29805ca2013-01-31 05:19:49 +00001844 return Sema::TDK_MiscellaneousDeductionFailure;
Douglas Gregor77d6bb92011-01-11 22:21:24 +00001845 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001846
Douglas Gregore02e2622010-12-22 21:19:48 +00001847 // Perform deduction for this Pi/Ai pair.
Douglas Gregor20a55e22010-12-22 18:17:10 +00001848 if (Sema::TemplateDeductionResult Result
Douglas Gregor77d6bb92011-01-11 22:21:24 +00001849 = DeduceTemplateArguments(S, TemplateParams,
1850 Params[ParamIdx], Args[ArgIdx],
1851 Info, Deduced))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001852 return Result;
1853
Douglas Gregor20a55e22010-12-22 18:17:10 +00001854 // Move to the next argument.
1855 ++ArgIdx;
1856 continue;
1857 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001858
Douglas Gregore02e2622010-12-22 21:19:48 +00001859 // The parameter is a pack expansion.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001860
Douglas Gregore02e2622010-12-22 21:19:48 +00001861 // C++0x [temp.deduct.type]p9:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001862 // If Pi is a pack expansion, then the pattern of Pi is compared with
1863 // each remaining argument in the template argument list of A. Each
1864 // comparison deduces template arguments for subsequent positions in the
Douglas Gregore02e2622010-12-22 21:19:48 +00001865 // template parameter packs expanded by Pi.
1866 TemplateArgument Pattern = Params[ParamIdx].getPackExpansionPattern();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001867
Douglas Gregore02e2622010-12-22 21:19:48 +00001868 // FIXME: If there are no remaining arguments, we can bail out early
1869 // and set any deduced parameter packs to an empty argument pack.
1870 // The latter part of this is a (minor) correctness issue.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001871
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001872 // Prepare to deduce the packs within the pattern.
1873 PackDeductionScope PackScope(S, TemplateParams, Deduced, Info, Pattern);
Douglas Gregore02e2622010-12-22 21:19:48 +00001874
1875 // Keep track of the deduced template arguments for each parameter pack
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001876 // expanded by this pack expansion (the outer index) and for each
Douglas Gregore02e2622010-12-22 21:19:48 +00001877 // template argument (the inner SmallVectors).
Douglas Gregore02e2622010-12-22 21:19:48 +00001878 bool HasAnyArguments = false;
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001879 for (; hasTemplateArgumentForDeduction(Args, ArgIdx, NumArgs); ++ArgIdx) {
Douglas Gregore02e2622010-12-22 21:19:48 +00001880 HasAnyArguments = true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001881
Douglas Gregore02e2622010-12-22 21:19:48 +00001882 // Deduce template arguments from the pattern.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001883 if (Sema::TemplateDeductionResult Result
Douglas Gregore02e2622010-12-22 21:19:48 +00001884 = DeduceTemplateArguments(S, TemplateParams, Pattern, Args[ArgIdx],
1885 Info, Deduced))
1886 return Result;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001887
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001888 PackScope.nextPackElement();
Douglas Gregore02e2622010-12-22 21:19:48 +00001889 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001890
Douglas Gregore02e2622010-12-22 21:19:48 +00001891 // Build argument packs for each of the parameter packs expanded by this
1892 // pack expansion.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001893 if (auto Result = PackScope.finish(HasAnyArguments))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001894 return Result;
Douglas Gregor20a55e22010-12-22 18:17:10 +00001895 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001896
Douglas Gregor20a55e22010-12-22 18:17:10 +00001897 return Sema::TDK_Success;
1898}
1899
Mike Stump1eb44332009-09-09 15:08:12 +00001900static Sema::TemplateDeductionResult
Chandler Carrutha7ef1302010-02-07 21:33:28 +00001901DeduceTemplateArguments(Sema &S,
Douglas Gregorf67875d2009-06-12 18:26:56 +00001902 TemplateParameterList *TemplateParams,
Douglas Gregor0b9247f2009-06-04 00:03:07 +00001903 const TemplateArgumentList &ParamList,
1904 const TemplateArgumentList &ArgList,
John McCall2a7fb272010-08-25 05:32:35 +00001905 TemplateDeductionInfo &Info,
Craig Topper1310aac2013-07-08 04:13:06 +00001906 SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001907 return DeduceTemplateArguments(S, TemplateParams,
Douglas Gregor20a55e22010-12-22 18:17:10 +00001908 ParamList.data(), ParamList.size(),
1909 ArgList.data(), ArgList.size(),
1910 Info, Deduced);
Douglas Gregor0b9247f2009-06-04 00:03:07 +00001911}
1912
Douglas Gregorf670c8c2009-06-26 20:57:09 +00001913/// \brief Determine whether two template arguments are the same.
Mike Stump1eb44332009-09-09 15:08:12 +00001914static bool isSameTemplateArg(ASTContext &Context,
Douglas Gregorf670c8c2009-06-26 20:57:09 +00001915 const TemplateArgument &X,
1916 const TemplateArgument &Y) {
1917 if (X.getKind() != Y.getKind())
1918 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001919
Douglas Gregorf670c8c2009-06-26 20:57:09 +00001920 switch (X.getKind()) {
1921 case TemplateArgument::Null:
David Blaikieb219cfc2011-09-23 05:06:16 +00001922 llvm_unreachable("Comparing NULL template argument");
Mike Stump1eb44332009-09-09 15:08:12 +00001923
Douglas Gregorf670c8c2009-06-26 20:57:09 +00001924 case TemplateArgument::Type:
1925 return Context.getCanonicalType(X.getAsType()) ==
1926 Context.getCanonicalType(Y.getAsType());
Mike Stump1eb44332009-09-09 15:08:12 +00001927
Douglas Gregorf670c8c2009-06-26 20:57:09 +00001928 case TemplateArgument::Declaration:
Stephen Hines176edba2014-12-01 14:53:08 -08001929 return isSameDeclaration(X.getAsDecl(), Y.getAsDecl());
Eli Friedmand7a6b162012-09-26 02:36:12 +00001930
1931 case TemplateArgument::NullPtr:
1932 return Context.hasSameType(X.getNullPtrType(), Y.getNullPtrType());
Mike Stump1eb44332009-09-09 15:08:12 +00001933
Douglas Gregor788cd062009-11-11 01:00:40 +00001934 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +00001935 case TemplateArgument::TemplateExpansion:
1936 return Context.getCanonicalTemplateName(
1937 X.getAsTemplateOrTemplatePattern()).getAsVoidPointer() ==
1938 Context.getCanonicalTemplateName(
1939 Y.getAsTemplateOrTemplatePattern()).getAsVoidPointer();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001940
Douglas Gregorf670c8c2009-06-26 20:57:09 +00001941 case TemplateArgument::Integral:
Benjamin Kramer85524372012-06-07 15:09:51 +00001942 return X.getAsIntegral() == Y.getAsIntegral();
Mike Stump1eb44332009-09-09 15:08:12 +00001943
Douglas Gregor788cd062009-11-11 01:00:40 +00001944 case TemplateArgument::Expression: {
1945 llvm::FoldingSetNodeID XID, YID;
1946 X.getAsExpr()->Profile(XID, Context, true);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001947 Y.getAsExpr()->Profile(YID, Context, true);
Douglas Gregor788cd062009-11-11 01:00:40 +00001948 return XID == YID;
1949 }
Mike Stump1eb44332009-09-09 15:08:12 +00001950
Douglas Gregorf670c8c2009-06-26 20:57:09 +00001951 case TemplateArgument::Pack:
1952 if (X.pack_size() != Y.pack_size())
1953 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001954
1955 for (TemplateArgument::pack_iterator XP = X.pack_begin(),
1956 XPEnd = X.pack_end(),
Douglas Gregorf670c8c2009-06-26 20:57:09 +00001957 YP = Y.pack_begin();
Mike Stump1eb44332009-09-09 15:08:12 +00001958 XP != XPEnd; ++XP, ++YP)
Douglas Gregorf670c8c2009-06-26 20:57:09 +00001959 if (!isSameTemplateArg(Context, *XP, *YP))
1960 return false;
1961
1962 return true;
1963 }
1964
David Blaikie30263482012-01-20 21:50:17 +00001965 llvm_unreachable("Invalid TemplateArgument Kind!");
Douglas Gregorf670c8c2009-06-26 20:57:09 +00001966}
1967
Douglas Gregor54c53cc2011-01-04 23:35:54 +00001968/// \brief Allocate a TemplateArgumentLoc where all locations have
1969/// been initialized to the given location.
1970///
1971/// \param S The semantic analysis object.
1972///
James Dennett1dfbd922012-06-14 21:40:34 +00001973/// \param Arg The template argument we are producing template argument
Douglas Gregor54c53cc2011-01-04 23:35:54 +00001974/// location information for.
1975///
1976/// \param NTTPType For a declaration template argument, the type of
1977/// the non-type template parameter that corresponds to this template
1978/// argument.
1979///
1980/// \param Loc The source location to use for the resulting template
1981/// argument.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001982static TemplateArgumentLoc
Douglas Gregor54c53cc2011-01-04 23:35:54 +00001983getTrivialTemplateArgumentLoc(Sema &S,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001984 const TemplateArgument &Arg,
Douglas Gregor54c53cc2011-01-04 23:35:54 +00001985 QualType NTTPType,
1986 SourceLocation Loc) {
1987 switch (Arg.getKind()) {
1988 case TemplateArgument::Null:
1989 llvm_unreachable("Can't get a NULL template argument here");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001990
Douglas Gregor54c53cc2011-01-04 23:35:54 +00001991 case TemplateArgument::Type:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001992 return TemplateArgumentLoc(Arg,
Douglas Gregor54c53cc2011-01-04 23:35:54 +00001993 S.Context.getTrivialTypeSourceInfo(Arg.getAsType(), Loc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001994
Douglas Gregor54c53cc2011-01-04 23:35:54 +00001995 case TemplateArgument::Declaration: {
1996 Expr *E
Douglas Gregorba68eca2011-01-05 17:40:24 +00001997 = S.BuildExpressionFromDeclTemplateArgument(Arg, NTTPType, Loc)
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001998 .getAs<Expr>();
Douglas Gregor54c53cc2011-01-04 23:35:54 +00001999 return TemplateArgumentLoc(TemplateArgument(E), E);
2000 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002001
Eli Friedmand7a6b162012-09-26 02:36:12 +00002002 case TemplateArgument::NullPtr: {
2003 Expr *E
2004 = S.BuildExpressionFromDeclTemplateArgument(Arg, NTTPType, Loc)
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002005 .getAs<Expr>();
Eli Friedmand7a6b162012-09-26 02:36:12 +00002006 return TemplateArgumentLoc(TemplateArgument(NTTPType, /*isNullPtr*/true),
2007 E);
2008 }
2009
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002010 case TemplateArgument::Integral: {
2011 Expr *E
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002012 = S.BuildExpressionFromIntegralTemplateArgument(Arg, Loc).getAs<Expr>();
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002013 return TemplateArgumentLoc(TemplateArgument(E), E);
2014 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002015
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002016 case TemplateArgument::Template:
2017 case TemplateArgument::TemplateExpansion: {
2018 NestedNameSpecifierLocBuilder Builder;
2019 TemplateName Template = Arg.getAsTemplate();
2020 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName())
2021 Builder.MakeTrivial(S.Context, DTN->getQualifier(), Loc);
Stephen Hines176edba2014-12-01 14:53:08 -08002022 else if (QualifiedTemplateName *QTN =
2023 Template.getAsQualifiedTemplateName())
Douglas Gregorb6744ef2011-03-02 17:09:35 +00002024 Builder.MakeTrivial(S.Context, QTN->getQualifier(), Loc);
2025
2026 if (Arg.getKind() == TemplateArgument::Template)
2027 return TemplateArgumentLoc(Arg,
2028 Builder.getWithLocInContext(S.Context),
2029 Loc);
2030
2031
2032 return TemplateArgumentLoc(Arg, Builder.getWithLocInContext(S.Context),
2033 Loc, Loc);
2034 }
Douglas Gregora7fc9012011-01-05 18:58:31 +00002035
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002036 case TemplateArgument::Expression:
2037 return TemplateArgumentLoc(Arg, Arg.getAsExpr());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002038
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002039 case TemplateArgument::Pack:
2040 return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo());
2041 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002042
David Blaikie30263482012-01-20 21:50:17 +00002043 llvm_unreachable("Invalid TemplateArgument Kind!");
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002044}
2045
2046
2047/// \brief Convert the given deduced template argument and add it to the set of
2048/// fully-converted template arguments.
Craig Topper1310aac2013-07-08 04:13:06 +00002049static bool
2050ConvertDeducedTemplateArgument(Sema &S, NamedDecl *Param,
2051 DeducedTemplateArgument Arg,
2052 NamedDecl *Template,
2053 QualType NTTPType,
2054 unsigned ArgumentPackIndex,
2055 TemplateDeductionInfo &Info,
2056 bool InFunctionTemplate,
2057 SmallVectorImpl<TemplateArgument> &Output) {
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002058 if (Arg.getKind() == TemplateArgument::Pack) {
2059 // This is a template argument pack, so check each of its arguments against
2060 // the template parameter.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002061 SmallVector<TemplateArgument, 2> PackedArgsBuilder;
Stephen Hines176edba2014-12-01 14:53:08 -08002062 for (const auto &P : Arg.pack_elements()) {
Douglas Gregord53e16a2011-01-05 20:52:18 +00002063 // When converting the deduced template argument, append it to the
2064 // general output list. We need to do this so that the template argument
2065 // checking logic has all of the prior template arguments available.
Stephen Hines176edba2014-12-01 14:53:08 -08002066 DeducedTemplateArgument InnerArg(P);
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002067 InnerArg.setDeducedFromArrayBound(Arg.wasDeducedFromArrayBound());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002068 if (ConvertDeducedTemplateArgument(S, Param, InnerArg, Template,
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002069 NTTPType, PackedArgsBuilder.size(),
2070 Info, InFunctionTemplate, Output))
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002071 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002072
Douglas Gregord53e16a2011-01-05 20:52:18 +00002073 // Move the converted template argument into our argument pack.
Robert Wilhelm344472e2013-08-23 16:11:15 +00002074 PackedArgsBuilder.push_back(Output.pop_back_val());
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002075 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002076
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002077 // Create the resulting argument pack.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002078 Output.push_back(TemplateArgument::CreatePackCopy(S.Context,
Douglas Gregor203e6a32011-01-11 23:09:57 +00002079 PackedArgsBuilder.data(),
2080 PackedArgsBuilder.size()));
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002081 return false;
2082 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002083
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002084 // Convert the deduced template argument into a template
2085 // argument that we can check, almost as if the user had written
2086 // the template argument explicitly.
2087 TemplateArgumentLoc ArgLoc = getTrivialTemplateArgumentLoc(S, Arg, NTTPType,
2088 Info.getLocation());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002089
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002090 // Check the template argument, converting it as necessary.
2091 return S.CheckTemplateArgument(Param, ArgLoc,
2092 Template,
2093 Template->getLocation(),
2094 Template->getSourceRange().getEnd(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002095 ArgumentPackIndex,
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002096 Output,
2097 InFunctionTemplate
2098 ? (Arg.wasDeducedFromArrayBound()
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002099 ? Sema::CTAK_DeducedFromArrayBound
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002100 : Sema::CTAK_Deduced)
2101 : Sema::CTAK_Specified);
2102}
2103
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002104/// Complete template argument deduction for a class template partial
2105/// specialization.
2106static Sema::TemplateDeductionResult
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002107FinishTemplateArgumentDeduction(Sema &S,
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002108 ClassTemplatePartialSpecializationDecl *Partial,
2109 const TemplateArgumentList &TemplateArgs,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002110 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
John McCall2a7fb272010-08-25 05:32:35 +00002111 TemplateDeductionInfo &Info) {
Eli Friedman59a839c2012-02-08 03:07:05 +00002112 // Unevaluated SFINAE context.
2113 EnterExpressionEvaluationContext Unevaluated(S, Sema::Unevaluated);
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002114 Sema::SFINAETrap Trap(S);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002115
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002116 Sema::ContextRAII SavedContext(S, Partial);
2117
2118 // C++ [temp.deduct.type]p2:
2119 // [...] or if any template argument remains neither deduced nor
2120 // explicitly specified, template argument deduction fails.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002121 SmallVector<TemplateArgument, 4> Builder;
Douglas Gregor033a3ca2011-01-04 22:23:38 +00002122 TemplateParameterList *PartialParams = Partial->getTemplateParameters();
2123 for (unsigned I = 0, N = PartialParams->size(); I != N; ++I) {
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002124 NamedDecl *Param = PartialParams->getParam(I);
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002125 if (Deduced[I].isNull()) {
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002126 Info.Param = makeTemplateParameter(Param);
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002127 return Sema::TDK_Incomplete;
2128 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002129
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002130 // We have deduced this argument, so it still needs to be
2131 // checked and converted.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002132
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002133 // First, for a non-type template parameter type that is
2134 // initialized by a declaration, we need the type of the
2135 // corresponding non-type template parameter.
2136 QualType NTTPType;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002137 if (NonTypeTemplateParmDecl *NTTP
Douglas Gregord53e16a2011-01-05 20:52:18 +00002138 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002139 NTTPType = NTTP->getType();
Douglas Gregord53e16a2011-01-05 20:52:18 +00002140 if (NTTPType->isDependentType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002141 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregord53e16a2011-01-05 20:52:18 +00002142 Builder.data(), Builder.size());
2143 NTTPType = S.SubstType(NTTPType,
2144 MultiLevelTemplateArgumentList(TemplateArgs),
2145 NTTP->getLocation(),
2146 NTTP->getDeclName());
2147 if (NTTPType.isNull()) {
2148 Info.Param = makeTemplateParameter(Param);
2149 // FIXME: These template arguments are temporary. Free them!
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002150 Info.reset(TemplateArgumentList::CreateCopy(S.Context,
2151 Builder.data(),
Douglas Gregord53e16a2011-01-05 20:52:18 +00002152 Builder.size()));
2153 return Sema::TDK_SubstitutionFailure;
2154 }
2155 }
2156 }
2157
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002158 if (ConvertDeducedTemplateArgument(S, Param, Deduced[I],
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002159 Partial, NTTPType, 0, Info, false,
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002160 Builder)) {
2161 Info.Param = makeTemplateParameter(Param);
2162 // FIXME: These template arguments are temporary. Free them!
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002163 Info.reset(TemplateArgumentList::CreateCopy(S.Context, Builder.data(),
2164 Builder.size()));
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002165 return Sema::TDK_SubstitutionFailure;
2166 }
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002167 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002168
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002169 // Form the template argument list from the deduced template arguments.
2170 TemplateArgumentList *DeducedArgumentList
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002171 = TemplateArgumentList::CreateCopy(S.Context, Builder.data(),
Douglas Gregor910f8002010-11-07 23:05:16 +00002172 Builder.size());
2173
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002174 Info.reset(DeducedArgumentList);
2175
2176 // Substitute the deduced template arguments into the template
2177 // arguments of the class template partial specialization, and
2178 // verify that the instantiated template arguments are both valid
2179 // and are equivalent to the template arguments originally provided
2180 // to the class template.
John McCall2a7fb272010-08-25 05:32:35 +00002181 LocalInstantiationScope InstScope(S);
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002182 ClassTemplateDecl *ClassTemplate = Partial->getSpecializedTemplate();
Enea Zaffanellac1cef082013-08-10 07:24:53 +00002183 const ASTTemplateArgumentListInfo *PartialTemplArgInfo
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002184 = Partial->getTemplateArgsAsWritten();
Enea Zaffanellac1cef082013-08-10 07:24:53 +00002185 const TemplateArgumentLoc *PartialTemplateArgs
2186 = PartialTemplArgInfo->getTemplateArgs();
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002187
Enea Zaffanellac1cef082013-08-10 07:24:53 +00002188 TemplateArgumentListInfo InstArgs(PartialTemplArgInfo->LAngleLoc,
2189 PartialTemplArgInfo->RAngleLoc);
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002190
Enea Zaffanellac1cef082013-08-10 07:24:53 +00002191 if (S.Subst(PartialTemplateArgs, PartialTemplArgInfo->NumTemplateArgs,
Douglas Gregore02e2622010-12-22 21:19:48 +00002192 InstArgs, MultiLevelTemplateArgumentList(*DeducedArgumentList))) {
2193 unsigned ArgIdx = InstArgs.size(), ParamIdx = ArgIdx;
2194 if (ParamIdx >= Partial->getTemplateParameters()->size())
2195 ParamIdx = Partial->getTemplateParameters()->size() - 1;
2196
2197 Decl *Param
2198 = const_cast<NamedDecl *>(
2199 Partial->getTemplateParameters()->getParam(ParamIdx));
2200 Info.Param = makeTemplateParameter(Param);
2201 Info.FirstArg = PartialTemplateArgs[ArgIdx].getArgument();
2202 return Sema::TDK_SubstitutionFailure;
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002203 }
2204
Chris Lattner5f9e2722011-07-23 10:55:15 +00002205 SmallVector<TemplateArgument, 4> ConvertedInstArgs;
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002206 if (S.CheckTemplateArgumentList(ClassTemplate, Partial->getLocation(),
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002207 InstArgs, false, ConvertedInstArgs))
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002208 return Sema::TDK_SubstitutionFailure;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002209
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002210 TemplateParameterList *TemplateParams
2211 = ClassTemplate->getTemplateParameters();
2212 for (unsigned I = 0, E = TemplateParams->size(); I != E; ++I) {
Douglas Gregor910f8002010-11-07 23:05:16 +00002213 TemplateArgument InstArg = ConvertedInstArgs.data()[I];
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002214 if (!isSameTemplateArg(S.Context, TemplateArgs[I], InstArg)) {
Douglas Gregor2fdc5e82011-01-05 00:13:17 +00002215 Info.Param = makeTemplateParameter(TemplateParams->getParam(I));
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002216 Info.FirstArg = TemplateArgs[I];
2217 Info.SecondArg = InstArg;
2218 return Sema::TDK_NonDeducedMismatch;
2219 }
2220 }
2221
2222 if (Trap.hasErrorOccurred())
2223 return Sema::TDK_SubstitutionFailure;
2224
2225 return Sema::TDK_Success;
2226}
2227
Douglas Gregorc1efb3f2009-06-12 22:31:52 +00002228/// \brief Perform template argument deduction to determine whether
Larisse Voufo25218132013-08-06 07:33:00 +00002229/// the given template arguments match the given class template
Douglas Gregorc1efb3f2009-06-12 22:31:52 +00002230/// partial specialization per C++ [temp.class.spec.match].
Douglas Gregorf67875d2009-06-12 18:26:56 +00002231Sema::TemplateDeductionResult
Douglas Gregor0b9247f2009-06-04 00:03:07 +00002232Sema::DeduceTemplateArguments(ClassTemplatePartialSpecializationDecl *Partial,
Douglas Gregorf67875d2009-06-12 18:26:56 +00002233 const TemplateArgumentList &TemplateArgs,
2234 TemplateDeductionInfo &Info) {
Douglas Gregorae19fbb2012-09-13 21:01:57 +00002235 if (Partial->isInvalidDecl())
2236 return TDK_Invalid;
2237
Douglas Gregorc1efb3f2009-06-12 22:31:52 +00002238 // C++ [temp.class.spec.match]p2:
2239 // A partial specialization matches a given actual template
2240 // argument list if the template arguments of the partial
2241 // specialization can be deduced from the actual template argument
2242 // list (14.8.2).
Eli Friedman59a839c2012-02-08 03:07:05 +00002243
2244 // Unevaluated SFINAE context.
2245 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Douglas Gregorbb260412009-06-14 08:02:22 +00002246 SFINAETrap Trap(*this);
Eli Friedman59a839c2012-02-08 03:07:05 +00002247
Chris Lattner5f9e2722011-07-23 10:55:15 +00002248 SmallVector<DeducedTemplateArgument, 4> Deduced;
Douglas Gregor0b9247f2009-06-04 00:03:07 +00002249 Deduced.resize(Partial->getTemplateParameters()->size());
Douglas Gregorf67875d2009-06-12 18:26:56 +00002250 if (TemplateDeductionResult Result
Chandler Carrutha7ef1302010-02-07 21:33:28 +00002251 = ::DeduceTemplateArguments(*this,
Douglas Gregorf67875d2009-06-12 18:26:56 +00002252 Partial->getTemplateParameters(),
Mike Stump1eb44332009-09-09 15:08:12 +00002253 Partial->getTemplateArgs(),
Douglas Gregorf67875d2009-06-12 18:26:56 +00002254 TemplateArgs, Info, Deduced))
2255 return Result;
Douglas Gregor637a4092009-06-10 23:47:09 +00002256
Richard Smith7e54fb52012-07-16 01:09:10 +00002257 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end());
Stephen Hines651f13c2014-04-23 16:59:28 -07002258 InstantiatingTemplate Inst(*this, Info.getLocation(), Partial, DeducedArgs,
2259 Info);
Alp Tokerd69f37b2013-10-08 08:09:04 +00002260 if (Inst.isInvalid())
Douglas Gregorf67875d2009-06-12 18:26:56 +00002261 return TDK_InstantiationDepth;
Douglas Gregor199d9912009-06-05 00:53:49 +00002262
Douglas Gregorbb260412009-06-14 08:02:22 +00002263 if (Trap.hasErrorOccurred())
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002264 return Sema::TDK_SubstitutionFailure;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002265
2266 return ::FinishTemplateArgumentDeduction(*this, Partial, TemplateArgs,
Douglas Gregor31dce8f2010-04-29 06:21:43 +00002267 Deduced, Info);
Douglas Gregor0b9247f2009-06-04 00:03:07 +00002268}
Douglas Gregor031a5882009-06-13 00:26:55 +00002269
Larisse Voufoef4579c2013-08-06 01:03:05 +00002270/// Complete template argument deduction for a variable template partial
2271/// specialization.
Larisse Voufo8d2a5ea2013-08-23 22:21:36 +00002272/// TODO: Unify with ClassTemplatePartialSpecializationDecl version?
2273/// May require unifying ClassTemplate(Partial)SpecializationDecl and
2274/// VarTemplate(Partial)SpecializationDecl with a new data
2275/// structure Template(Partial)SpecializationDecl, and
2276/// using Template(Partial)SpecializationDecl as input type.
Larisse Voufoef4579c2013-08-06 01:03:05 +00002277static Sema::TemplateDeductionResult FinishTemplateArgumentDeduction(
2278 Sema &S, VarTemplatePartialSpecializationDecl *Partial,
2279 const TemplateArgumentList &TemplateArgs,
2280 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
2281 TemplateDeductionInfo &Info) {
2282 // Unevaluated SFINAE context.
2283 EnterExpressionEvaluationContext Unevaluated(S, Sema::Unevaluated);
2284 Sema::SFINAETrap Trap(S);
2285
2286 // C++ [temp.deduct.type]p2:
2287 // [...] or if any template argument remains neither deduced nor
2288 // explicitly specified, template argument deduction fails.
2289 SmallVector<TemplateArgument, 4> Builder;
2290 TemplateParameterList *PartialParams = Partial->getTemplateParameters();
2291 for (unsigned I = 0, N = PartialParams->size(); I != N; ++I) {
2292 NamedDecl *Param = PartialParams->getParam(I);
2293 if (Deduced[I].isNull()) {
2294 Info.Param = makeTemplateParameter(Param);
2295 return Sema::TDK_Incomplete;
2296 }
2297
2298 // We have deduced this argument, so it still needs to be
2299 // checked and converted.
2300
2301 // First, for a non-type template parameter type that is
2302 // initialized by a declaration, we need the type of the
2303 // corresponding non-type template parameter.
2304 QualType NTTPType;
2305 if (NonTypeTemplateParmDecl *NTTP =
2306 dyn_cast<NonTypeTemplateParmDecl>(Param)) {
2307 NTTPType = NTTP->getType();
2308 if (NTTPType->isDependentType()) {
2309 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
2310 Builder.data(), Builder.size());
2311 NTTPType =
2312 S.SubstType(NTTPType, MultiLevelTemplateArgumentList(TemplateArgs),
2313 NTTP->getLocation(), NTTP->getDeclName());
2314 if (NTTPType.isNull()) {
2315 Info.Param = makeTemplateParameter(Param);
2316 // FIXME: These template arguments are temporary. Free them!
2317 Info.reset(TemplateArgumentList::CreateCopy(S.Context, Builder.data(),
2318 Builder.size()));
2319 return Sema::TDK_SubstitutionFailure;
2320 }
2321 }
2322 }
2323
2324 if (ConvertDeducedTemplateArgument(S, Param, Deduced[I], Partial, NTTPType,
2325 0, Info, false, Builder)) {
2326 Info.Param = makeTemplateParameter(Param);
2327 // FIXME: These template arguments are temporary. Free them!
2328 Info.reset(TemplateArgumentList::CreateCopy(S.Context, Builder.data(),
2329 Builder.size()));
2330 return Sema::TDK_SubstitutionFailure;
2331 }
2332 }
2333
2334 // Form the template argument list from the deduced template arguments.
2335 TemplateArgumentList *DeducedArgumentList = TemplateArgumentList::CreateCopy(
2336 S.Context, Builder.data(), Builder.size());
2337
2338 Info.reset(DeducedArgumentList);
2339
2340 // Substitute the deduced template arguments into the template
2341 // arguments of the class template partial specialization, and
2342 // verify that the instantiated template arguments are both valid
2343 // and are equivalent to the template arguments originally provided
2344 // to the class template.
2345 LocalInstantiationScope InstScope(S);
2346 VarTemplateDecl *VarTemplate = Partial->getSpecializedTemplate();
Enea Zaffanellac1cef082013-08-10 07:24:53 +00002347 const ASTTemplateArgumentListInfo *PartialTemplArgInfo
2348 = Partial->getTemplateArgsAsWritten();
2349 const TemplateArgumentLoc *PartialTemplateArgs
2350 = PartialTemplArgInfo->getTemplateArgs();
Larisse Voufoef4579c2013-08-06 01:03:05 +00002351
Enea Zaffanellac1cef082013-08-10 07:24:53 +00002352 TemplateArgumentListInfo InstArgs(PartialTemplArgInfo->LAngleLoc,
2353 PartialTemplArgInfo->RAngleLoc);
Larisse Voufoef4579c2013-08-06 01:03:05 +00002354
Enea Zaffanellac1cef082013-08-10 07:24:53 +00002355 if (S.Subst(PartialTemplateArgs, PartialTemplArgInfo->NumTemplateArgs,
Larisse Voufoef4579c2013-08-06 01:03:05 +00002356 InstArgs, MultiLevelTemplateArgumentList(*DeducedArgumentList))) {
2357 unsigned ArgIdx = InstArgs.size(), ParamIdx = ArgIdx;
2358 if (ParamIdx >= Partial->getTemplateParameters()->size())
2359 ParamIdx = Partial->getTemplateParameters()->size() - 1;
2360
2361 Decl *Param = const_cast<NamedDecl *>(
2362 Partial->getTemplateParameters()->getParam(ParamIdx));
2363 Info.Param = makeTemplateParameter(Param);
2364 Info.FirstArg = PartialTemplateArgs[ArgIdx].getArgument();
2365 return Sema::TDK_SubstitutionFailure;
2366 }
2367 SmallVector<TemplateArgument, 4> ConvertedInstArgs;
2368 if (S.CheckTemplateArgumentList(VarTemplate, Partial->getLocation(), InstArgs,
2369 false, ConvertedInstArgs))
2370 return Sema::TDK_SubstitutionFailure;
2371
2372 TemplateParameterList *TemplateParams = VarTemplate->getTemplateParameters();
2373 for (unsigned I = 0, E = TemplateParams->size(); I != E; ++I) {
2374 TemplateArgument InstArg = ConvertedInstArgs.data()[I];
2375 if (!isSameTemplateArg(S.Context, TemplateArgs[I], InstArg)) {
2376 Info.Param = makeTemplateParameter(TemplateParams->getParam(I));
2377 Info.FirstArg = TemplateArgs[I];
2378 Info.SecondArg = InstArg;
2379 return Sema::TDK_NonDeducedMismatch;
2380 }
2381 }
2382
2383 if (Trap.hasErrorOccurred())
2384 return Sema::TDK_SubstitutionFailure;
2385
2386 return Sema::TDK_Success;
2387}
2388
2389/// \brief Perform template argument deduction to determine whether
2390/// the given template arguments match the given variable template
2391/// partial specialization per C++ [temp.class.spec.match].
Larisse Voufo8d2a5ea2013-08-23 22:21:36 +00002392/// TODO: Unify with ClassTemplatePartialSpecializationDecl version?
2393/// May require unifying ClassTemplate(Partial)SpecializationDecl and
2394/// VarTemplate(Partial)SpecializationDecl with a new data
2395/// structure Template(Partial)SpecializationDecl, and
2396/// using Template(Partial)SpecializationDecl as input type.
Larisse Voufoef4579c2013-08-06 01:03:05 +00002397Sema::TemplateDeductionResult
2398Sema::DeduceTemplateArguments(VarTemplatePartialSpecializationDecl *Partial,
2399 const TemplateArgumentList &TemplateArgs,
2400 TemplateDeductionInfo &Info) {
2401 if (Partial->isInvalidDecl())
2402 return TDK_Invalid;
2403
2404 // C++ [temp.class.spec.match]p2:
2405 // A partial specialization matches a given actual template
2406 // argument list if the template arguments of the partial
2407 // specialization can be deduced from the actual template argument
2408 // list (14.8.2).
2409
2410 // Unevaluated SFINAE context.
2411 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
2412 SFINAETrap Trap(*this);
2413
2414 SmallVector<DeducedTemplateArgument, 4> Deduced;
2415 Deduced.resize(Partial->getTemplateParameters()->size());
2416 if (TemplateDeductionResult Result = ::DeduceTemplateArguments(
2417 *this, Partial->getTemplateParameters(), Partial->getTemplateArgs(),
2418 TemplateArgs, Info, Deduced))
2419 return Result;
2420
2421 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end());
Stephen Hines651f13c2014-04-23 16:59:28 -07002422 InstantiatingTemplate Inst(*this, Info.getLocation(), Partial, DeducedArgs,
2423 Info);
Alp Tokerd69f37b2013-10-08 08:09:04 +00002424 if (Inst.isInvalid())
Larisse Voufoef4579c2013-08-06 01:03:05 +00002425 return TDK_InstantiationDepth;
2426
2427 if (Trap.hasErrorOccurred())
2428 return Sema::TDK_SubstitutionFailure;
2429
2430 return ::FinishTemplateArgumentDeduction(*this, Partial, TemplateArgs,
2431 Deduced, Info);
2432}
2433
Douglas Gregor41128772009-06-26 23:27:24 +00002434/// \brief Determine whether the given type T is a simple-template-id type.
2435static bool isSimpleTemplateIdType(QualType T) {
Mike Stump1eb44332009-09-09 15:08:12 +00002436 if (const TemplateSpecializationType *Spec
John McCall183700f2009-09-21 23:43:11 +00002437 = T->getAs<TemplateSpecializationType>())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002438 return Spec->getTemplateName().getAsTemplateDecl() != nullptr;
Mike Stump1eb44332009-09-09 15:08:12 +00002439
Douglas Gregor41128772009-06-26 23:27:24 +00002440 return false;
2441}
Douglas Gregor83314aa2009-07-08 20:55:45 +00002442
2443/// \brief Substitute the explicitly-provided template arguments into the
2444/// given function template according to C++ [temp.arg.explicit].
2445///
2446/// \param FunctionTemplate the function template into which the explicit
2447/// template arguments will be substituted.
2448///
James Dennett1dfbd922012-06-14 21:40:34 +00002449/// \param ExplicitTemplateArgs the explicitly-specified template
Douglas Gregor83314aa2009-07-08 20:55:45 +00002450/// arguments.
2451///
Mike Stump1eb44332009-09-09 15:08:12 +00002452/// \param Deduced the deduced template arguments, which will be populated
Douglas Gregor83314aa2009-07-08 20:55:45 +00002453/// with the converted and checked explicit template arguments.
2454///
Mike Stump1eb44332009-09-09 15:08:12 +00002455/// \param ParamTypes will be populated with the instantiated function
Douglas Gregor83314aa2009-07-08 20:55:45 +00002456/// parameters.
2457///
2458/// \param FunctionType if non-NULL, the result type of the function template
2459/// will also be instantiated and the pointed-to value will be updated with
2460/// the instantiated function type.
2461///
2462/// \param Info if substitution fails for any reason, this object will be
2463/// populated with more information about the failure.
2464///
2465/// \returns TDK_Success if substitution was successful, or some failure
2466/// condition.
2467Sema::TemplateDeductionResult
2468Sema::SubstituteExplicitTemplateArguments(
2469 FunctionTemplateDecl *FunctionTemplate,
Douglas Gregor67714232011-03-03 02:41:12 +00002470 TemplateArgumentListInfo &ExplicitTemplateArgs,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002471 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
2472 SmallVectorImpl<QualType> &ParamTypes,
Douglas Gregor83314aa2009-07-08 20:55:45 +00002473 QualType *FunctionType,
2474 TemplateDeductionInfo &Info) {
2475 FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
2476 TemplateParameterList *TemplateParams
2477 = FunctionTemplate->getTemplateParameters();
2478
John McCalld5532b62009-11-23 01:53:49 +00002479 if (ExplicitTemplateArgs.size() == 0) {
Douglas Gregor83314aa2009-07-08 20:55:45 +00002480 // No arguments to substitute; just copy over the parameter types and
2481 // fill in the function type.
Stephen Hines651f13c2014-04-23 16:59:28 -07002482 for (auto P : Function->params())
2483 ParamTypes.push_back(P->getType());
Mike Stump1eb44332009-09-09 15:08:12 +00002484
Douglas Gregor83314aa2009-07-08 20:55:45 +00002485 if (FunctionType)
2486 *FunctionType = Function->getType();
2487 return TDK_Success;
2488 }
Mike Stump1eb44332009-09-09 15:08:12 +00002489
Eli Friedman59a839c2012-02-08 03:07:05 +00002490 // Unevaluated SFINAE context.
2491 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +00002492 SFINAETrap Trap(*this);
2493
Douglas Gregor83314aa2009-07-08 20:55:45 +00002494 // C++ [temp.arg.explicit]p3:
Mike Stump1eb44332009-09-09 15:08:12 +00002495 // Template arguments that are present shall be specified in the
2496 // declaration order of their corresponding template-parameters. The
Douglas Gregor83314aa2009-07-08 20:55:45 +00002497 // template argument list shall not specify more template-arguments than
Mike Stump1eb44332009-09-09 15:08:12 +00002498 // there are corresponding template-parameters.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002499 SmallVector<TemplateArgument, 4> Builder;
Mike Stump1eb44332009-09-09 15:08:12 +00002500
2501 // Enter a new template instantiation context where we check the
Douglas Gregor83314aa2009-07-08 20:55:45 +00002502 // explicitly-specified template arguments against this function template,
2503 // and then substitute them into the function parameter types.
Richard Smith7e54fb52012-07-16 01:09:10 +00002504 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end());
Stephen Hines651f13c2014-04-23 16:59:28 -07002505 InstantiatingTemplate Inst(*this, Info.getLocation(), FunctionTemplate,
2506 DeducedArgs,
Douglas Gregor9b623632010-10-12 23:32:35 +00002507 ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution,
2508 Info);
Alp Tokerd69f37b2013-10-08 08:09:04 +00002509 if (Inst.isInvalid())
Douglas Gregor83314aa2009-07-08 20:55:45 +00002510 return TDK_InstantiationDepth;
Mike Stump1eb44332009-09-09 15:08:12 +00002511
Douglas Gregor83314aa2009-07-08 20:55:45 +00002512 if (CheckTemplateArgumentList(FunctionTemplate,
Douglas Gregor83314aa2009-07-08 20:55:45 +00002513 SourceLocation(),
John McCalld5532b62009-11-23 01:53:49 +00002514 ExplicitTemplateArgs,
Douglas Gregor83314aa2009-07-08 20:55:45 +00002515 true,
Douglas Gregorf1a84452010-05-08 19:15:54 +00002516 Builder) || Trap.hasErrorOccurred()) {
Douglas Gregor910f8002010-11-07 23:05:16 +00002517 unsigned Index = Builder.size();
Douglas Gregorfe52c912010-05-09 01:26:06 +00002518 if (Index >= TemplateParams->size())
2519 Index = TemplateParams->size() - 1;
2520 Info.Param = makeTemplateParameter(TemplateParams->getParam(Index));
Douglas Gregor83314aa2009-07-08 20:55:45 +00002521 return TDK_InvalidExplicitArguments;
Douglas Gregorf1a84452010-05-08 19:15:54 +00002522 }
Mike Stump1eb44332009-09-09 15:08:12 +00002523
Douglas Gregor83314aa2009-07-08 20:55:45 +00002524 // Form the template argument list from the explicitly-specified
2525 // template arguments.
Mike Stump1eb44332009-09-09 15:08:12 +00002526 TemplateArgumentList *ExplicitArgumentList
Douglas Gregor910f8002010-11-07 23:05:16 +00002527 = TemplateArgumentList::CreateCopy(Context, Builder.data(), Builder.size());
Douglas Gregor83314aa2009-07-08 20:55:45 +00002528 Info.reset(ExplicitArgumentList);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002529
John McCalldf41f182010-10-12 19:40:14 +00002530 // Template argument deduction and the final substitution should be
2531 // done in the context of the templated declaration. Explicit
2532 // argument substitution, on the other hand, needs to happen in the
2533 // calling context.
2534 ContextRAII SavedContext(*this, FunctionTemplate->getTemplatedDecl());
2535
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002536 // If we deduced template arguments for a template parameter pack,
Douglas Gregord3731192011-01-10 07:32:04 +00002537 // note that the template argument pack is partially substituted and record
2538 // the explicit template arguments. They'll be used as part of deduction
2539 // for this template parameter pack.
Douglas Gregord3731192011-01-10 07:32:04 +00002540 for (unsigned I = 0, N = Builder.size(); I != N; ++I) {
2541 const TemplateArgument &Arg = Builder[I];
2542 if (Arg.getKind() == TemplateArgument::Pack) {
Douglas Gregord3731192011-01-10 07:32:04 +00002543 CurrentInstantiationScope->SetPartiallySubstitutedPack(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002544 TemplateParams->getParam(I),
Douglas Gregord3731192011-01-10 07:32:04 +00002545 Arg.pack_begin(),
2546 Arg.pack_size());
2547 break;
2548 }
2549 }
2550
Richard Smitheefb3d52012-02-10 09:58:53 +00002551 const FunctionProtoType *Proto
2552 = Function->getType()->getAs<FunctionProtoType>();
2553 assert(Proto && "Function template does not have a prototype?");
2554
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002555 // Isolate our substituted parameters from our caller.
2556 LocalInstantiationScope InstScope(*this, /*MergeWithOuterScope*/true);
2557
Douglas Gregor83314aa2009-07-08 20:55:45 +00002558 // Instantiate the types of each of the function parameters given the
Richard Smitheefb3d52012-02-10 09:58:53 +00002559 // explicitly-specified template arguments. If the function has a trailing
2560 // return type, substitute it after the arguments to ensure we substitute
2561 // in lexical order.
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002562 if (Proto->hasTrailingReturn()) {
2563 if (SubstParmTypes(Function->getLocation(),
2564 Function->param_begin(), Function->getNumParams(),
2565 MultiLevelTemplateArgumentList(*ExplicitArgumentList),
2566 ParamTypes))
2567 return TDK_SubstitutionFailure;
2568 }
2569
Richard Smitheefb3d52012-02-10 09:58:53 +00002570 // Instantiate the return type.
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002571 QualType ResultType;
2572 {
2573 // C++11 [expr.prim.general]p3:
2574 // If a declaration declares a member function or member function
2575 // template of a class X, the expression this is a prvalue of type
2576 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
2577 // and the end of the function-definition, member-declarator, or
2578 // declarator.
2579 unsigned ThisTypeQuals = 0;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002580 CXXRecordDecl *ThisContext = nullptr;
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002581 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Function)) {
2582 ThisContext = Method->getParent();
2583 ThisTypeQuals = Method->getTypeQualifiers();
2584 }
2585
2586 CXXThisScopeRAII ThisScope(*this, ThisContext, ThisTypeQuals,
Richard Smith80ad52f2013-01-02 11:42:31 +00002587 getLangOpts().CPlusPlus11);
Stephen Hines651f13c2014-04-23 16:59:28 -07002588
2589 ResultType =
2590 SubstType(Proto->getReturnType(),
2591 MultiLevelTemplateArgumentList(*ExplicitArgumentList),
2592 Function->getTypeSpecStartLoc(), Function->getDeclName());
Douglas Gregorcefc3af2012-04-16 07:05:22 +00002593 if (ResultType.isNull() || Trap.hasErrorOccurred())
2594 return TDK_SubstitutionFailure;
2595 }
2596
Richard Smitheefb3d52012-02-10 09:58:53 +00002597 // Instantiate the types of each of the function parameters given the
2598 // explicitly-specified template arguments if we didn't do so earlier.
2599 if (!Proto->hasTrailingReturn() &&
2600 SubstParmTypes(Function->getLocation(),
2601 Function->param_begin(), Function->getNumParams(),
2602 MultiLevelTemplateArgumentList(*ExplicitArgumentList),
2603 ParamTypes))
2604 return TDK_SubstitutionFailure;
2605
Douglas Gregor83314aa2009-07-08 20:55:45 +00002606 if (FunctionType) {
Jordan Rosebea522f2013-03-08 21:51:21 +00002607 *FunctionType = BuildFunctionType(ResultType, ParamTypes,
Douglas Gregor83314aa2009-07-08 20:55:45 +00002608 Function->getLocation(),
Eli Friedmanfa869542010-08-05 02:54:05 +00002609 Function->getDeclName(),
Jordan Rose09189892013-03-08 22:25:36 +00002610 Proto->getExtProtoInfo());
Douglas Gregor83314aa2009-07-08 20:55:45 +00002611 if (FunctionType->isNull() || Trap.hasErrorOccurred())
2612 return TDK_SubstitutionFailure;
2613 }
Mike Stump1eb44332009-09-09 15:08:12 +00002614
Douglas Gregor83314aa2009-07-08 20:55:45 +00002615 // C++ [temp.arg.explicit]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00002616 // Trailing template arguments that can be deduced (14.8.2) may be
2617 // omitted from the list of explicit template-arguments. If all of the
Douglas Gregor83314aa2009-07-08 20:55:45 +00002618 // template arguments can be deduced, they may all be omitted; in this
2619 // case, the empty template argument list <> itself may also be omitted.
2620 //
Douglas Gregord3731192011-01-10 07:32:04 +00002621 // Take all of the explicitly-specified arguments and put them into
2622 // the set of deduced template arguments. Explicitly-specified
2623 // parameter packs, however, will be set to NULL since the deduction
2624 // mechanisms handle explicitly-specified argument packs directly.
Douglas Gregor83314aa2009-07-08 20:55:45 +00002625 Deduced.reserve(TemplateParams->size());
Douglas Gregord3731192011-01-10 07:32:04 +00002626 for (unsigned I = 0, N = ExplicitArgumentList->size(); I != N; ++I) {
2627 const TemplateArgument &Arg = ExplicitArgumentList->get(I);
2628 if (Arg.getKind() == TemplateArgument::Pack)
2629 Deduced.push_back(DeducedTemplateArgument());
2630 else
2631 Deduced.push_back(Arg);
2632 }
Mike Stump1eb44332009-09-09 15:08:12 +00002633
Douglas Gregor83314aa2009-07-08 20:55:45 +00002634 return TDK_Success;
2635}
2636
Douglas Gregorb7edc4f2011-06-17 05:18:17 +00002637/// \brief Check whether the deduced argument type for a call to a function
2638/// template matches the actual argument type per C++ [temp.deduct.call]p4.
2639static bool
2640CheckOriginalCallArgDeduction(Sema &S, Sema::OriginalCallArg OriginalArg,
2641 QualType DeducedA) {
2642 ASTContext &Context = S.Context;
2643
2644 QualType A = OriginalArg.OriginalArgType;
2645 QualType OriginalParamType = OriginalArg.OriginalParamType;
2646
2647 // Check for type equality (top-level cv-qualifiers are ignored).
2648 if (Context.hasSameUnqualifiedType(A, DeducedA))
2649 return false;
2650
2651 // Strip off references on the argument types; they aren't needed for
2652 // the following checks.
2653 if (const ReferenceType *DeducedARef = DeducedA->getAs<ReferenceType>())
2654 DeducedA = DeducedARef->getPointeeType();
2655 if (const ReferenceType *ARef = A->getAs<ReferenceType>())
2656 A = ARef->getPointeeType();
2657
2658 // C++ [temp.deduct.call]p4:
2659 // [...] However, there are three cases that allow a difference:
2660 // - If the original P is a reference type, the deduced A (i.e., the
2661 // type referred to by the reference) can be more cv-qualified than
2662 // the transformed A.
2663 if (const ReferenceType *OriginalParamRef
2664 = OriginalParamType->getAs<ReferenceType>()) {
2665 // We don't want to keep the reference around any more.
2666 OriginalParamType = OriginalParamRef->getPointeeType();
2667
2668 Qualifiers AQuals = A.getQualifiers();
2669 Qualifiers DeducedAQuals = DeducedA.getQualifiers();
Douglas Gregorb2513022012-07-18 00:14:59 +00002670
Douglas Gregor3940e3b2013-11-08 02:04:24 +00002671 // Under Objective-C++ ARC, the deduced type may have implicitly
2672 // been given strong or (when dealing with a const reference)
2673 // unsafe_unretained lifetime. If so, update the original
2674 // qualifiers to include this lifetime.
Douglas Gregorb2513022012-07-18 00:14:59 +00002675 if (S.getLangOpts().ObjCAutoRefCount &&
Douglas Gregor3940e3b2013-11-08 02:04:24 +00002676 ((DeducedAQuals.getObjCLifetime() == Qualifiers::OCL_Strong &&
2677 AQuals.getObjCLifetime() == Qualifiers::OCL_None) ||
2678 (DeducedAQuals.hasConst() &&
2679 DeducedAQuals.getObjCLifetime() == Qualifiers::OCL_ExplicitNone))) {
2680 AQuals.setObjCLifetime(DeducedAQuals.getObjCLifetime());
Douglas Gregorb2513022012-07-18 00:14:59 +00002681 }
2682
Douglas Gregorb7edc4f2011-06-17 05:18:17 +00002683 if (AQuals == DeducedAQuals) {
2684 // Qualifiers match; there's nothing to do.
2685 } else if (!DeducedAQuals.compatiblyIncludes(AQuals)) {
Douglas Gregorc99f0ec2011-06-17 14:36:00 +00002686 return true;
Douglas Gregorb7edc4f2011-06-17 05:18:17 +00002687 } else {
2688 // Qualifiers are compatible, so have the argument type adopt the
2689 // deduced argument type's qualifiers as if we had performed the
2690 // qualification conversion.
2691 A = Context.getQualifiedType(A.getUnqualifiedType(), DeducedAQuals);
2692 }
2693 }
2694
2695 // - The transformed A can be another pointer or pointer to member
2696 // type that can be converted to the deduced A via a qualification
2697 // conversion.
Chandler Carruth18e04612011-06-18 01:19:03 +00002698 //
2699 // Also allow conversions which merely strip [[noreturn]] from function types
2700 // (recursively) as an extension.
Douglas Gregor3940e3b2013-11-08 02:04:24 +00002701 // FIXME: Currently, this doesn't play nicely with qualification conversions.
Douglas Gregorb7edc4f2011-06-17 05:18:17 +00002702 bool ObjCLifetimeConversion = false;
Chandler Carruth18e04612011-06-18 01:19:03 +00002703 QualType ResultTy;
Douglas Gregorb7edc4f2011-06-17 05:18:17 +00002704 if ((A->isAnyPointerType() || A->isMemberPointerType()) &&
Chandler Carruth18e04612011-06-18 01:19:03 +00002705 (S.IsQualificationConversion(A, DeducedA, false,
2706 ObjCLifetimeConversion) ||
2707 S.IsNoReturnConversion(A, DeducedA, ResultTy)))
Douglas Gregorb7edc4f2011-06-17 05:18:17 +00002708 return false;
2709
2710
2711 // - If P is a class and P has the form simple-template-id, then the
2712 // transformed A can be a derived class of the deduced A. [...]
2713 // [...] Likewise, if P is a pointer to a class of the form
2714 // simple-template-id, the transformed A can be a pointer to a
2715 // derived class pointed to by the deduced A.
2716 if (const PointerType *OriginalParamPtr
2717 = OriginalParamType->getAs<PointerType>()) {
2718 if (const PointerType *DeducedAPtr = DeducedA->getAs<PointerType>()) {
2719 if (const PointerType *APtr = A->getAs<PointerType>()) {
2720 if (A->getPointeeType()->isRecordType()) {
2721 OriginalParamType = OriginalParamPtr->getPointeeType();
2722 DeducedA = DeducedAPtr->getPointeeType();
2723 A = APtr->getPointeeType();
2724 }
2725 }
2726 }
2727 }
2728
2729 if (Context.hasSameUnqualifiedType(A, DeducedA))
2730 return false;
2731
2732 if (A->isRecordType() && isSimpleTemplateIdType(OriginalParamType) &&
2733 S.IsDerivedFrom(A, DeducedA))
2734 return false;
2735
2736 return true;
2737}
2738
Mike Stump1eb44332009-09-09 15:08:12 +00002739/// \brief Finish template argument deduction for a function template,
Douglas Gregor83314aa2009-07-08 20:55:45 +00002740/// checking the deduced template arguments for completeness and forming
2741/// the function template specialization.
Douglas Gregordbfb3712011-06-16 16:50:48 +00002742///
2743/// \param OriginalCallArgs If non-NULL, the original call arguments against
2744/// which the deduced argument types should be compared.
Mike Stump1eb44332009-09-09 15:08:12 +00002745Sema::TemplateDeductionResult
Douglas Gregor83314aa2009-07-08 20:55:45 +00002746Sema::FinishTemplateArgumentDeduction(FunctionTemplateDecl *FunctionTemplate,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002747 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
Douglas Gregor02024a92010-03-28 02:42:43 +00002748 unsigned NumExplicitlySpecified,
Douglas Gregor83314aa2009-07-08 20:55:45 +00002749 FunctionDecl *&Specialization,
Douglas Gregordbfb3712011-06-16 16:50:48 +00002750 TemplateDeductionInfo &Info,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002751 SmallVectorImpl<OriginalCallArg> const *OriginalCallArgs,
2752 bool PartialOverloading) {
Douglas Gregor83314aa2009-07-08 20:55:45 +00002753 TemplateParameterList *TemplateParams
2754 = FunctionTemplate->getTemplateParameters();
Mike Stump1eb44332009-09-09 15:08:12 +00002755
Eli Friedman59a839c2012-02-08 03:07:05 +00002756 // Unevaluated SFINAE context.
2757 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +00002758 SFINAETrap Trap(*this);
2759
Douglas Gregor83314aa2009-07-08 20:55:45 +00002760 // Enter a new template instantiation context while we instantiate the
2761 // actual function declaration.
Richard Smith7e54fb52012-07-16 01:09:10 +00002762 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end());
Stephen Hines651f13c2014-04-23 16:59:28 -07002763 InstantiatingTemplate Inst(*this, Info.getLocation(), FunctionTemplate,
2764 DeducedArgs,
Douglas Gregor9b623632010-10-12 23:32:35 +00002765 ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution,
2766 Info);
Alp Tokerd69f37b2013-10-08 08:09:04 +00002767 if (Inst.isInvalid())
Mike Stump1eb44332009-09-09 15:08:12 +00002768 return TDK_InstantiationDepth;
2769
John McCall96db3102010-04-29 01:18:58 +00002770 ContextRAII SavedContext(*this, FunctionTemplate->getTemplatedDecl());
John McCallf5813822010-04-29 00:35:03 +00002771
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002772 // C++ [temp.deduct.type]p2:
2773 // [...] or if any template argument remains neither deduced nor
2774 // explicitly specified, template argument deduction fails.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002775 SmallVector<TemplateArgument, 4> Builder;
Douglas Gregorb9a7d6f2011-01-04 22:13:36 +00002776 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
2777 NamedDecl *Param = TemplateParams->getParam(I);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002778
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002779 if (!Deduced[I].isNull()) {
Douglas Gregor3273b0c2010-10-12 18:51:08 +00002780 if (I < NumExplicitlySpecified) {
Douglas Gregor02024a92010-03-28 02:42:43 +00002781 // We have already fully type-checked and converted this
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002782 // argument, because it was explicitly-specified. Just record the
Douglas Gregor3273b0c2010-10-12 18:51:08 +00002783 // presence of this argument.
Douglas Gregor910f8002010-11-07 23:05:16 +00002784 Builder.push_back(Deduced[I]);
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002785 // We may have had explicitly-specified template arguments for a
2786 // template parameter pack (that may or may not have been extended
2787 // via additional deduced arguments).
2788 if (Param->isParameterPack() && CurrentInstantiationScope) {
2789 if (CurrentInstantiationScope->getPartiallySubstitutedPack() ==
2790 Param) {
2791 // Forget the partially-substituted pack; its substitution is now
2792 // complete.
2793 CurrentInstantiationScope->ResetPartiallySubstitutedPack();
2794 }
2795 }
Douglas Gregor02024a92010-03-28 02:42:43 +00002796 continue;
2797 }
Douglas Gregor02024a92010-03-28 02:42:43 +00002798 // We have deduced this argument, so it still needs to be
2799 // checked and converted.
2800
2801 // First, for a non-type template parameter type that is
2802 // initialized by a declaration, we need the type of the
2803 // corresponding non-type template parameter.
2804 QualType NTTPType;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002805 if (NonTypeTemplateParmDecl *NTTP
2806 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
Douglas Gregorb9a7d6f2011-01-04 22:13:36 +00002807 NTTPType = NTTP->getType();
2808 if (NTTPType->isDependentType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002809 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregorb9a7d6f2011-01-04 22:13:36 +00002810 Builder.data(), Builder.size());
2811 NTTPType = SubstType(NTTPType,
2812 MultiLevelTemplateArgumentList(TemplateArgs),
2813 NTTP->getLocation(),
2814 NTTP->getDeclName());
2815 if (NTTPType.isNull()) {
2816 Info.Param = makeTemplateParameter(Param);
2817 // FIXME: These template arguments are temporary. Free them!
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002818 Info.reset(TemplateArgumentList::CreateCopy(Context,
2819 Builder.data(),
Douglas Gregorb9a7d6f2011-01-04 22:13:36 +00002820 Builder.size()));
2821 return TDK_SubstitutionFailure;
Douglas Gregor02024a92010-03-28 02:42:43 +00002822 }
2823 }
2824 }
2825
Douglas Gregorb9a7d6f2011-01-04 22:13:36 +00002826 if (ConvertDeducedTemplateArgument(*this, Param, Deduced[I],
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002827 FunctionTemplate, NTTPType, 0, Info,
Douglas Gregor54c53cc2011-01-04 23:35:54 +00002828 true, Builder)) {
Douglas Gregorb9a7d6f2011-01-04 22:13:36 +00002829 Info.Param = makeTemplateParameter(Param);
Douglas Gregor910f8002010-11-07 23:05:16 +00002830 // FIXME: These template arguments are temporary. Free them!
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002831 Info.reset(TemplateArgumentList::CreateCopy(Context, Builder.data(),
2832 Builder.size()));
Douglas Gregor02024a92010-03-28 02:42:43 +00002833 return TDK_SubstitutionFailure;
2834 }
2835
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002836 continue;
2837 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002838
Douglas Gregorea6c96f2010-12-23 01:52:01 +00002839 // C++0x [temp.arg.explicit]p3:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002840 // A trailing template parameter pack (14.5.3) not otherwise deduced will
Douglas Gregorea6c96f2010-12-23 01:52:01 +00002841 // be deduced to an empty sequence of template arguments.
2842 // FIXME: Where did the word "trailing" come from?
2843 if (Param->isTemplateParameterPack()) {
Douglas Gregord3731192011-01-10 07:32:04 +00002844 // We may have had explicitly-specified template arguments for this
2845 // template parameter pack. If so, our empty deduction extends the
2846 // explicitly-specified set (C++0x [temp.arg.explicit]p9).
2847 const TemplateArgument *ExplicitArgs;
2848 unsigned NumExplicitArgs;
Richard Smitha8eaf002012-08-23 06:16:52 +00002849 if (CurrentInstantiationScope &&
2850 CurrentInstantiationScope->getPartiallySubstitutedPack(&ExplicitArgs,
Douglas Gregord3731192011-01-10 07:32:04 +00002851 &NumExplicitArgs)
Douglas Gregor22eaced2013-01-18 22:27:09 +00002852 == Param) {
Douglas Gregord3731192011-01-10 07:32:04 +00002853 Builder.push_back(TemplateArgument(ExplicitArgs, NumExplicitArgs));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002854
Douglas Gregor22eaced2013-01-18 22:27:09 +00002855 // Forget the partially-substituted pack; it's substitution is now
2856 // complete.
2857 CurrentInstantiationScope->ResetPartiallySubstitutedPack();
2858 } else {
2859 Builder.push_back(TemplateArgument::getEmptyPack());
2860 }
Douglas Gregorea6c96f2010-12-23 01:52:01 +00002861 continue;
2862 }
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002863
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002864 // Substitute into the default template argument, if available.
Richard Smith305e5b42013-07-04 01:01:24 +00002865 bool HasDefaultArg = false;
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002866 TemplateArgumentLoc DefArg
2867 = SubstDefaultTemplateArgumentIfAvailable(FunctionTemplate,
2868 FunctionTemplate->getLocation(),
2869 FunctionTemplate->getSourceRange().getEnd(),
2870 Param,
Richard Smith305e5b42013-07-04 01:01:24 +00002871 Builder, HasDefaultArg);
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002872
2873 // If there was no default argument, deduction is incomplete.
2874 if (DefArg.getArgument().isNull()) {
2875 Info.Param = makeTemplateParameter(
2876 const_cast<NamedDecl *>(TemplateParams->getParam(I)));
Richard Smith305e5b42013-07-04 01:01:24 +00002877 Info.reset(TemplateArgumentList::CreateCopy(Context, Builder.data(),
2878 Builder.size()));
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002879 if (PartialOverloading) break;
2880
Richard Smith305e5b42013-07-04 01:01:24 +00002881 return HasDefaultArg ? TDK_SubstitutionFailure : TDK_Incomplete;
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002882 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002883
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002884 // Check whether we can actually use the default argument.
2885 if (CheckTemplateArgument(Param, DefArg,
2886 FunctionTemplate,
2887 FunctionTemplate->getLocation(),
2888 FunctionTemplate->getSourceRange().getEnd(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00002889 0, Builder,
Douglas Gregor8735b292011-06-03 02:59:40 +00002890 CTAK_Specified)) {
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002891 Info.Param = makeTemplateParameter(
2892 const_cast<NamedDecl *>(TemplateParams->getParam(I)));
Douglas Gregor910f8002010-11-07 23:05:16 +00002893 // FIXME: These template arguments are temporary. Free them!
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002894 Info.reset(TemplateArgumentList::CreateCopy(Context, Builder.data(),
Douglas Gregor910f8002010-11-07 23:05:16 +00002895 Builder.size()));
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002896 return TDK_SubstitutionFailure;
2897 }
2898
2899 // If we get here, we successfully used the default template argument.
2900 }
2901
2902 // Form the template argument list from the deduced template arguments.
2903 TemplateArgumentList *DeducedArgumentList
Douglas Gregor910f8002010-11-07 23:05:16 +00002904 = TemplateArgumentList::CreateCopy(Context, Builder.data(), Builder.size());
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00002905 Info.reset(DeducedArgumentList);
2906
Mike Stump1eb44332009-09-09 15:08:12 +00002907 // Substitute the deduced template arguments into the function template
Douglas Gregor83314aa2009-07-08 20:55:45 +00002908 // declaration to produce the function template specialization.
Douglas Gregord4598a22010-04-28 04:52:24 +00002909 DeclContext *Owner = FunctionTemplate->getDeclContext();
2910 if (FunctionTemplate->getFriendObjectKind())
2911 Owner = FunctionTemplate->getLexicalDeclContext();
Douglas Gregor83314aa2009-07-08 20:55:45 +00002912 Specialization = cast_or_null<FunctionDecl>(
Douglas Gregord4598a22010-04-28 04:52:24 +00002913 SubstDecl(FunctionTemplate->getTemplatedDecl(), Owner,
Douglas Gregor357bbd02009-08-28 20:50:45 +00002914 MultiLevelTemplateArgumentList(*DeducedArgumentList)));
Douglas Gregor5fad9b82011-10-12 20:35:48 +00002915 if (!Specialization || Specialization->isInvalidDecl())
Douglas Gregor83314aa2009-07-08 20:55:45 +00002916 return TDK_SubstitutionFailure;
Mike Stump1eb44332009-09-09 15:08:12 +00002917
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002918 assert(Specialization->getPrimaryTemplate()->getCanonicalDecl() ==
Douglas Gregorf8825742009-09-15 18:26:13 +00002919 FunctionTemplate->getCanonicalDecl());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002920
Mike Stump1eb44332009-09-09 15:08:12 +00002921 // If the template argument list is owned by the function template
Douglas Gregor83314aa2009-07-08 20:55:45 +00002922 // specialization, release it.
Douglas Gregorec20f462010-05-08 20:07:26 +00002923 if (Specialization->getTemplateSpecializationArgs() == DeducedArgumentList &&
2924 !Trap.hasErrorOccurred())
Douglas Gregor83314aa2009-07-08 20:55:45 +00002925 Info.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002926
Douglas Gregor5fad9b82011-10-12 20:35:48 +00002927 // There may have been an error that did not prevent us from constructing a
2928 // declaration. Mark the declaration invalid and return with a substitution
2929 // failure.
2930 if (Trap.hasErrorOccurred()) {
2931 Specialization->setInvalidDecl(true);
2932 return TDK_SubstitutionFailure;
2933 }
2934
Douglas Gregordbfb3712011-06-16 16:50:48 +00002935 if (OriginalCallArgs) {
2936 // C++ [temp.deduct.call]p4:
2937 // In general, the deduction process attempts to find template argument
2938 // values that will make the deduced A identical to A (after the type A
2939 // is transformed as described above). [...]
2940 for (unsigned I = 0, N = OriginalCallArgs->size(); I != N; ++I) {
2941 OriginalCallArg OriginalArg = (*OriginalCallArgs)[I];
Douglas Gregordbfb3712011-06-16 16:50:48 +00002942 unsigned ParamIdx = OriginalArg.ArgIdx;
2943
2944 if (ParamIdx >= Specialization->getNumParams())
2945 continue;
2946
2947 QualType DeducedA = Specialization->getParamDecl(ParamIdx)->getType();
Douglas Gregorb7edc4f2011-06-17 05:18:17 +00002948 if (CheckOriginalCallArgDeduction(*this, OriginalArg, DeducedA))
2949 return Sema::TDK_SubstitutionFailure;
Douglas Gregordbfb3712011-06-16 16:50:48 +00002950 }
2951 }
2952
Douglas Gregor9b623632010-10-12 23:32:35 +00002953 // If we suppressed any diagnostics while performing template argument
2954 // deduction, and if we haven't already instantiated this declaration,
2955 // keep track of these diagnostics. They'll be emitted if this specialization
2956 // is actually used.
2957 if (Info.diag_begin() != Info.diag_end()) {
Craig Topperee0a4792013-07-05 04:33:53 +00002958 SuppressedDiagnosticsMap::iterator
Douglas Gregor9b623632010-10-12 23:32:35 +00002959 Pos = SuppressedDiagnostics.find(Specialization->getCanonicalDecl());
2960 if (Pos == SuppressedDiagnostics.end())
2961 SuppressedDiagnostics[Specialization->getCanonicalDecl()]
2962 .append(Info.diag_begin(), Info.diag_end());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002963 }
Douglas Gregor9b623632010-10-12 23:32:35 +00002964
Mike Stump1eb44332009-09-09 15:08:12 +00002965 return TDK_Success;
Douglas Gregor83314aa2009-07-08 20:55:45 +00002966}
2967
John McCall9c72c602010-08-27 09:08:28 +00002968/// Gets the type of a function for template-argument-deducton
2969/// purposes when it's considered as part of an overload set.
Richard Smith60e141e2013-05-04 07:00:32 +00002970static QualType GetTypeOfFunction(Sema &S, const OverloadExpr::FindResult &R,
John McCalleff92132010-02-02 02:21:27 +00002971 FunctionDecl *Fn) {
Richard Smith60e141e2013-05-04 07:00:32 +00002972 // We may need to deduce the return type of the function now.
Stephen Hines176edba2014-12-01 14:53:08 -08002973 if (S.getLangOpts().CPlusPlus14 && Fn->getReturnType()->isUndeducedType() &&
Stephen Hines651f13c2014-04-23 16:59:28 -07002974 S.DeduceReturnType(Fn, R.Expression->getExprLoc(), /*Diagnose*/ false))
Richard Smith60e141e2013-05-04 07:00:32 +00002975 return QualType();
2976
John McCalleff92132010-02-02 02:21:27 +00002977 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn))
John McCall9c72c602010-08-27 09:08:28 +00002978 if (Method->isInstance()) {
2979 // An instance method that's referenced in a form that doesn't
2980 // look like a member pointer is just invalid.
2981 if (!R.HasFormOfMemberPointer) return QualType();
2982
Richard Smith60e141e2013-05-04 07:00:32 +00002983 return S.Context.getMemberPointerType(Fn->getType(),
2984 S.Context.getTypeDeclType(Method->getParent()).getTypePtr());
John McCall9c72c602010-08-27 09:08:28 +00002985 }
2986
2987 if (!R.IsAddressOfOperand) return Fn->getType();
Richard Smith60e141e2013-05-04 07:00:32 +00002988 return S.Context.getPointerType(Fn->getType());
John McCalleff92132010-02-02 02:21:27 +00002989}
2990
2991/// Apply the deduction rules for overload sets.
2992///
2993/// \return the null type if this argument should be treated as an
2994/// undeduced context
2995static QualType
2996ResolveOverloadForDeduction(Sema &S, TemplateParameterList *TemplateParams,
Douglas Gregor75f21af2010-08-30 21:04:23 +00002997 Expr *Arg, QualType ParamType,
2998 bool ParamWasReference) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002999
John McCall9c72c602010-08-27 09:08:28 +00003000 OverloadExpr::FindResult R = OverloadExpr::find(Arg);
John McCalleff92132010-02-02 02:21:27 +00003001
John McCall9c72c602010-08-27 09:08:28 +00003002 OverloadExpr *Ovl = R.Expression;
John McCalleff92132010-02-02 02:21:27 +00003003
Douglas Gregor75f21af2010-08-30 21:04:23 +00003004 // C++0x [temp.deduct.call]p4
3005 unsigned TDF = 0;
3006 if (ParamWasReference)
3007 TDF |= TDF_ParamWithReferenceType;
3008 if (R.IsAddressOfOperand)
3009 TDF |= TDF_IgnoreQualifiers;
3010
John McCalleff92132010-02-02 02:21:27 +00003011 // C++0x [temp.deduct.call]p6:
3012 // When P is a function type, pointer to function type, or pointer
3013 // to member function type:
3014
3015 if (!ParamType->isFunctionType() &&
3016 !ParamType->isFunctionPointerType() &&
Douglas Gregor860d9b72012-03-12 21:09:16 +00003017 !ParamType->isMemberFunctionPointerType()) {
3018 if (Ovl->hasExplicitTemplateArgs()) {
3019 // But we can still look for an explicit specialization.
3020 if (FunctionDecl *ExplicitSpec
3021 = S.ResolveSingleFunctionTemplateSpecialization(Ovl))
Richard Smith60e141e2013-05-04 07:00:32 +00003022 return GetTypeOfFunction(S, R, ExplicitSpec);
Douglas Gregor860d9b72012-03-12 21:09:16 +00003023 }
John McCalleff92132010-02-02 02:21:27 +00003024
Douglas Gregor860d9b72012-03-12 21:09:16 +00003025 return QualType();
3026 }
3027
3028 // Gather the explicit template arguments, if any.
3029 TemplateArgumentListInfo ExplicitTemplateArgs;
3030 if (Ovl->hasExplicitTemplateArgs())
3031 Ovl->getExplicitTemplateArgs().copyInto(ExplicitTemplateArgs);
John McCalleff92132010-02-02 02:21:27 +00003032 QualType Match;
John McCall7bb12da2010-02-02 06:20:04 +00003033 for (UnresolvedSetIterator I = Ovl->decls_begin(),
3034 E = Ovl->decls_end(); I != E; ++I) {
John McCalleff92132010-02-02 02:21:27 +00003035 NamedDecl *D = (*I)->getUnderlyingDecl();
3036
Douglas Gregor860d9b72012-03-12 21:09:16 +00003037 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D)) {
3038 // - If the argument is an overload set containing one or more
3039 // function templates, the parameter is treated as a
3040 // non-deduced context.
3041 if (!Ovl->hasExplicitTemplateArgs())
3042 return QualType();
3043
3044 // Otherwise, see if we can resolve a function type
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003045 FunctionDecl *Specialization = nullptr;
Craig Topper93e45992012-09-19 02:26:47 +00003046 TemplateDeductionInfo Info(Ovl->getNameLoc());
Douglas Gregor860d9b72012-03-12 21:09:16 +00003047 if (S.DeduceTemplateArguments(FunTmpl, &ExplicitTemplateArgs,
3048 Specialization, Info))
3049 continue;
3050
3051 D = Specialization;
3052 }
John McCalleff92132010-02-02 02:21:27 +00003053
3054 FunctionDecl *Fn = cast<FunctionDecl>(D);
Richard Smith60e141e2013-05-04 07:00:32 +00003055 QualType ArgType = GetTypeOfFunction(S, R, Fn);
John McCall9c72c602010-08-27 09:08:28 +00003056 if (ArgType.isNull()) continue;
John McCalleff92132010-02-02 02:21:27 +00003057
Douglas Gregor75f21af2010-08-30 21:04:23 +00003058 // Function-to-pointer conversion.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003059 if (!ParamWasReference && ParamType->isPointerType() &&
Douglas Gregor75f21af2010-08-30 21:04:23 +00003060 ArgType->isFunctionType())
3061 ArgType = S.Context.getPointerType(ArgType);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003062
John McCalleff92132010-02-02 02:21:27 +00003063 // - If the argument is an overload set (not containing function
3064 // templates), trial argument deduction is attempted using each
3065 // of the members of the set. If deduction succeeds for only one
3066 // of the overload set members, that member is used as the
3067 // argument value for the deduction. If deduction succeeds for
3068 // more than one member of the overload set the parameter is
3069 // treated as a non-deduced context.
3070
3071 // We do all of this in a fresh context per C++0x [temp.deduct.type]p2:
3072 // Type deduction is done independently for each P/A pair, and
3073 // the deduced template argument values are then combined.
3074 // So we do not reject deductions which were made elsewhere.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003075 SmallVector<DeducedTemplateArgument, 8>
Douglas Gregor02024a92010-03-28 02:42:43 +00003076 Deduced(TemplateParams->size());
Craig Topper93e45992012-09-19 02:26:47 +00003077 TemplateDeductionInfo Info(Ovl->getNameLoc());
John McCalleff92132010-02-02 02:21:27 +00003078 Sema::TemplateDeductionResult Result
Sebastian Redlbb95e512012-01-17 22:49:52 +00003079 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, ParamType,
3080 ArgType, Info, Deduced, TDF);
John McCalleff92132010-02-02 02:21:27 +00003081 if (Result) continue;
3082 if (!Match.isNull()) return QualType();
3083 Match = ArgType;
3084 }
3085
3086 return Match;
3087}
3088
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003089/// \brief Perform the adjustments to the parameter and argument types
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003090/// described in C++ [temp.deduct.call].
3091///
3092/// \returns true if the caller should not attempt to perform any template
Richard Smith0efa62f2013-01-31 04:03:12 +00003093/// argument deduction based on this P/A pair because the argument is an
3094/// overloaded function set that could not be resolved.
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003095static bool AdjustFunctionParmAndArgTypesForDeduction(Sema &S,
3096 TemplateParameterList *TemplateParams,
3097 QualType &ParamType,
3098 QualType &ArgType,
3099 Expr *Arg,
3100 unsigned &TDF) {
3101 // C++0x [temp.deduct.call]p3:
NAKAMURA Takumi00995302011-01-27 07:09:49 +00003102 // If P is a cv-qualified type, the top level cv-qualifiers of P's type
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003103 // are ignored for type deduction.
Douglas Gregora459cc22011-04-27 23:34:22 +00003104 if (ParamType.hasQualifiers())
3105 ParamType = ParamType.getUnqualifiedType();
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003106
3107 // [...] If P is a reference type, the type referred to by P is
3108 // used for type deduction.
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003109 const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>();
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003110 if (ParamRefType)
3111 ParamType = ParamRefType->getPointeeType();
Richard Smith34b41d92011-02-20 03:19:35 +00003112
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003113 // Overload sets usually make this parameter an undeduced context,
3114 // but there are sometimes special circumstances. Typically
3115 // involving a template-id-expr.
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003116 if (ArgType == S.Context.OverloadTy) {
3117 ArgType = ResolveOverloadForDeduction(S, TemplateParams,
3118 Arg, ParamType,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003119 ParamRefType != nullptr);
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003120 if (ArgType.isNull())
3121 return true;
3122 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003123
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003124 if (ParamRefType) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003125 // If the argument has incomplete array type, try to complete its type.
3126 if (ArgType->isIncompleteArrayType() && !S.RequireCompleteExprType(Arg, 0))
3127 ArgType = Arg->getType();
3128
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003129 // C++0x [temp.deduct.call]p3:
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003130 // If P is an rvalue reference to a cv-unqualified template
3131 // parameter and the argument is an lvalue, the type "lvalue
3132 // reference to A" is used in place of A for type deduction.
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003133 if (ParamRefType->isRValueReferenceType() &&
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003134 !ParamType.getQualifiers() &&
3135 isa<TemplateTypeParmType>(ParamType) &&
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003136 Arg->isLValue())
3137 ArgType = S.Context.getLValueReferenceType(ArgType);
3138 } else {
3139 // C++ [temp.deduct.call]p2:
3140 // If P is not a reference type:
3141 // - If A is an array type, the pointer type produced by the
3142 // array-to-pointer standard conversion (4.2) is used in place of
3143 // A for type deduction; otherwise,
3144 if (ArgType->isArrayType())
3145 ArgType = S.Context.getArrayDecayedType(ArgType);
3146 // - If A is a function type, the pointer type produced by the
3147 // function-to-pointer standard conversion (4.3) is used in place
3148 // of A for type deduction; otherwise,
3149 else if (ArgType->isFunctionType())
3150 ArgType = S.Context.getPointerType(ArgType);
3151 else {
NAKAMURA Takumi00995302011-01-27 07:09:49 +00003152 // - If A is a cv-qualified type, the top level cv-qualifiers of A's
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003153 // type are ignored for type deduction.
Douglas Gregora459cc22011-04-27 23:34:22 +00003154 ArgType = ArgType.getUnqualifiedType();
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003155 }
3156 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003157
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003158 // C++0x [temp.deduct.call]p4:
3159 // In general, the deduction process attempts to find template argument
3160 // values that will make the deduced A identical to A (after the type A
3161 // is transformed as described above). [...]
3162 TDF = TDF_SkipNonDependent;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003163
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003164 // - If the original P is a reference type, the deduced A (i.e., the
3165 // type referred to by the reference) can be more cv-qualified than
3166 // the transformed A.
3167 if (ParamRefType)
3168 TDF |= TDF_ParamWithReferenceType;
3169 // - The transformed A can be another pointer or pointer to member
3170 // type that can be converted to the deduced A via a qualification
3171 // conversion (4.4).
3172 if (ArgType->isPointerType() || ArgType->isMemberPointerType() ||
3173 ArgType->isObjCObjectPointerType())
3174 TDF |= TDF_IgnoreQualifiers;
3175 // - If P is a class and P has the form simple-template-id, then the
3176 // transformed A can be a derived class of the deduced A. Likewise,
3177 // if P is a pointer to a class of the form simple-template-id, the
3178 // transformed A can be a pointer to a derived class pointed to by
3179 // the deduced A.
3180 if (isSimpleTemplateIdType(ParamType) ||
3181 (isa<PointerType>(ParamType) &&
3182 isSimpleTemplateIdType(
3183 ParamType->getAs<PointerType>()->getPointeeType())))
3184 TDF |= TDF_DerivedClass;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003185
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003186 return false;
3187}
3188
Stephen Hines176edba2014-12-01 14:53:08 -08003189static bool
3190hasDeducibleTemplateParameters(Sema &S, FunctionTemplateDecl *FunctionTemplate,
3191 QualType T);
Douglas Gregordbfb3712011-06-16 16:50:48 +00003192
Sebastian Redl4b911e62012-03-15 21:40:51 +00003193/// \brief Perform template argument deduction by matching a parameter type
3194/// against a single expression, where the expression is an element of
Richard Smith0efa62f2013-01-31 04:03:12 +00003195/// an initializer list that was originally matched against a parameter
3196/// of type \c initializer_list\<ParamType\>.
Sebastian Redl4b911e62012-03-15 21:40:51 +00003197static Sema::TemplateDeductionResult
3198DeduceTemplateArgumentByListElement(Sema &S,
3199 TemplateParameterList *TemplateParams,
3200 QualType ParamType, Expr *Arg,
3201 TemplateDeductionInfo &Info,
3202 SmallVectorImpl<DeducedTemplateArgument> &Deduced,
3203 unsigned TDF) {
3204 // Handle the case where an init list contains another init list as the
3205 // element.
3206 if (InitListExpr *ILE = dyn_cast<InitListExpr>(Arg)) {
3207 QualType X;
3208 if (!S.isStdInitializerList(ParamType.getNonReferenceType(), &X))
3209 return Sema::TDK_Success; // Just ignore this expression.
3210
3211 // Recurse down into the init list.
3212 for (unsigned i = 0, e = ILE->getNumInits(); i < e; ++i) {
3213 if (Sema::TemplateDeductionResult Result =
3214 DeduceTemplateArgumentByListElement(S, TemplateParams, X,
3215 ILE->getInit(i),
3216 Info, Deduced, TDF))
3217 return Result;
3218 }
3219 return Sema::TDK_Success;
3220 }
3221
3222 // For all other cases, just match by type.
Douglas Gregord2803892012-04-04 05:10:53 +00003223 QualType ArgType = Arg->getType();
3224 if (AdjustFunctionParmAndArgTypesForDeduction(S, TemplateParams, ParamType,
Richard Smith0efa62f2013-01-31 04:03:12 +00003225 ArgType, Arg, TDF)) {
3226 Info.Expression = Arg;
Douglas Gregord2803892012-04-04 05:10:53 +00003227 return Sema::TDK_FailedOverloadResolution;
Richard Smith0efa62f2013-01-31 04:03:12 +00003228 }
Sebastian Redl4b911e62012-03-15 21:40:51 +00003229 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, ParamType,
Douglas Gregord2803892012-04-04 05:10:53 +00003230 ArgType, Info, Deduced, TDF);
Sebastian Redl4b911e62012-03-15 21:40:51 +00003231}
3232
Douglas Gregore53060f2009-06-25 22:08:12 +00003233/// \brief Perform template argument deduction from a function call
3234/// (C++ [temp.deduct.call]).
3235///
3236/// \param FunctionTemplate the function template for which we are performing
3237/// template argument deduction.
3238///
James Dennett40ae6662012-06-22 08:52:37 +00003239/// \param ExplicitTemplateArgs the explicit template arguments provided
Douglas Gregor48026d22010-01-11 18:40:55 +00003240/// for this call.
Douglas Gregor6db8ed42009-06-30 23:57:56 +00003241///
Douglas Gregore53060f2009-06-25 22:08:12 +00003242/// \param Args the function call arguments
3243///
Douglas Gregore53060f2009-06-25 22:08:12 +00003244/// \param Specialization if template argument deduction was successful,
Mike Stump1eb44332009-09-09 15:08:12 +00003245/// this will be set to the function template specialization produced by
Douglas Gregore53060f2009-06-25 22:08:12 +00003246/// template argument deduction.
3247///
3248/// \param Info the argument will be updated to provide additional information
3249/// about template argument deduction.
3250///
3251/// \returns the result of template argument deduction.
Robert Wilhelm834c0582013-08-09 18:02:13 +00003252Sema::TemplateDeductionResult Sema::DeduceTemplateArguments(
3253 FunctionTemplateDecl *FunctionTemplate,
3254 TemplateArgumentListInfo *ExplicitTemplateArgs, ArrayRef<Expr *> Args,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003255 FunctionDecl *&Specialization, TemplateDeductionInfo &Info,
3256 bool PartialOverloading) {
Douglas Gregorae19fbb2012-09-13 21:01:57 +00003257 if (FunctionTemplate->isInvalidDecl())
3258 return TDK_Invalid;
3259
Douglas Gregore53060f2009-06-25 22:08:12 +00003260 FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003261 unsigned NumParams = Function->getNumParams();
Douglas Gregor6db8ed42009-06-30 23:57:56 +00003262
Douglas Gregore53060f2009-06-25 22:08:12 +00003263 // C++ [temp.deduct.call]p1:
3264 // Template argument deduction is done by comparing each function template
3265 // parameter type (call it P) with the type of the corresponding argument
3266 // of the call (call it A) as described below.
Ahmed Charles13a140c2012-02-25 11:00:22 +00003267 unsigned CheckArgs = Args.size();
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003268 if (Args.size() < Function->getMinRequiredArguments() && !PartialOverloading)
Douglas Gregore53060f2009-06-25 22:08:12 +00003269 return TDK_TooFewArguments;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003270 else if (TooManyArguments(NumParams, Args.size(), PartialOverloading)) {
Mike Stump1eb44332009-09-09 15:08:12 +00003271 const FunctionProtoType *Proto
John McCall183700f2009-09-21 23:43:11 +00003272 = Function->getType()->getAs<FunctionProtoType>();
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003273 if (Proto->isTemplateVariadic())
3274 /* Do nothing */;
3275 else if (Proto->isVariadic())
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003276 CheckArgs = NumParams;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003277 else
Douglas Gregore53060f2009-06-25 22:08:12 +00003278 return TDK_TooManyArguments;
Douglas Gregore53060f2009-06-25 22:08:12 +00003279 }
Mike Stump1eb44332009-09-09 15:08:12 +00003280
Douglas Gregor6db8ed42009-06-30 23:57:56 +00003281 // The types of the parameters from which we will perform template argument
3282 // deduction.
John McCall2a7fb272010-08-25 05:32:35 +00003283 LocalInstantiationScope InstScope(*this);
Douglas Gregore53060f2009-06-25 22:08:12 +00003284 TemplateParameterList *TemplateParams
3285 = FunctionTemplate->getTemplateParameters();
Chris Lattner5f9e2722011-07-23 10:55:15 +00003286 SmallVector<DeducedTemplateArgument, 4> Deduced;
3287 SmallVector<QualType, 4> ParamTypes;
Douglas Gregor02024a92010-03-28 02:42:43 +00003288 unsigned NumExplicitlySpecified = 0;
John McCalld5532b62009-11-23 01:53:49 +00003289 if (ExplicitTemplateArgs) {
Douglas Gregor83314aa2009-07-08 20:55:45 +00003290 TemplateDeductionResult Result =
3291 SubstituteExplicitTemplateArguments(FunctionTemplate,
John McCalld5532b62009-11-23 01:53:49 +00003292 *ExplicitTemplateArgs,
Douglas Gregor83314aa2009-07-08 20:55:45 +00003293 Deduced,
3294 ParamTypes,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003295 nullptr,
Douglas Gregor83314aa2009-07-08 20:55:45 +00003296 Info);
3297 if (Result)
3298 return Result;
Douglas Gregor02024a92010-03-28 02:42:43 +00003299
3300 NumExplicitlySpecified = Deduced.size();
Douglas Gregor6db8ed42009-06-30 23:57:56 +00003301 } else {
3302 // Just fill in the parameter types from the function declaration.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003303 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor6db8ed42009-06-30 23:57:56 +00003304 ParamTypes.push_back(Function->getParamDecl(I)->getType());
3305 }
Mike Stump1eb44332009-09-09 15:08:12 +00003306
Douglas Gregor6db8ed42009-06-30 23:57:56 +00003307 // Deduce template arguments from the function parameters.
Mike Stump1eb44332009-09-09 15:08:12 +00003308 Deduced.resize(TemplateParams->size());
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003309 unsigned ArgIdx = 0;
Chris Lattner5f9e2722011-07-23 10:55:15 +00003310 SmallVector<OriginalCallArg, 4> OriginalCallArgs;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003311 for (unsigned ParamIdx = 0, NumParamTypes = ParamTypes.size();
3312 ParamIdx != NumParamTypes; ++ParamIdx) {
Douglas Gregordbfb3712011-06-16 16:50:48 +00003313 QualType OrigParamType = ParamTypes[ParamIdx];
3314 QualType ParamType = OrigParamType;
3315
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003316 const PackExpansionType *ParamExpansion
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003317 = dyn_cast<PackExpansionType>(ParamType);
3318 if (!ParamExpansion) {
3319 // Simple case: matching a function parameter to a function argument.
3320 if (ArgIdx >= CheckArgs)
3321 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003322
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003323 Expr *Arg = Args[ArgIdx++];
3324 QualType ArgType = Arg->getType();
Douglas Gregordbfb3712011-06-16 16:50:48 +00003325
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003326 unsigned TDF = 0;
3327 if (AdjustFunctionParmAndArgTypesForDeduction(*this, TemplateParams,
3328 ParamType, ArgType, Arg,
3329 TDF))
3330 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003331
Douglas Gregord8f5b332011-10-09 22:06:46 +00003332 // If we have nothing to deduce, we're done.
3333 if (!hasDeducibleTemplateParameters(*this, FunctionTemplate, ParamType))
3334 continue;
3335
Sebastian Redl84760e32012-01-17 22:49:58 +00003336 // If the argument is an initializer list ...
3337 if (InitListExpr *ILE = dyn_cast<InitListExpr>(Arg)) {
3338 // ... then the parameter is an undeduced context, unless the parameter
3339 // type is (reference to cv) std::initializer_list<P'>, in which case
3340 // deduction is done for each element of the initializer list, and the
3341 // result is the deduced type if it's the same for all elements.
3342 QualType X;
3343 // Removing references was already done.
3344 if (!isStdInitializerList(ParamType, &X))
3345 continue;
3346
3347 for (unsigned i = 0, e = ILE->getNumInits(); i < e; ++i) {
3348 if (TemplateDeductionResult Result =
Sebastian Redl4b911e62012-03-15 21:40:51 +00003349 DeduceTemplateArgumentByListElement(*this, TemplateParams, X,
3350 ILE->getInit(i),
3351 Info, Deduced, TDF))
Sebastian Redl84760e32012-01-17 22:49:58 +00003352 return Result;
3353 }
3354 // Don't track the argument type, since an initializer list has none.
3355 continue;
3356 }
3357
Douglas Gregordbfb3712011-06-16 16:50:48 +00003358 // Keep track of the argument type and corresponding parameter index,
3359 // so we can check for compatibility between the deduced A and A.
Douglas Gregord8f5b332011-10-09 22:06:46 +00003360 OriginalCallArgs.push_back(OriginalCallArg(OrigParamType, ArgIdx-1,
3361 ArgType));
Douglas Gregordbfb3712011-06-16 16:50:48 +00003362
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003363 if (TemplateDeductionResult Result
Sebastian Redlbb95e512012-01-17 22:49:52 +00003364 = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams,
3365 ParamType, ArgType,
3366 Info, Deduced, TDF))
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003367 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +00003368
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003369 continue;
Douglas Gregor75f21af2010-08-30 21:04:23 +00003370 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003371
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003372 // C++0x [temp.deduct.call]p1:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003373 // For a function parameter pack that occurs at the end of the
3374 // parameter-declaration-list, the type A of each remaining argument of
3375 // the call is compared with the type P of the declarator-id of the
3376 // function parameter pack. Each comparison deduces template arguments
3377 // for subsequent positions in the template parameter packs expanded by
Douglas Gregor7d5c0c12011-01-11 01:52:23 +00003378 // the function parameter pack. For a function parameter pack that does
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003379 // not occur at the end of the parameter-declaration-list, the type of
Douglas Gregor7d5c0c12011-01-11 01:52:23 +00003380 // the parameter pack is a non-deduced context.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003381 if (ParamIdx + 1 < NumParamTypes)
Douglas Gregor7d5c0c12011-01-11 01:52:23 +00003382 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003383
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003384 QualType ParamPattern = ParamExpansion->getPattern();
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003385 PackDeductionScope PackScope(*this, TemplateParams, Deduced, Info,
3386 ParamPattern);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003387
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003388 bool HasAnyArguments = false;
Ahmed Charles13a140c2012-02-25 11:00:22 +00003389 for (; ArgIdx < Args.size(); ++ArgIdx) {
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003390 HasAnyArguments = true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003391
Douglas Gregordbfb3712011-06-16 16:50:48 +00003392 QualType OrigParamType = ParamPattern;
3393 ParamType = OrigParamType;
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003394 Expr *Arg = Args[ArgIdx];
3395 QualType ArgType = Arg->getType();
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003396
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003397 unsigned TDF = 0;
3398 if (AdjustFunctionParmAndArgTypesForDeduction(*this, TemplateParams,
3399 ParamType, ArgType, Arg,
3400 TDF)) {
3401 // We can't actually perform any deduction for this argument, so stop
3402 // deduction at this point.
3403 ++ArgIdx;
3404 break;
3405 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003406
Sebastian Redl84760e32012-01-17 22:49:58 +00003407 // As above, initializer lists need special handling.
3408 if (InitListExpr *ILE = dyn_cast<InitListExpr>(Arg)) {
3409 QualType X;
3410 if (!isStdInitializerList(ParamType, &X)) {
3411 ++ArgIdx;
3412 break;
3413 }
Douglas Gregordbfb3712011-06-16 16:50:48 +00003414
Sebastian Redl84760e32012-01-17 22:49:58 +00003415 for (unsigned i = 0, e = ILE->getNumInits(); i < e; ++i) {
3416 if (TemplateDeductionResult Result =
3417 DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams, X,
3418 ILE->getInit(i)->getType(),
3419 Info, Deduced, TDF))
3420 return Result;
3421 }
3422 } else {
3423
3424 // Keep track of the argument type and corresponding argument index,
3425 // so we can check for compatibility between the deduced A and A.
3426 if (hasDeducibleTemplateParameters(*this, FunctionTemplate, ParamType))
3427 OriginalCallArgs.push_back(OriginalCallArg(OrigParamType, ArgIdx,
3428 ArgType));
3429
3430 if (TemplateDeductionResult Result
3431 = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams,
3432 ParamType, ArgType, Info,
3433 Deduced, TDF))
3434 return Result;
3435 }
Mike Stump1eb44332009-09-09 15:08:12 +00003436
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003437 PackScope.nextPackElement();
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003438 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003439
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003440 // Build argument packs for each of the parameter packs expanded by this
3441 // pack expansion.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003442 if (auto Result = PackScope.finish(HasAnyArguments))
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003443 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +00003444
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00003445 // After we've matching against a parameter pack, we're done.
3446 break;
Douglas Gregore53060f2009-06-25 22:08:12 +00003447 }
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003448
Mike Stump1eb44332009-09-09 15:08:12 +00003449 return FinishTemplateArgumentDeduction(FunctionTemplate, Deduced,
Stephen Hines176edba2014-12-01 14:53:08 -08003450 NumExplicitlySpecified, Specialization,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003451 Info, &OriginalCallArgs,
3452 PartialOverloading);
Douglas Gregore53060f2009-06-25 22:08:12 +00003453}
3454
Bill Wendling37c07bf2013-12-02 02:05:28 +00003455QualType Sema::adjustCCAndNoReturn(QualType ArgFunctionType,
3456 QualType FunctionType) {
3457 if (ArgFunctionType.isNull())
3458 return ArgFunctionType;
3459
3460 const FunctionProtoType *FunctionTypeP =
3461 FunctionType->castAs<FunctionProtoType>();
3462 CallingConv CC = FunctionTypeP->getCallConv();
3463 bool NoReturn = FunctionTypeP->getNoReturnAttr();
3464 const FunctionProtoType *ArgFunctionTypeP =
3465 ArgFunctionType->getAs<FunctionProtoType>();
3466 if (ArgFunctionTypeP->getCallConv() == CC &&
3467 ArgFunctionTypeP->getNoReturnAttr() == NoReturn)
3468 return ArgFunctionType;
3469
3470 FunctionType::ExtInfo EI = ArgFunctionTypeP->getExtInfo().withCallingConv(CC);
3471 EI = EI.withNoReturn(NoReturn);
3472 ArgFunctionTypeP =
3473 cast<FunctionProtoType>(Context.adjustFunctionType(ArgFunctionTypeP, EI));
3474 return QualType(ArgFunctionTypeP, 0);
3475}
3476
Douglas Gregor83314aa2009-07-08 20:55:45 +00003477/// \brief Deduce template arguments when taking the address of a function
Douglas Gregor4b52e252009-12-21 23:17:24 +00003478/// template (C++ [temp.deduct.funcaddr]) or matching a specialization to
3479/// a template.
Douglas Gregor83314aa2009-07-08 20:55:45 +00003480///
3481/// \param FunctionTemplate the function template for which we are performing
3482/// template argument deduction.
3483///
James Dennett40ae6662012-06-22 08:52:37 +00003484/// \param ExplicitTemplateArgs the explicitly-specified template
Douglas Gregor4b52e252009-12-21 23:17:24 +00003485/// arguments.
Douglas Gregor83314aa2009-07-08 20:55:45 +00003486///
3487/// \param ArgFunctionType the function type that will be used as the
3488/// "argument" type (A) when performing template argument deduction from the
Douglas Gregor4b52e252009-12-21 23:17:24 +00003489/// function template's function type. This type may be NULL, if there is no
3490/// argument type to compare against, in C++0x [temp.arg.explicit]p3.
Douglas Gregor83314aa2009-07-08 20:55:45 +00003491///
3492/// \param Specialization if template argument deduction was successful,
Mike Stump1eb44332009-09-09 15:08:12 +00003493/// this will be set to the function template specialization produced by
Douglas Gregor83314aa2009-07-08 20:55:45 +00003494/// template argument deduction.
3495///
3496/// \param Info the argument will be updated to provide additional information
3497/// about template argument deduction.
3498///
3499/// \returns the result of template argument deduction.
3500Sema::TemplateDeductionResult
3501Sema::DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
Douglas Gregor67714232011-03-03 02:41:12 +00003502 TemplateArgumentListInfo *ExplicitTemplateArgs,
Douglas Gregor83314aa2009-07-08 20:55:45 +00003503 QualType ArgFunctionType,
3504 FunctionDecl *&Specialization,
Douglas Gregor092140a2013-04-17 08:45:07 +00003505 TemplateDeductionInfo &Info,
3506 bool InOverloadResolution) {
Douglas Gregorae19fbb2012-09-13 21:01:57 +00003507 if (FunctionTemplate->isInvalidDecl())
3508 return TDK_Invalid;
3509
Douglas Gregor83314aa2009-07-08 20:55:45 +00003510 FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
3511 TemplateParameterList *TemplateParams
3512 = FunctionTemplate->getTemplateParameters();
3513 QualType FunctionType = Function->getType();
Bill Wendling37c07bf2013-12-02 02:05:28 +00003514 if (!InOverloadResolution)
3515 ArgFunctionType = adjustCCAndNoReturn(ArgFunctionType, FunctionType);
Mike Stump1eb44332009-09-09 15:08:12 +00003516
Douglas Gregor83314aa2009-07-08 20:55:45 +00003517 // Substitute any explicit template arguments.
John McCall2a7fb272010-08-25 05:32:35 +00003518 LocalInstantiationScope InstScope(*this);
Chris Lattner5f9e2722011-07-23 10:55:15 +00003519 SmallVector<DeducedTemplateArgument, 4> Deduced;
Douglas Gregor02024a92010-03-28 02:42:43 +00003520 unsigned NumExplicitlySpecified = 0;
Chris Lattner5f9e2722011-07-23 10:55:15 +00003521 SmallVector<QualType, 4> ParamTypes;
John McCalld5532b62009-11-23 01:53:49 +00003522 if (ExplicitTemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00003523 if (TemplateDeductionResult Result
3524 = SubstituteExplicitTemplateArguments(FunctionTemplate,
John McCalld5532b62009-11-23 01:53:49 +00003525 *ExplicitTemplateArgs,
Mike Stump1eb44332009-09-09 15:08:12 +00003526 Deduced, ParamTypes,
Douglas Gregor83314aa2009-07-08 20:55:45 +00003527 &FunctionType, Info))
3528 return Result;
Douglas Gregor02024a92010-03-28 02:42:43 +00003529
3530 NumExplicitlySpecified = Deduced.size();
Douglas Gregor83314aa2009-07-08 20:55:45 +00003531 }
3532
Eli Friedman59a839c2012-02-08 03:07:05 +00003533 // Unevaluated SFINAE context.
3534 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +00003535 SFINAETrap Trap(*this);
3536
John McCalleff92132010-02-02 02:21:27 +00003537 Deduced.resize(TemplateParams->size());
3538
Richard Smith60e141e2013-05-04 07:00:32 +00003539 // If the function has a deduced return type, substitute it for a dependent
3540 // type so that we treat it as a non-deduced context in what follows.
Richard Smith37e849a2013-08-14 20:16:31 +00003541 bool HasDeducedReturnType = false;
Stephen Hines176edba2014-12-01 14:53:08 -08003542 if (getLangOpts().CPlusPlus14 && InOverloadResolution &&
Stephen Hines651f13c2014-04-23 16:59:28 -07003543 Function->getReturnType()->getContainedAutoType()) {
Richard Smith60e141e2013-05-04 07:00:32 +00003544 FunctionType = SubstAutoType(FunctionType, Context.DependentTy);
Richard Smith37e849a2013-08-14 20:16:31 +00003545 HasDeducedReturnType = true;
Richard Smith60e141e2013-05-04 07:00:32 +00003546 }
3547
Douglas Gregor4b52e252009-12-21 23:17:24 +00003548 if (!ArgFunctionType.isNull()) {
Douglas Gregor092140a2013-04-17 08:45:07 +00003549 unsigned TDF = TDF_TopLevelParameterTypeList;
3550 if (InOverloadResolution) TDF |= TDF_InOverloadResolution;
Douglas Gregor4b52e252009-12-21 23:17:24 +00003551 // Deduce template arguments from the function type.
Douglas Gregor4b52e252009-12-21 23:17:24 +00003552 if (TemplateDeductionResult Result
Sebastian Redlbb95e512012-01-17 22:49:52 +00003553 = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams,
Douglas Gregor092140a2013-04-17 08:45:07 +00003554 FunctionType, ArgFunctionType,
3555 Info, Deduced, TDF))
Douglas Gregor4b52e252009-12-21 23:17:24 +00003556 return Result;
3557 }
Douglas Gregorfbb6fad2010-09-29 21:14:36 +00003558
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003559 if (TemplateDeductionResult Result
Douglas Gregorfbb6fad2010-09-29 21:14:36 +00003560 = FinishTemplateArgumentDeduction(FunctionTemplate, Deduced,
3561 NumExplicitlySpecified,
3562 Specialization, Info))
3563 return Result;
3564
Richard Smith60e141e2013-05-04 07:00:32 +00003565 // If the function has a deduced return type, deduce it now, so we can check
3566 // that the deduced function type matches the requested type.
Richard Smith37e849a2013-08-14 20:16:31 +00003567 if (HasDeducedReturnType &&
Stephen Hines651f13c2014-04-23 16:59:28 -07003568 Specialization->getReturnType()->isUndeducedType() &&
Richard Smith60e141e2013-05-04 07:00:32 +00003569 DeduceReturnType(Specialization, Info.getLocation(), false))
3570 return TDK_MiscellaneousDeductionFailure;
3571
Douglas Gregorfbb6fad2010-09-29 21:14:36 +00003572 // If the requested function type does not match the actual type of the
Douglas Gregor092140a2013-04-17 08:45:07 +00003573 // specialization with respect to arguments of compatible pointer to function
3574 // types, template argument deduction fails.
3575 if (!ArgFunctionType.isNull()) {
3576 if (InOverloadResolution && !isSameOrCompatibleFunctionType(
3577 Context.getCanonicalType(Specialization->getType()),
3578 Context.getCanonicalType(ArgFunctionType)))
3579 return TDK_MiscellaneousDeductionFailure;
3580 else if(!InOverloadResolution &&
3581 !Context.hasSameType(Specialization->getType(), ArgFunctionType))
3582 return TDK_MiscellaneousDeductionFailure;
3583 }
Douglas Gregorfbb6fad2010-09-29 21:14:36 +00003584
3585 return TDK_Success;
Douglas Gregor83314aa2009-07-08 20:55:45 +00003586}
3587
Faisal Vali56fe35b2013-09-29 17:08:32 +00003588/// \brief Given a function declaration (e.g. a generic lambda conversion
3589/// function) that contains an 'auto' in its result type, substitute it
Faisal Vali9bd1c132013-10-24 23:40:02 +00003590/// with TypeToReplaceAutoWith. Be careful to pass in the type you want
3591/// to replace 'auto' with and not the actual result type you want
3592/// to set the function to.
Faisal Valid6992ab2013-09-29 08:45:24 +00003593static inline void
Faisal Vali9bd1c132013-10-24 23:40:02 +00003594SubstAutoWithinFunctionReturnType(FunctionDecl *F,
Faisal Valid6992ab2013-09-29 08:45:24 +00003595 QualType TypeToReplaceAutoWith, Sema &S) {
Faisal Vali9bd1c132013-10-24 23:40:02 +00003596 assert(!TypeToReplaceAutoWith->getContainedAutoType());
Stephen Hines651f13c2014-04-23 16:59:28 -07003597 QualType AutoResultType = F->getReturnType();
Faisal Vali56fe35b2013-09-29 17:08:32 +00003598 assert(AutoResultType->getContainedAutoType());
3599 QualType DeducedResultType = S.SubstAutoType(AutoResultType,
Faisal Valid6992ab2013-09-29 08:45:24 +00003600 TypeToReplaceAutoWith);
3601 S.Context.adjustDeducedFunctionResultType(F, DeducedResultType);
3602}
Faisal Vali9bd1c132013-10-24 23:40:02 +00003603
3604/// \brief Given a specialized conversion operator of a generic lambda
3605/// create the corresponding specializations of the call operator and
3606/// the static-invoker. If the return type of the call operator is auto,
3607/// deduce its return type and check if that matches the
3608/// return type of the destination function ptr.
3609
3610static inline Sema::TemplateDeductionResult
3611SpecializeCorrespondingLambdaCallOperatorAndInvoker(
3612 CXXConversionDecl *ConversionSpecialized,
3613 SmallVectorImpl<DeducedTemplateArgument> &DeducedArguments,
3614 QualType ReturnTypeOfDestFunctionPtr,
3615 TemplateDeductionInfo &TDInfo,
3616 Sema &S) {
3617
3618 CXXRecordDecl *LambdaClass = ConversionSpecialized->getParent();
3619 assert(LambdaClass && LambdaClass->isGenericLambda());
3620
3621 CXXMethodDecl *CallOpGeneric = LambdaClass->getLambdaCallOperator();
Stephen Hines651f13c2014-04-23 16:59:28 -07003622 QualType CallOpResultType = CallOpGeneric->getReturnType();
Faisal Vali9bd1c132013-10-24 23:40:02 +00003623 const bool GenericLambdaCallOperatorHasDeducedReturnType =
3624 CallOpResultType->getContainedAutoType();
3625
3626 FunctionTemplateDecl *CallOpTemplate =
3627 CallOpGeneric->getDescribedFunctionTemplate();
3628
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003629 FunctionDecl *CallOpSpecialized = nullptr;
Faisal Vali9bd1c132013-10-24 23:40:02 +00003630 // Use the deduced arguments of the conversion function, to specialize our
3631 // generic lambda's call operator.
3632 if (Sema::TemplateDeductionResult Result
3633 = S.FinishTemplateArgumentDeduction(CallOpTemplate,
3634 DeducedArguments,
3635 0, CallOpSpecialized, TDInfo))
3636 return Result;
3637
3638 // If we need to deduce the return type, do so (instantiates the callop).
Stephen Hines651f13c2014-04-23 16:59:28 -07003639 if (GenericLambdaCallOperatorHasDeducedReturnType &&
3640 CallOpSpecialized->getReturnType()->isUndeducedType())
Faisal Vali9bd1c132013-10-24 23:40:02 +00003641 S.DeduceReturnType(CallOpSpecialized,
3642 CallOpSpecialized->getPointOfInstantiation(),
3643 /*Diagnose*/ true);
3644
3645 // Check to see if the return type of the destination ptr-to-function
3646 // matches the return type of the call operator.
Stephen Hines651f13c2014-04-23 16:59:28 -07003647 if (!S.Context.hasSameType(CallOpSpecialized->getReturnType(),
Faisal Vali9bd1c132013-10-24 23:40:02 +00003648 ReturnTypeOfDestFunctionPtr))
3649 return Sema::TDK_NonDeducedMismatch;
3650 // Since we have succeeded in matching the source and destination
3651 // ptr-to-functions (now including return type), and have successfully
3652 // specialized our corresponding call operator, we are ready to
3653 // specialize the static invoker with the deduced arguments of our
3654 // ptr-to-function.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003655 FunctionDecl *InvokerSpecialized = nullptr;
Faisal Vali9bd1c132013-10-24 23:40:02 +00003656 FunctionTemplateDecl *InvokerTemplate = LambdaClass->
3657 getLambdaStaticInvoker()->getDescribedFunctionTemplate();
3658
3659 Sema::TemplateDeductionResult LLVM_ATTRIBUTE_UNUSED Result
3660 = S.FinishTemplateArgumentDeduction(InvokerTemplate, DeducedArguments, 0,
3661 InvokerSpecialized, TDInfo);
3662 assert(Result == Sema::TDK_Success &&
3663 "If the call operator succeeded so should the invoker!");
3664 // Set the result type to match the corresponding call operator
3665 // specialization's result type.
Stephen Hines651f13c2014-04-23 16:59:28 -07003666 if (GenericLambdaCallOperatorHasDeducedReturnType &&
3667 InvokerSpecialized->getReturnType()->isUndeducedType()) {
Faisal Vali9bd1c132013-10-24 23:40:02 +00003668 // Be sure to get the type to replace 'auto' with and not
3669 // the full result type of the call op specialization
3670 // to substitute into the 'auto' of the invoker and conversion
3671 // function.
3672 // For e.g.
3673 // int* (*fp)(int*) = [](auto* a) -> auto* { return a; };
3674 // We don't want to subst 'int*' into 'auto' to get int**.
3675
Stephen Hines651f13c2014-04-23 16:59:28 -07003676 QualType TypeToReplaceAutoWith = CallOpSpecialized->getReturnType()
3677 ->getContainedAutoType()
3678 ->getDeducedType();
Faisal Vali9bd1c132013-10-24 23:40:02 +00003679 SubstAutoWithinFunctionReturnType(InvokerSpecialized,
3680 TypeToReplaceAutoWith, S);
3681 SubstAutoWithinFunctionReturnType(ConversionSpecialized,
3682 TypeToReplaceAutoWith, S);
3683 }
3684
3685 // Ensure that static invoker doesn't have a const qualifier.
3686 // FIXME: When creating the InvokerTemplate in SemaLambda.cpp
3687 // do not use the CallOperator's TypeSourceInfo which allows
3688 // the const qualifier to leak through.
3689 const FunctionProtoType *InvokerFPT = InvokerSpecialized->
3690 getType().getTypePtr()->castAs<FunctionProtoType>();
3691 FunctionProtoType::ExtProtoInfo EPI = InvokerFPT->getExtProtoInfo();
3692 EPI.TypeQuals = 0;
3693 InvokerSpecialized->setType(S.Context.getFunctionType(
Stephen Hines651f13c2014-04-23 16:59:28 -07003694 InvokerFPT->getReturnType(), InvokerFPT->getParamTypes(), EPI));
Faisal Vali9bd1c132013-10-24 23:40:02 +00003695 return Sema::TDK_Success;
3696}
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003697/// \brief Deduce template arguments for a templated conversion
3698/// function (C++ [temp.deduct.conv]) and, if successful, produce a
3699/// conversion function template specialization.
3700Sema::TemplateDeductionResult
Faisal Valid6992ab2013-09-29 08:45:24 +00003701Sema::DeduceTemplateArguments(FunctionTemplateDecl *ConversionTemplate,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003702 QualType ToType,
3703 CXXConversionDecl *&Specialization,
3704 TemplateDeductionInfo &Info) {
Faisal Valid6992ab2013-09-29 08:45:24 +00003705 if (ConversionTemplate->isInvalidDecl())
Douglas Gregorae19fbb2012-09-13 21:01:57 +00003706 return TDK_Invalid;
3707
Faisal Vali9bd1c132013-10-24 23:40:02 +00003708 CXXConversionDecl *ConversionGeneric
Faisal Valid6992ab2013-09-29 08:45:24 +00003709 = cast<CXXConversionDecl>(ConversionTemplate->getTemplatedDecl());
3710
Faisal Vali9bd1c132013-10-24 23:40:02 +00003711 QualType FromType = ConversionGeneric->getConversionType();
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003712
3713 // Canonicalize the types for deduction.
3714 QualType P = Context.getCanonicalType(FromType);
3715 QualType A = Context.getCanonicalType(ToType);
3716
Douglas Gregor5453d932011-03-06 09:03:20 +00003717 // C++0x [temp.deduct.conv]p2:
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003718 // If P is a reference type, the type referred to by P is used for
3719 // type deduction.
3720 if (const ReferenceType *PRef = P->getAs<ReferenceType>())
3721 P = PRef->getPointeeType();
3722
Douglas Gregor5453d932011-03-06 09:03:20 +00003723 // C++0x [temp.deduct.conv]p4:
3724 // [...] If A is a reference type, the type referred to by A is used
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003725 // for type deduction.
3726 if (const ReferenceType *ARef = A->getAs<ReferenceType>())
Douglas Gregor5453d932011-03-06 09:03:20 +00003727 A = ARef->getPointeeType().getUnqualifiedType();
3728 // C++ [temp.deduct.conv]p3:
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003729 //
Mike Stump1eb44332009-09-09 15:08:12 +00003730 // If A is not a reference type:
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003731 else {
3732 assert(!A->isReferenceType() && "Reference types were handled above");
3733
3734 // - If P is an array type, the pointer type produced by the
Mike Stump1eb44332009-09-09 15:08:12 +00003735 // array-to-pointer standard conversion (4.2) is used in place
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003736 // of P for type deduction; otherwise,
3737 if (P->isArrayType())
3738 P = Context.getArrayDecayedType(P);
3739 // - If P is a function type, the pointer type produced by the
3740 // function-to-pointer standard conversion (4.3) is used in
3741 // place of P for type deduction; otherwise,
3742 else if (P->isFunctionType())
3743 P = Context.getPointerType(P);
3744 // - If P is a cv-qualified type, the top level cv-qualifiers of
NAKAMURA Takumi00995302011-01-27 07:09:49 +00003745 // P's type are ignored for type deduction.
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003746 else
3747 P = P.getUnqualifiedType();
3748
Douglas Gregor5453d932011-03-06 09:03:20 +00003749 // C++0x [temp.deduct.conv]p4:
NAKAMURA Takumi00995302011-01-27 07:09:49 +00003750 // If A is a cv-qualified type, the top level cv-qualifiers of A's
Stephen Hines176edba2014-12-01 14:53:08 -08003751 // type are ignored for type deduction. If A is a reference type, the type
Douglas Gregor5453d932011-03-06 09:03:20 +00003752 // referred to by A is used for type deduction.
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003753 A = A.getUnqualifiedType();
3754 }
3755
Eli Friedman59a839c2012-02-08 03:07:05 +00003756 // Unevaluated SFINAE context.
3757 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +00003758 SFINAETrap Trap(*this);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003759
3760 // C++ [temp.deduct.conv]p1:
3761 // Template argument deduction is done by comparing the return
3762 // type of the template conversion function (call it P) with the
3763 // type that is required as the result of the conversion (call it
3764 // A) as described in 14.8.2.4.
3765 TemplateParameterList *TemplateParams
Faisal Valid6992ab2013-09-29 08:45:24 +00003766 = ConversionTemplate->getTemplateParameters();
Chris Lattner5f9e2722011-07-23 10:55:15 +00003767 SmallVector<DeducedTemplateArgument, 4> Deduced;
Mike Stump1eb44332009-09-09 15:08:12 +00003768 Deduced.resize(TemplateParams->size());
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003769
3770 // C++0x [temp.deduct.conv]p4:
3771 // In general, the deduction process attempts to find template
3772 // argument values that will make the deduced A identical to
3773 // A. However, there are two cases that allow a difference:
3774 unsigned TDF = 0;
3775 // - If the original A is a reference type, A can be more
3776 // cv-qualified than the deduced A (i.e., the type referred to
3777 // by the reference)
3778 if (ToType->isReferenceType())
3779 TDF |= TDF_ParamWithReferenceType;
3780 // - The deduced A can be another pointer or pointer to member
NAKAMURA Takumi00995302011-01-27 07:09:49 +00003781 // type that can be converted to A via a qualification
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003782 // conversion.
3783 //
3784 // (C++0x [temp.deduct.conv]p6 clarifies that this only happens when
3785 // both P and A are pointers or member pointers. In this case, we
3786 // just ignore cv-qualifiers completely).
3787 if ((P->isPointerType() && A->isPointerType()) ||
Douglas Gregor2cae1e22011-08-30 00:37:54 +00003788 (P->isMemberPointerType() && A->isMemberPointerType()))
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003789 TDF |= TDF_IgnoreQualifiers;
3790 if (TemplateDeductionResult Result
Sebastian Redlbb95e512012-01-17 22:49:52 +00003791 = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams,
3792 P, A, Info, Deduced, TDF))
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003793 return Result;
Faisal Vali56fe35b2013-09-29 17:08:32 +00003794
3795 // Create an Instantiation Scope for finalizing the operator.
3796 LocalInstantiationScope InstScope(*this);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003797 // Finish template argument deduction.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003798 FunctionDecl *ConversionSpecialized = nullptr;
Faisal Vali56fe35b2013-09-29 17:08:32 +00003799 TemplateDeductionResult Result
Faisal Vali9bd1c132013-10-24 23:40:02 +00003800 = FinishTemplateArgumentDeduction(ConversionTemplate, Deduced, 0,
3801 ConversionSpecialized, Info);
3802 Specialization = cast_or_null<CXXConversionDecl>(ConversionSpecialized);
3803
3804 // If the conversion operator is being invoked on a lambda closure to convert
Stephen Hines176edba2014-12-01 14:53:08 -08003805 // to a ptr-to-function, use the deduced arguments from the conversion
3806 // function to specialize the corresponding call operator.
Faisal Vali9bd1c132013-10-24 23:40:02 +00003807 // e.g., int (*fp)(int) = [](auto a) { return a; };
3808 if (Result == TDK_Success && isLambdaConversionOperator(ConversionGeneric)) {
3809
3810 // Get the return type of the destination ptr-to-function we are converting
3811 // to. This is necessary for matching the lambda call operator's return
3812 // type to that of the destination ptr-to-function's return type.
3813 assert(A->isPointerType() &&
3814 "Can only convert from lambda to ptr-to-function");
3815 const FunctionType *ToFunType =
3816 A->getPointeeType().getTypePtr()->getAs<FunctionType>();
Stephen Hines651f13c2014-04-23 16:59:28 -07003817 const QualType DestFunctionPtrReturnType = ToFunType->getReturnType();
3818
Faisal Vali9bd1c132013-10-24 23:40:02 +00003819 // Create the corresponding specializations of the call operator and
3820 // the static-invoker; and if the return type is auto,
3821 // deduce the return type and check if it matches the
3822 // DestFunctionPtrReturnType.
3823 // For instance:
3824 // auto L = [](auto a) { return f(a); };
3825 // int (*fp)(int) = L;
3826 // char (*fp2)(int) = L; <-- Not OK.
3827
3828 Result = SpecializeCorrespondingLambdaCallOperatorAndInvoker(
3829 Specialization, Deduced, DestFunctionPtrReturnType,
3830 Info, *this);
3831 }
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003832 return Result;
3833}
3834
Douglas Gregor4b52e252009-12-21 23:17:24 +00003835/// \brief Deduce template arguments for a function template when there is
3836/// nothing to deduce against (C++0x [temp.arg.explicit]p3).
3837///
3838/// \param FunctionTemplate the function template for which we are performing
3839/// template argument deduction.
3840///
James Dennett40ae6662012-06-22 08:52:37 +00003841/// \param ExplicitTemplateArgs the explicitly-specified template
Douglas Gregor4b52e252009-12-21 23:17:24 +00003842/// arguments.
3843///
3844/// \param Specialization if template argument deduction was successful,
3845/// this will be set to the function template specialization produced by
3846/// template argument deduction.
3847///
3848/// \param Info the argument will be updated to provide additional information
3849/// about template argument deduction.
3850///
3851/// \returns the result of template argument deduction.
3852Sema::TemplateDeductionResult
3853Sema::DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
Douglas Gregor67714232011-03-03 02:41:12 +00003854 TemplateArgumentListInfo *ExplicitTemplateArgs,
Douglas Gregor4b52e252009-12-21 23:17:24 +00003855 FunctionDecl *&Specialization,
Douglas Gregor092140a2013-04-17 08:45:07 +00003856 TemplateDeductionInfo &Info,
3857 bool InOverloadResolution) {
Douglas Gregor4b52e252009-12-21 23:17:24 +00003858 return DeduceTemplateArguments(FunctionTemplate, ExplicitTemplateArgs,
Douglas Gregor092140a2013-04-17 08:45:07 +00003859 QualType(), Specialization, Info,
3860 InOverloadResolution);
Douglas Gregor4b52e252009-12-21 23:17:24 +00003861}
3862
Richard Smith34b41d92011-02-20 03:19:35 +00003863namespace {
3864 /// Substitute the 'auto' type specifier within a type for a given replacement
3865 /// type.
3866 class SubstituteAutoTransform :
3867 public TreeTransform<SubstituteAutoTransform> {
3868 QualType Replacement;
3869 public:
Stephen Hines176edba2014-12-01 14:53:08 -08003870 SubstituteAutoTransform(Sema &SemaRef, QualType Replacement)
3871 : TreeTransform<SubstituteAutoTransform>(SemaRef),
3872 Replacement(Replacement) {}
3873
Richard Smith34b41d92011-02-20 03:19:35 +00003874 QualType TransformAutoType(TypeLocBuilder &TLB, AutoTypeLoc TL) {
3875 // If we're building the type pattern to deduce against, don't wrap the
3876 // substituted type in an AutoType. Certain template deduction rules
3877 // apply only when a template type parameter appears directly (and not if
3878 // the parameter is found through desugaring). For instance:
3879 // auto &&lref = lvalue;
3880 // must transform into "rvalue reference to T" not "rvalue reference to
3881 // auto type deduced as T" in order for [temp.deduct.call]p3 to apply.
Richard Smith60e141e2013-05-04 07:00:32 +00003882 if (!Replacement.isNull() && isa<TemplateTypeParmType>(Replacement)) {
Richard Smith34b41d92011-02-20 03:19:35 +00003883 QualType Result = Replacement;
Richard Smitha2c36462013-04-26 16:15:35 +00003884 TemplateTypeParmTypeLoc NewTL =
3885 TLB.push<TemplateTypeParmTypeLoc>(Result);
Richard Smith34b41d92011-02-20 03:19:35 +00003886 NewTL.setNameLoc(TL.getNameLoc());
3887 return Result;
3888 } else {
Richard Smithdc7a4f52013-04-30 13:56:41 +00003889 bool Dependent =
3890 !Replacement.isNull() && Replacement->isDependentType();
3891 QualType Result =
3892 SemaRef.Context.getAutoType(Dependent ? QualType() : Replacement,
3893 TL.getTypePtr()->isDecltypeAuto(),
Manuel Klimek152b4e42013-08-22 12:12:24 +00003894 Dependent);
Richard Smith34b41d92011-02-20 03:19:35 +00003895 AutoTypeLoc NewTL = TLB.push<AutoTypeLoc>(Result);
3896 NewTL.setNameLoc(TL.getNameLoc());
3897 return Result;
3898 }
3899 }
Douglas Gregordfca6f52012-02-13 22:00:16 +00003900
3901 ExprResult TransformLambdaExpr(LambdaExpr *E) {
3902 // Lambdas never need to be transformed.
3903 return E;
3904 }
Richard Smith9b131752013-04-30 21:23:01 +00003905
Richard Smith60e141e2013-05-04 07:00:32 +00003906 QualType Apply(TypeLoc TL) {
3907 // Create some scratch storage for the transformed type locations.
3908 // FIXME: We're just going to throw this information away. Don't build it.
3909 TypeLocBuilder TLB;
3910 TLB.reserve(TL.getFullDataSize());
3911 return TransformType(TLB, TL);
Richard Smith9b131752013-04-30 21:23:01 +00003912 }
Richard Smith34b41d92011-02-20 03:19:35 +00003913 };
3914}
3915
Richard Smith60e141e2013-05-04 07:00:32 +00003916Sema::DeduceAutoResult
3917Sema::DeduceAutoType(TypeSourceInfo *Type, Expr *&Init, QualType &Result) {
3918 return DeduceAutoType(Type->getTypeLoc(), Init, Result);
3919}
3920
Richard Smith9b131752013-04-30 21:23:01 +00003921/// \brief Deduce the type for an auto type-specifier (C++11 [dcl.spec.auto]p6)
Richard Smith34b41d92011-02-20 03:19:35 +00003922///
3923/// \param Type the type pattern using the auto type-specifier.
Richard Smith34b41d92011-02-20 03:19:35 +00003924/// \param Init the initializer for the variable whose type is to be deduced.
Richard Smith34b41d92011-02-20 03:19:35 +00003925/// \param Result if type deduction was successful, this will be set to the
Richard Smith9b131752013-04-30 21:23:01 +00003926/// deduced type.
Sebastian Redlb832f6d2012-01-23 22:09:39 +00003927Sema::DeduceAutoResult
Richard Smith60e141e2013-05-04 07:00:32 +00003928Sema::DeduceAutoType(TypeLoc Type, Expr *&Init, QualType &Result) {
John McCall32509f12011-11-15 01:35:18 +00003929 if (Init->getType()->isNonOverloadPlaceholderType()) {
Richard Smith9b131752013-04-30 21:23:01 +00003930 ExprResult NonPlaceholder = CheckPlaceholderExpr(Init);
3931 if (NonPlaceholder.isInvalid())
3932 return DAR_FailedAlreadyDiagnosed;
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003933 Init = NonPlaceholder.get();
John McCall32509f12011-11-15 01:35:18 +00003934 }
3935
Richard Smith60e141e2013-05-04 07:00:32 +00003936 if (Init->isTypeDependent() || Type.getType()->isDependentType()) {
Richard Smith9b131752013-04-30 21:23:01 +00003937 Result = SubstituteAutoTransform(*this, Context.DependentTy).Apply(Type);
Richard Smith60e141e2013-05-04 07:00:32 +00003938 assert(!Result.isNull() && "substituting DependentTy can't fail");
Sebastian Redlb832f6d2012-01-23 22:09:39 +00003939 return DAR_Succeeded;
Richard Smith34b41d92011-02-20 03:19:35 +00003940 }
3941
Richard Smitha2c36462013-04-26 16:15:35 +00003942 // If this is a 'decltype(auto)' specifier, do the decltype dance.
3943 // Since 'decltype(auto)' can only occur at the top of the type, we
3944 // don't need to go digging for it.
Richard Smith60e141e2013-05-04 07:00:32 +00003945 if (const AutoType *AT = Type.getType()->getAs<AutoType>()) {
Richard Smitha2c36462013-04-26 16:15:35 +00003946 if (AT->isDecltypeAuto()) {
3947 if (isa<InitListExpr>(Init)) {
3948 Diag(Init->getLocStart(), diag::err_decltype_auto_initializer_list);
3949 return DAR_FailedAlreadyDiagnosed;
3950 }
3951
Stephen Hines0e2c34f2015-03-23 12:09:02 -07003952 QualType Deduced = BuildDecltypeType(Init, Init->getLocStart(), false);
Richard Smitha2c36462013-04-26 16:15:35 +00003953 // FIXME: Support a non-canonical deduced type for 'auto'.
3954 Deduced = Context.getCanonicalType(Deduced);
Richard Smith9b131752013-04-30 21:23:01 +00003955 Result = SubstituteAutoTransform(*this, Deduced).Apply(Type);
Richard Smith60e141e2013-05-04 07:00:32 +00003956 if (Result.isNull())
3957 return DAR_FailedAlreadyDiagnosed;
Richard Smitha2c36462013-04-26 16:15:35 +00003958 return DAR_Succeeded;
3959 }
3960 }
3961
Richard Smith34b41d92011-02-20 03:19:35 +00003962 SourceLocation Loc = Init->getExprLoc();
3963
3964 LocalInstantiationScope InstScope(*this);
3965
3966 // Build template<class TemplParam> void Func(FuncParam);
Chandler Carruth4fb86f82011-05-01 00:51:33 +00003967 TemplateTypeParmDecl *TemplParam =
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003968 TemplateTypeParmDecl::Create(Context, nullptr, SourceLocation(), Loc, 0, 0,
3969 nullptr, false, false);
Chandler Carruth4fb86f82011-05-01 00:51:33 +00003970 QualType TemplArg = QualType(TemplParam->getTypeForDecl(), 0);
3971 NamedDecl *TemplParamPtr = TemplParam;
Richard Smith483b9f32011-02-21 20:05:19 +00003972 FixedSizeTemplateParameterList<1> TemplateParams(Loc, Loc, &TemplParamPtr,
3973 Loc);
3974
Richard Smith9b131752013-04-30 21:23:01 +00003975 QualType FuncParam = SubstituteAutoTransform(*this, TemplArg).Apply(Type);
3976 assert(!FuncParam.isNull() &&
3977 "substituting template parameter for 'auto' failed");
Richard Smith34b41d92011-02-20 03:19:35 +00003978
3979 // Deduce type of TemplParam in Func(Init)
Chris Lattner5f9e2722011-07-23 10:55:15 +00003980 SmallVector<DeducedTemplateArgument, 1> Deduced;
Richard Smith34b41d92011-02-20 03:19:35 +00003981 Deduced.resize(1);
3982 QualType InitType = Init->getType();
3983 unsigned TDF = 0;
Richard Smith34b41d92011-02-20 03:19:35 +00003984
Craig Topper93e45992012-09-19 02:26:47 +00003985 TemplateDeductionInfo Info(Loc);
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00003986
Richard Smith8ad6c862012-07-08 04:13:07 +00003987 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00003988 if (InitList) {
3989 for (unsigned i = 0, e = InitList->getNumInits(); i < e; ++i) {
Richard Smith8ad6c862012-07-08 04:13:07 +00003990 if (DeduceTemplateArgumentByListElement(*this, &TemplateParams,
Douglas Gregord2803892012-04-04 05:10:53 +00003991 TemplArg,
3992 InitList->getInit(i),
3993 Info, Deduced, TDF))
Sebastian Redlb832f6d2012-01-23 22:09:39 +00003994 return DAR_Failed;
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00003995 }
3996 } else {
Douglas Gregord2803892012-04-04 05:10:53 +00003997 if (AdjustFunctionParmAndArgTypesForDeduction(*this, &TemplateParams,
3998 FuncParam, InitType, Init,
3999 TDF))
4000 return DAR_Failed;
Richard Smith8ad6c862012-07-08 04:13:07 +00004001
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00004002 if (DeduceTemplateArgumentsByTypeMatch(*this, &TemplateParams, FuncParam,
4003 InitType, Info, Deduced, TDF))
Sebastian Redlb832f6d2012-01-23 22:09:39 +00004004 return DAR_Failed;
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00004005 }
Richard Smith34b41d92011-02-20 03:19:35 +00004006
Eli Friedman70a01892012-11-06 23:56:42 +00004007 if (Deduced[0].getKind() != TemplateArgument::Type)
Sebastian Redlb832f6d2012-01-23 22:09:39 +00004008 return DAR_Failed;
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00004009
Eli Friedman70a01892012-11-06 23:56:42 +00004010 QualType DeducedType = Deduced[0].getAsType();
4011
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00004012 if (InitList) {
4013 DeducedType = BuildStdInitializerList(DeducedType, Loc);
4014 if (DeducedType.isNull())
Sebastian Redlb832f6d2012-01-23 22:09:39 +00004015 return DAR_FailedAlreadyDiagnosed;
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00004016 }
4017
Richard Smith9b131752013-04-30 21:23:01 +00004018 Result = SubstituteAutoTransform(*this, DeducedType).Apply(Type);
Richard Smith60e141e2013-05-04 07:00:32 +00004019 if (Result.isNull())
4020 return DAR_FailedAlreadyDiagnosed;
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00004021
Douglas Gregor9a636e82011-06-17 05:31:46 +00004022 // Check that the deduced argument type is compatible with the original
4023 // argument type per C++ [temp.deduct.call]p4.
Richard Smith9b131752013-04-30 21:23:01 +00004024 if (!InitList && !Result.isNull() &&
4025 CheckOriginalCallArgDeduction(*this,
Douglas Gregor9a636e82011-06-17 05:31:46 +00004026 Sema::OriginalCallArg(FuncParam,0,InitType),
Richard Smith9b131752013-04-30 21:23:01 +00004027 Result)) {
4028 Result = QualType();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00004029 return DAR_Failed;
Douglas Gregor9a636e82011-06-17 05:31:46 +00004030 }
4031
Sebastian Redlb832f6d2012-01-23 22:09:39 +00004032 return DAR_Succeeded;
Richard Smith34b41d92011-02-20 03:19:35 +00004033}
4034
Faisal Valifad9e132013-09-26 19:54:12 +00004035QualType Sema::SubstAutoType(QualType TypeWithAuto,
4036 QualType TypeToReplaceAuto) {
4037 return SubstituteAutoTransform(*this, TypeToReplaceAuto).
4038 TransformType(TypeWithAuto);
4039}
4040
4041TypeSourceInfo* Sema::SubstAutoTypeSourceInfo(TypeSourceInfo *TypeWithAuto,
4042 QualType TypeToReplaceAuto) {
4043 return SubstituteAutoTransform(*this, TypeToReplaceAuto).
4044 TransformType(TypeWithAuto);
Richard Smithdc7a4f52013-04-30 13:56:41 +00004045}
4046
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00004047void Sema::DiagnoseAutoDeductionFailure(VarDecl *VDecl, Expr *Init) {
4048 if (isa<InitListExpr>(Init))
4049 Diag(VDecl->getLocation(),
Richard Smith04fa7a32013-09-28 04:02:39 +00004050 VDecl->isInitCapture()
4051 ? diag::err_init_capture_deduction_failure_from_init_list
4052 : diag::err_auto_var_deduction_failure_from_init_list)
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00004053 << VDecl->getDeclName() << VDecl->getType() << Init->getSourceRange();
4054 else
Richard Smith04fa7a32013-09-28 04:02:39 +00004055 Diag(VDecl->getLocation(),
4056 VDecl->isInitCapture() ? diag::err_init_capture_deduction_failure
4057 : diag::err_auto_var_deduction_failure)
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00004058 << VDecl->getDeclName() << VDecl->getType() << Init->getType()
4059 << Init->getSourceRange();
4060}
4061
Richard Smith60e141e2013-05-04 07:00:32 +00004062bool Sema::DeduceReturnType(FunctionDecl *FD, SourceLocation Loc,
4063 bool Diagnose) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004064 assert(FD->getReturnType()->isUndeducedType());
Richard Smith60e141e2013-05-04 07:00:32 +00004065
4066 if (FD->getTemplateInstantiationPattern())
4067 InstantiateFunctionDefinition(Loc, FD);
4068
Stephen Hines651f13c2014-04-23 16:59:28 -07004069 bool StillUndeduced = FD->getReturnType()->isUndeducedType();
Richard Smith60e141e2013-05-04 07:00:32 +00004070 if (StillUndeduced && Diagnose && !FD->isInvalidDecl()) {
4071 Diag(Loc, diag::err_auto_fn_used_before_defined) << FD;
4072 Diag(FD->getLocation(), diag::note_callee_decl) << FD;
4073 }
4074
4075 return StillUndeduced;
4076}
4077
Douglas Gregor8a514912009-09-14 18:39:43 +00004078static void
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004079MarkUsedTemplateParameters(ASTContext &Ctx, QualType T,
Douglas Gregore73bb602009-09-14 21:25:05 +00004080 bool OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004081 unsigned Level,
Benjamin Kramer013b3662012-01-30 16:17:39 +00004082 llvm::SmallBitVector &Deduced);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004083
4084/// \brief If this is a non-static member function,
Craig Topper1310aac2013-07-08 04:13:06 +00004085static void
4086AddImplicitObjectParameterType(ASTContext &Context,
4087 CXXMethodDecl *Method,
4088 SmallVectorImpl<QualType> &ArgTypes) {
Eli Friedman407c8472012-09-19 23:52:13 +00004089 // C++11 [temp.func.order]p3:
4090 // [...] The new parameter is of type "reference to cv A," where cv are
4091 // the cv-qualifiers of the function template (if any) and A is
4092 // the class of which the function template is a member.
Douglas Gregor77bc5722010-11-12 23:44:13 +00004093 //
Eli Friedman407c8472012-09-19 23:52:13 +00004094 // The standard doesn't say explicitly, but we pick the appropriate kind of
4095 // reference type based on [over.match.funcs]p4.
Douglas Gregor77bc5722010-11-12 23:44:13 +00004096 QualType ArgTy = Context.getTypeDeclType(Method->getParent());
4097 ArgTy = Context.getQualifiedType(ArgTy,
4098 Qualifiers::fromCVRMask(Method->getTypeQualifiers()));
Eli Friedman407c8472012-09-19 23:52:13 +00004099 if (Method->getRefQualifier() == RQ_RValue)
4100 ArgTy = Context.getRValueReferenceType(ArgTy);
4101 else
4102 ArgTy = Context.getLValueReferenceType(ArgTy);
Douglas Gregor77bc5722010-11-12 23:44:13 +00004103 ArgTypes.push_back(ArgTy);
4104}
4105
Douglas Gregor8a514912009-09-14 18:39:43 +00004106/// \brief Determine whether the function template \p FT1 is at least as
4107/// specialized as \p FT2.
4108static bool isAtLeastAsSpecializedAs(Sema &S,
John McCall5769d612010-02-08 23:07:23 +00004109 SourceLocation Loc,
Douglas Gregor8a514912009-09-14 18:39:43 +00004110 FunctionTemplateDecl *FT1,
4111 FunctionTemplateDecl *FT2,
4112 TemplatePartialOrderingContext TPOC,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004113 unsigned NumCallArguments1) {
Douglas Gregor8a514912009-09-14 18:39:43 +00004114 FunctionDecl *FD1 = FT1->getTemplatedDecl();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004115 FunctionDecl *FD2 = FT2->getTemplatedDecl();
Douglas Gregor8a514912009-09-14 18:39:43 +00004116 const FunctionProtoType *Proto1 = FD1->getType()->getAs<FunctionProtoType>();
4117 const FunctionProtoType *Proto2 = FD2->getType()->getAs<FunctionProtoType>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004118
Douglas Gregor8a514912009-09-14 18:39:43 +00004119 assert(Proto1 && Proto2 && "Function templates must have prototypes");
4120 TemplateParameterList *TemplateParams = FT2->getTemplateParameters();
Chris Lattner5f9e2722011-07-23 10:55:15 +00004121 SmallVector<DeducedTemplateArgument, 4> Deduced;
Douglas Gregor8a514912009-09-14 18:39:43 +00004122 Deduced.resize(TemplateParams->size());
4123
4124 // C++0x [temp.deduct.partial]p3:
4125 // The types used to determine the ordering depend on the context in which
4126 // the partial ordering is done:
Craig Topper93e45992012-09-19 02:26:47 +00004127 TemplateDeductionInfo Info(Loc);
Richard Smith66118c22013-09-11 00:52:39 +00004128 SmallVector<QualType, 4> Args2;
Douglas Gregor8a514912009-09-14 18:39:43 +00004129 switch (TPOC) {
4130 case TPOC_Call: {
4131 // - In the context of a function call, the function parameter types are
4132 // used.
Richard Smith66118c22013-09-11 00:52:39 +00004133 CXXMethodDecl *Method1 = dyn_cast<CXXMethodDecl>(FD1);
4134 CXXMethodDecl *Method2 = dyn_cast<CXXMethodDecl>(FD2);
Douglas Gregor8d706ec2010-11-15 15:41:16 +00004135
Eli Friedman9cef0062012-09-19 23:27:04 +00004136 // C++11 [temp.func.order]p3:
Douglas Gregor8d706ec2010-11-15 15:41:16 +00004137 // [...] If only one of the function templates is a non-static
4138 // member, that function template is considered to have a new
4139 // first parameter inserted in its function parameter list. The
4140 // new parameter is of type "reference to cv A," where cv are
4141 // the cv-qualifiers of the function template (if any) and A is
4142 // the class of which the function template is a member.
4143 //
Eli Friedman9cef0062012-09-19 23:27:04 +00004144 // Note that we interpret this to mean "if one of the function
4145 // templates is a non-static member and the other is a non-member";
4146 // otherwise, the ordering rules for static functions against non-static
4147 // functions don't make any sense.
4148 //
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004149 // C++98/03 doesn't have this provision but we've extended DR532 to cover
4150 // it as wording was broken prior to it.
Chris Lattner5f9e2722011-07-23 10:55:15 +00004151 SmallVector<QualType, 4> Args1;
Richard Smith66118c22013-09-11 00:52:39 +00004152
Richard Smith66118c22013-09-11 00:52:39 +00004153 unsigned NumComparedArguments = NumCallArguments1;
4154
4155 if (!Method2 && Method1 && !Method1->isStatic()) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004156 // Compare 'this' from Method1 against first parameter from Method2.
4157 AddImplicitObjectParameterType(S.Context, Method1, Args1);
4158 ++NumComparedArguments;
Richard Smith66118c22013-09-11 00:52:39 +00004159 } else if (!Method1 && Method2 && !Method2->isStatic()) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004160 // Compare 'this' from Method2 against first parameter from Method1.
4161 AddImplicitObjectParameterType(S.Context, Method2, Args2);
Richard Smith66118c22013-09-11 00:52:39 +00004162 }
4163
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004164 Args1.insert(Args1.end(), Proto1->param_type_begin(),
Stephen Hines651f13c2014-04-23 16:59:28 -07004165 Proto1->param_type_end());
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004166 Args2.insert(Args2.end(), Proto2->param_type_begin(),
Stephen Hines651f13c2014-04-23 16:59:28 -07004167 Proto2->param_type_end());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004168
Douglas Gregor5c7bf422011-01-11 17:34:58 +00004169 // C++ [temp.func.order]p5:
4170 // The presence of unused ellipsis and default arguments has no effect on
4171 // the partial ordering of function templates.
Richard Smith66118c22013-09-11 00:52:39 +00004172 if (Args1.size() > NumComparedArguments)
4173 Args1.resize(NumComparedArguments);
4174 if (Args2.size() > NumComparedArguments)
4175 Args2.resize(NumComparedArguments);
Douglas Gregor5c7bf422011-01-11 17:34:58 +00004176 if (DeduceTemplateArguments(S, TemplateParams, Args2.data(), Args2.size(),
4177 Args1.data(), Args1.size(), Info, Deduced,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004178 TDF_None, /*PartialOrdering=*/true))
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004179 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004180
Douglas Gregor8a514912009-09-14 18:39:43 +00004181 break;
4182 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004183
Douglas Gregor8a514912009-09-14 18:39:43 +00004184 case TPOC_Conversion:
4185 // - In the context of a call to a conversion operator, the return types
4186 // of the conversion function templates are used.
Stephen Hines651f13c2014-04-23 16:59:28 -07004187 if (DeduceTemplateArgumentsByTypeMatch(
4188 S, TemplateParams, Proto2->getReturnType(), Proto1->getReturnType(),
4189 Info, Deduced, TDF_None,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004190 /*PartialOrdering=*/true))
Douglas Gregor8a514912009-09-14 18:39:43 +00004191 return false;
4192 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004193
Douglas Gregor8a514912009-09-14 18:39:43 +00004194 case TPOC_Other:
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004195 // - In other contexts (14.6.6.2) the function template's function type
Douglas Gregor8a514912009-09-14 18:39:43 +00004196 // is used.
Sebastian Redlbb95e512012-01-17 22:49:52 +00004197 if (DeduceTemplateArgumentsByTypeMatch(S, TemplateParams,
4198 FD2->getType(), FD1->getType(),
4199 Info, Deduced, TDF_None,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004200 /*PartialOrdering=*/true))
Douglas Gregor8a514912009-09-14 18:39:43 +00004201 return false;
4202 break;
4203 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004204
Douglas Gregor8a514912009-09-14 18:39:43 +00004205 // C++0x [temp.deduct.partial]p11:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004206 // In most cases, all template parameters must have values in order for
4207 // deduction to succeed, but for partial ordering purposes a template
4208 // parameter may remain without a value provided it is not used in the
Douglas Gregor8a514912009-09-14 18:39:43 +00004209 // types being used for partial ordering. [ Note: a template parameter used
4210 // in a non-deduced context is considered used. -end note]
4211 unsigned ArgIdx = 0, NumArgs = Deduced.size();
4212 for (; ArgIdx != NumArgs; ++ArgIdx)
4213 if (Deduced[ArgIdx].isNull())
4214 break;
4215
4216 if (ArgIdx == NumArgs) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004217 // All template arguments were deduced. FT1 is at least as specialized
Douglas Gregor8a514912009-09-14 18:39:43 +00004218 // as FT2.
4219 return true;
4220 }
4221
Douglas Gregore73bb602009-09-14 21:25:05 +00004222 // Figure out which template parameters were used.
Benjamin Kramer013b3662012-01-30 16:17:39 +00004223 llvm::SmallBitVector UsedParameters(TemplateParams->size());
Douglas Gregor8a514912009-09-14 18:39:43 +00004224 switch (TPOC) {
Richard Smith66118c22013-09-11 00:52:39 +00004225 case TPOC_Call:
4226 for (unsigned I = 0, N = Args2.size(); I != N; ++I)
4227 ::MarkUsedTemplateParameters(S.Context, Args2[I], false,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004228 TemplateParams->getDepth(),
Douglas Gregore73bb602009-09-14 21:25:05 +00004229 UsedParameters);
Douglas Gregor8a514912009-09-14 18:39:43 +00004230 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004231
Douglas Gregor8a514912009-09-14 18:39:43 +00004232 case TPOC_Conversion:
Stephen Hines651f13c2014-04-23 16:59:28 -07004233 ::MarkUsedTemplateParameters(S.Context, Proto2->getReturnType(), false,
4234 TemplateParams->getDepth(), UsedParameters);
Douglas Gregor8a514912009-09-14 18:39:43 +00004235 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004236
Douglas Gregor8a514912009-09-14 18:39:43 +00004237 case TPOC_Other:
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004238 ::MarkUsedTemplateParameters(S.Context, FD2->getType(), false,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004239 TemplateParams->getDepth(),
4240 UsedParameters);
Douglas Gregor8a514912009-09-14 18:39:43 +00004241 break;
4242 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004243
Douglas Gregor8a514912009-09-14 18:39:43 +00004244 for (; ArgIdx != NumArgs; ++ArgIdx)
4245 // If this argument had no value deduced but was used in one of the types
4246 // used for partial ordering, then deduction fails.
4247 if (Deduced[ArgIdx].isNull() && UsedParameters[ArgIdx])
4248 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004249
Douglas Gregor8a514912009-09-14 18:39:43 +00004250 return true;
4251}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004252
Douglas Gregor9da95e62011-01-16 16:03:23 +00004253/// \brief Determine whether this a function template whose parameter-type-list
4254/// ends with a function parameter pack.
4255static bool isVariadicFunctionTemplate(FunctionTemplateDecl *FunTmpl) {
4256 FunctionDecl *Function = FunTmpl->getTemplatedDecl();
4257 unsigned NumParams = Function->getNumParams();
4258 if (NumParams == 0)
4259 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004260
Douglas Gregor9da95e62011-01-16 16:03:23 +00004261 ParmVarDecl *Last = Function->getParamDecl(NumParams - 1);
4262 if (!Last->isParameterPack())
4263 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004264
Douglas Gregor9da95e62011-01-16 16:03:23 +00004265 // Make sure that no previous parameter is a parameter pack.
4266 while (--NumParams > 0) {
4267 if (Function->getParamDecl(NumParams - 1)->isParameterPack())
4268 return false;
4269 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004270
Douglas Gregor9da95e62011-01-16 16:03:23 +00004271 return true;
4272}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004273
Douglas Gregorbf4ea562009-09-15 16:23:51 +00004274/// \brief Returns the more specialized function template according
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00004275/// to the rules of function template partial ordering (C++ [temp.func.order]).
4276///
4277/// \param FT1 the first function template
4278///
4279/// \param FT2 the second function template
4280///
Douglas Gregor8a514912009-09-14 18:39:43 +00004281/// \param TPOC the context in which we are performing partial ordering of
4282/// function templates.
Mike Stump1eb44332009-09-09 15:08:12 +00004283///
Richard Smith66118c22013-09-11 00:52:39 +00004284/// \param NumCallArguments1 The number of arguments in the call to FT1, used
4285/// only when \c TPOC is \c TPOC_Call.
4286///
4287/// \param NumCallArguments2 The number of arguments in the call to FT2, used
4288/// only when \c TPOC is \c TPOC_Call.
Douglas Gregor5c7bf422011-01-11 17:34:58 +00004289///
Douglas Gregorbf4ea562009-09-15 16:23:51 +00004290/// \returns the more specialized function template. If neither
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00004291/// template is more specialized, returns NULL.
4292FunctionTemplateDecl *
4293Sema::getMoreSpecializedTemplate(FunctionTemplateDecl *FT1,
4294 FunctionTemplateDecl *FT2,
John McCall5769d612010-02-08 23:07:23 +00004295 SourceLocation Loc,
Douglas Gregor5c7bf422011-01-11 17:34:58 +00004296 TemplatePartialOrderingContext TPOC,
Richard Smith66118c22013-09-11 00:52:39 +00004297 unsigned NumCallArguments1,
4298 unsigned NumCallArguments2) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004299 bool Better1 = isAtLeastAsSpecializedAs(*this, Loc, FT1, FT2, TPOC,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004300 NumCallArguments1);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004301 bool Better2 = isAtLeastAsSpecializedAs(*this, Loc, FT2, FT1, TPOC,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004302 NumCallArguments2);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004303
Douglas Gregor8a514912009-09-14 18:39:43 +00004304 if (Better1 != Better2) // We have a clear winner
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004305 return Better1 ? FT1 : FT2;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004306
Douglas Gregor8a514912009-09-14 18:39:43 +00004307 if (!Better1 && !Better2) // Neither is better than the other
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004308 return nullptr;
Douglas Gregor8a514912009-09-14 18:39:43 +00004309
Douglas Gregor9da95e62011-01-16 16:03:23 +00004310 // FIXME: This mimics what GCC implements, but doesn't match up with the
4311 // proposed resolution for core issue 692. This area needs to be sorted out,
4312 // but for now we attempt to maintain compatibility.
4313 bool Variadic1 = isVariadicFunctionTemplate(FT1);
4314 bool Variadic2 = isVariadicFunctionTemplate(FT2);
4315 if (Variadic1 != Variadic2)
4316 return Variadic1? FT2 : FT1;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004317
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004318 return nullptr;
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00004319}
Douglas Gregor83314aa2009-07-08 20:55:45 +00004320
Douglas Gregord5a423b2009-09-25 18:43:00 +00004321/// \brief Determine if the two templates are equivalent.
4322static bool isSameTemplate(TemplateDecl *T1, TemplateDecl *T2) {
4323 if (T1 == T2)
4324 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004325
Douglas Gregord5a423b2009-09-25 18:43:00 +00004326 if (!T1 || !T2)
4327 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004328
Douglas Gregord5a423b2009-09-25 18:43:00 +00004329 return T1->getCanonicalDecl() == T2->getCanonicalDecl();
4330}
4331
4332/// \brief Retrieve the most specialized of the given function template
4333/// specializations.
4334///
John McCallc373d482010-01-27 01:50:18 +00004335/// \param SpecBegin the start iterator of the function template
4336/// specializations that we will be comparing.
Douglas Gregord5a423b2009-09-25 18:43:00 +00004337///
John McCallc373d482010-01-27 01:50:18 +00004338/// \param SpecEnd the end iterator of the function template
4339/// specializations, paired with \p SpecBegin.
Douglas Gregord5a423b2009-09-25 18:43:00 +00004340///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004341/// \param Loc the location where the ambiguity or no-specializations
Douglas Gregord5a423b2009-09-25 18:43:00 +00004342/// diagnostic should occur.
4343///
4344/// \param NoneDiag partial diagnostic used to diagnose cases where there are
4345/// no matching candidates.
4346///
4347/// \param AmbigDiag partial diagnostic used to diagnose an ambiguity, if one
4348/// occurs.
4349///
4350/// \param CandidateDiag partial diagnostic used for each function template
4351/// specialization that is a candidate in the ambiguous ordering. One parameter
4352/// in this diagnostic should be unbound, which will correspond to the string
4353/// describing the template arguments for the function template specialization.
4354///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004355/// \returns the most specialized function template specialization, if
John McCallc373d482010-01-27 01:50:18 +00004356/// found. Otherwise, returns SpecEnd.
Larisse Voufo43847122013-07-19 23:00:19 +00004357UnresolvedSetIterator Sema::getMostSpecialized(
4358 UnresolvedSetIterator SpecBegin, UnresolvedSetIterator SpecEnd,
4359 TemplateSpecCandidateSet &FailedCandidates,
Larisse Voufo43847122013-07-19 23:00:19 +00004360 SourceLocation Loc, const PartialDiagnostic &NoneDiag,
4361 const PartialDiagnostic &AmbigDiag, const PartialDiagnostic &CandidateDiag,
4362 bool Complain, QualType TargetType) {
John McCallc373d482010-01-27 01:50:18 +00004363 if (SpecBegin == SpecEnd) {
Larisse Voufo43847122013-07-19 23:00:19 +00004364 if (Complain) {
Douglas Gregor1be8eec2011-02-19 21:32:49 +00004365 Diag(Loc, NoneDiag);
Larisse Voufo43847122013-07-19 23:00:19 +00004366 FailedCandidates.NoteCandidates(*this, Loc);
4367 }
John McCallc373d482010-01-27 01:50:18 +00004368 return SpecEnd;
Douglas Gregord5a423b2009-09-25 18:43:00 +00004369 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004370
4371 if (SpecBegin + 1 == SpecEnd)
John McCallc373d482010-01-27 01:50:18 +00004372 return SpecBegin;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004373
Douglas Gregord5a423b2009-09-25 18:43:00 +00004374 // Find the function template that is better than all of the templates it
4375 // has been compared to.
John McCallc373d482010-01-27 01:50:18 +00004376 UnresolvedSetIterator Best = SpecBegin;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004377 FunctionTemplateDecl *BestTemplate
John McCallc373d482010-01-27 01:50:18 +00004378 = cast<FunctionDecl>(*Best)->getPrimaryTemplate();
Douglas Gregord5a423b2009-09-25 18:43:00 +00004379 assert(BestTemplate && "Not a function template specialization?");
John McCallc373d482010-01-27 01:50:18 +00004380 for (UnresolvedSetIterator I = SpecBegin + 1; I != SpecEnd; ++I) {
4381 FunctionTemplateDecl *Challenger
4382 = cast<FunctionDecl>(*I)->getPrimaryTemplate();
Douglas Gregord5a423b2009-09-25 18:43:00 +00004383 assert(Challenger && "Not a function template specialization?");
John McCallc373d482010-01-27 01:50:18 +00004384 if (isSameTemplate(getMoreSpecializedTemplate(BestTemplate, Challenger,
Richard Smith66118c22013-09-11 00:52:39 +00004385 Loc, TPOC_Other, 0, 0),
Douglas Gregord5a423b2009-09-25 18:43:00 +00004386 Challenger)) {
4387 Best = I;
4388 BestTemplate = Challenger;
4389 }
4390 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004391
Douglas Gregord5a423b2009-09-25 18:43:00 +00004392 // Make sure that the "best" function template is more specialized than all
4393 // of the others.
4394 bool Ambiguous = false;
John McCallc373d482010-01-27 01:50:18 +00004395 for (UnresolvedSetIterator I = SpecBegin; I != SpecEnd; ++I) {
4396 FunctionTemplateDecl *Challenger
4397 = cast<FunctionDecl>(*I)->getPrimaryTemplate();
Douglas Gregord5a423b2009-09-25 18:43:00 +00004398 if (I != Best &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004399 !isSameTemplate(getMoreSpecializedTemplate(BestTemplate, Challenger,
Richard Smith66118c22013-09-11 00:52:39 +00004400 Loc, TPOC_Other, 0, 0),
Douglas Gregord5a423b2009-09-25 18:43:00 +00004401 BestTemplate)) {
4402 Ambiguous = true;
4403 break;
4404 }
4405 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004406
Douglas Gregord5a423b2009-09-25 18:43:00 +00004407 if (!Ambiguous) {
4408 // We found an answer. Return it.
John McCallc373d482010-01-27 01:50:18 +00004409 return Best;
Douglas Gregord5a423b2009-09-25 18:43:00 +00004410 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004411
Douglas Gregord5a423b2009-09-25 18:43:00 +00004412 // Diagnose the ambiguity.
Richard Smithdf6217e2013-05-04 01:51:08 +00004413 if (Complain) {
Douglas Gregor1be8eec2011-02-19 21:32:49 +00004414 Diag(Loc, AmbigDiag);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004415
Richard Smithdf6217e2013-05-04 01:51:08 +00004416 // FIXME: Can we order the candidates in some sane way?
Richard Trieu6efd4c52011-11-23 22:32:32 +00004417 for (UnresolvedSetIterator I = SpecBegin; I != SpecEnd; ++I) {
4418 PartialDiagnostic PD = CandidateDiag;
4419 PD << getTemplateArgumentBindingsText(
Douglas Gregor1be8eec2011-02-19 21:32:49 +00004420 cast<FunctionDecl>(*I)->getPrimaryTemplate()->getTemplateParameters(),
John McCallc373d482010-01-27 01:50:18 +00004421 *cast<FunctionDecl>(*I)->getTemplateSpecializationArgs());
Richard Trieu6efd4c52011-11-23 22:32:32 +00004422 if (!TargetType.isNull())
4423 HandleFunctionTypeMismatch(PD, cast<FunctionDecl>(*I)->getType(),
4424 TargetType);
4425 Diag((*I)->getLocation(), PD);
4426 }
Richard Smithdf6217e2013-05-04 01:51:08 +00004427 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004428
John McCallc373d482010-01-27 01:50:18 +00004429 return SpecEnd;
Douglas Gregord5a423b2009-09-25 18:43:00 +00004430}
4431
Douglas Gregorbf4ea562009-09-15 16:23:51 +00004432/// \brief Returns the more specialized class template partial specialization
4433/// according to the rules of partial ordering of class template partial
4434/// specializations (C++ [temp.class.order]).
4435///
4436/// \param PS1 the first class template partial specialization
4437///
4438/// \param PS2 the second class template partial specialization
4439///
4440/// \returns the more specialized class template partial specialization. If
4441/// neither partial specialization is more specialized, returns NULL.
4442ClassTemplatePartialSpecializationDecl *
4443Sema::getMoreSpecializedPartialSpecialization(
4444 ClassTemplatePartialSpecializationDecl *PS1,
John McCall5769d612010-02-08 23:07:23 +00004445 ClassTemplatePartialSpecializationDecl *PS2,
4446 SourceLocation Loc) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00004447 // C++ [temp.class.order]p1:
4448 // For two class template partial specializations, the first is at least as
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004449 // specialized as the second if, given the following rewrite to two
4450 // function templates, the first function template is at least as
4451 // specialized as the second according to the ordering rules for function
Douglas Gregorbf4ea562009-09-15 16:23:51 +00004452 // templates (14.6.6.2):
4453 // - the first function template has the same template parameters as the
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004454 // first partial specialization and has a single function parameter
4455 // whose type is a class template specialization with the template
Douglas Gregorbf4ea562009-09-15 16:23:51 +00004456 // arguments of the first partial specialization, and
4457 // - the second function template has the same template parameters as the
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004458 // second partial specialization and has a single function parameter
4459 // whose type is a class template specialization with the template
Douglas Gregorbf4ea562009-09-15 16:23:51 +00004460 // arguments of the second partial specialization.
4461 //
Douglas Gregor31dce8f2010-04-29 06:21:43 +00004462 // Rather than synthesize function templates, we merely perform the
4463 // equivalent partial ordering by performing deduction directly on
4464 // the template arguments of the class template partial
4465 // specializations. This computation is slightly simpler than the
4466 // general problem of function template partial ordering, because
4467 // class template partial specializations are more constrained. We
4468 // know that every template parameter is deducible from the class
4469 // template partial specialization's template arguments, for
4470 // example.
Chris Lattner5f9e2722011-07-23 10:55:15 +00004471 SmallVector<DeducedTemplateArgument, 4> Deduced;
Craig Topper93e45992012-09-19 02:26:47 +00004472 TemplateDeductionInfo Info(Loc);
John McCall31f17ec2010-04-27 00:57:59 +00004473
4474 QualType PT1 = PS1->getInjectedSpecializationType();
4475 QualType PT2 = PS2->getInjectedSpecializationType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004476
Douglas Gregorbf4ea562009-09-15 16:23:51 +00004477 // Determine whether PS1 is at least as specialized as PS2
4478 Deduced.resize(PS2->getTemplateParameters()->size());
Sebastian Redlbb95e512012-01-17 22:49:52 +00004479 bool Better1 = !DeduceTemplateArgumentsByTypeMatch(*this,
4480 PS2->getTemplateParameters(),
Douglas Gregor5c7bf422011-01-11 17:34:58 +00004481 PT2, PT1, Info, Deduced, TDF_None,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004482 /*PartialOrdering=*/true);
Argyrios Kyrtzidis2c4792c2010-11-05 23:25:18 +00004483 if (Better1) {
Richard Smith7e54fb52012-07-16 01:09:10 +00004484 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(),Deduced.end());
Stephen Hines651f13c2014-04-23 16:59:28 -07004485 InstantiatingTemplate Inst(*this, Loc, PS2, DeducedArgs, Info);
Larisse Voufoef4579c2013-08-06 01:03:05 +00004486 Better1 = !::FinishTemplateArgumentDeduction(
4487 *this, PS2, PS1->getTemplateArgs(), Deduced, Info);
4488 }
4489
4490 // Determine whether PS2 is at least as specialized as PS1
4491 Deduced.clear();
4492 Deduced.resize(PS1->getTemplateParameters()->size());
4493 bool Better2 = !DeduceTemplateArgumentsByTypeMatch(
4494 *this, PS1->getTemplateParameters(), PT1, PT2, Info, Deduced, TDF_None,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004495 /*PartialOrdering=*/true);
Larisse Voufoef4579c2013-08-06 01:03:05 +00004496 if (Better2) {
4497 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(),
4498 Deduced.end());
Stephen Hines651f13c2014-04-23 16:59:28 -07004499 InstantiatingTemplate Inst(*this, Loc, PS1, DeducedArgs, Info);
Larisse Voufoef4579c2013-08-06 01:03:05 +00004500 Better2 = !::FinishTemplateArgumentDeduction(
4501 *this, PS1, PS2->getTemplateArgs(), Deduced, Info);
4502 }
4503
4504 if (Better1 == Better2)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004505 return nullptr;
Larisse Voufoef4579c2013-08-06 01:03:05 +00004506
4507 return Better1 ? PS1 : PS2;
4508}
4509
Larisse Voufo8d2a5ea2013-08-23 22:21:36 +00004510/// TODO: Unify with ClassTemplatePartialSpecializationDecl version?
4511/// May require unifying ClassTemplate(Partial)SpecializationDecl and
4512/// VarTemplate(Partial)SpecializationDecl with a new data
4513/// structure Template(Partial)SpecializationDecl, and
4514/// using Template(Partial)SpecializationDecl as input type.
Larisse Voufoef4579c2013-08-06 01:03:05 +00004515VarTemplatePartialSpecializationDecl *
4516Sema::getMoreSpecializedPartialSpecialization(
4517 VarTemplatePartialSpecializationDecl *PS1,
4518 VarTemplatePartialSpecializationDecl *PS2, SourceLocation Loc) {
4519 SmallVector<DeducedTemplateArgument, 4> Deduced;
4520 TemplateDeductionInfo Info(Loc);
4521
Stephen Hines651f13c2014-04-23 16:59:28 -07004522 assert(PS1->getSpecializedTemplate() == PS2->getSpecializedTemplate() &&
Larisse Voufoef4579c2013-08-06 01:03:05 +00004523 "the partial specializations being compared should specialize"
4524 " the same template.");
4525 TemplateName Name(PS1->getSpecializedTemplate());
4526 TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
4527 QualType PT1 = Context.getTemplateSpecializationType(
4528 CanonTemplate, PS1->getTemplateArgs().data(),
4529 PS1->getTemplateArgs().size());
4530 QualType PT2 = Context.getTemplateSpecializationType(
4531 CanonTemplate, PS2->getTemplateArgs().data(),
4532 PS2->getTemplateArgs().size());
4533
4534 // Determine whether PS1 is at least as specialized as PS2
4535 Deduced.resize(PS2->getTemplateParameters()->size());
4536 bool Better1 = !DeduceTemplateArgumentsByTypeMatch(
4537 *this, PS2->getTemplateParameters(), PT2, PT1, Info, Deduced, TDF_None,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004538 /*PartialOrdering=*/true);
Larisse Voufoef4579c2013-08-06 01:03:05 +00004539 if (Better1) {
4540 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(),
4541 Deduced.end());
Stephen Hines651f13c2014-04-23 16:59:28 -07004542 InstantiatingTemplate Inst(*this, Loc, PS2, DeducedArgs, Info);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004543 Better1 = !::FinishTemplateArgumentDeduction(*this, PS2,
4544 PS1->getTemplateArgs(),
Douglas Gregor516e6e02010-04-29 06:31:36 +00004545 Deduced, Info);
Argyrios Kyrtzidis2c4792c2010-11-05 23:25:18 +00004546 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004547
Douglas Gregorbf4ea562009-09-15 16:23:51 +00004548 // Determine whether PS2 is at least as specialized as PS1
Douglas Gregordb0d4b72009-11-11 23:06:43 +00004549 Deduced.clear();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00004550 Deduced.resize(PS1->getTemplateParameters()->size());
Sebastian Redlbb95e512012-01-17 22:49:52 +00004551 bool Better2 = !DeduceTemplateArgumentsByTypeMatch(*this,
4552 PS1->getTemplateParameters(),
Douglas Gregor5c7bf422011-01-11 17:34:58 +00004553 PT1, PT2, Info, Deduced, TDF_None,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004554 /*PartialOrdering=*/true);
Argyrios Kyrtzidis2c4792c2010-11-05 23:25:18 +00004555 if (Better2) {
Richard Smith7e54fb52012-07-16 01:09:10 +00004556 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(),Deduced.end());
Stephen Hines651f13c2014-04-23 16:59:28 -07004557 InstantiatingTemplate Inst(*this, Loc, PS1, DeducedArgs, Info);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004558 Better2 = !::FinishTemplateArgumentDeduction(*this, PS1,
4559 PS2->getTemplateArgs(),
Douglas Gregor516e6e02010-04-29 06:31:36 +00004560 Deduced, Info);
Argyrios Kyrtzidis2c4792c2010-11-05 23:25:18 +00004561 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004562
Douglas Gregorbf4ea562009-09-15 16:23:51 +00004563 if (Better1 == Better2)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004564 return nullptr;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004565
Douglas Gregorbf4ea562009-09-15 16:23:51 +00004566 return Better1? PS1 : PS2;
4567}
4568
Mike Stump1eb44332009-09-09 15:08:12 +00004569static void
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004570MarkUsedTemplateParameters(ASTContext &Ctx,
Douglas Gregore73bb602009-09-14 21:25:05 +00004571 const TemplateArgument &TemplateArg,
4572 bool OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004573 unsigned Depth,
Benjamin Kramer013b3662012-01-30 16:17:39 +00004574 llvm::SmallBitVector &Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004575
Douglas Gregore73bb602009-09-14 21:25:05 +00004576/// \brief Mark the template parameters that are used by the given
Douglas Gregor031a5882009-06-13 00:26:55 +00004577/// expression.
Mike Stump1eb44332009-09-09 15:08:12 +00004578static void
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004579MarkUsedTemplateParameters(ASTContext &Ctx,
Douglas Gregore73bb602009-09-14 21:25:05 +00004580 const Expr *E,
4581 bool OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004582 unsigned Depth,
Benjamin Kramer013b3662012-01-30 16:17:39 +00004583 llvm::SmallBitVector &Used) {
Douglas Gregorbe230c32011-01-03 17:17:50 +00004584 // We can deduce from a pack expansion.
4585 if (const PackExpansionExpr *Expansion = dyn_cast<PackExpansionExpr>(E))
4586 E = Expansion->getPattern();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004587
Richard Smith60983812012-07-09 03:07:20 +00004588 // Skip through any implicit casts we added while type-checking, and any
4589 // substitutions performed by template alias expansion.
4590 while (1) {
4591 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
4592 E = ICE->getSubExpr();
4593 else if (const SubstNonTypeTemplateParmExpr *Subst =
4594 dyn_cast<SubstNonTypeTemplateParmExpr>(E))
4595 E = Subst->getReplacement();
4596 else
4597 break;
4598 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004599
4600 // FIXME: if !OnlyDeduced, we have to walk the whole subexpression to
Douglas Gregore73bb602009-09-14 21:25:05 +00004601 // find other occurrences of template parameters.
Douglas Gregorf6ddb732009-06-18 18:45:36 +00004602 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
Douglas Gregorc781f9c2010-01-14 18:13:22 +00004603 if (!DRE)
Douglas Gregor031a5882009-06-13 00:26:55 +00004604 return;
4605
Mike Stump1eb44332009-09-09 15:08:12 +00004606 const NonTypeTemplateParmDecl *NTTP
Douglas Gregor031a5882009-06-13 00:26:55 +00004607 = dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
4608 if (!NTTP)
4609 return;
4610
Douglas Gregored9c0f92009-10-29 00:04:11 +00004611 if (NTTP->getDepth() == Depth)
4612 Used[NTTP->getIndex()] = true;
Douglas Gregor031a5882009-06-13 00:26:55 +00004613}
4614
Douglas Gregore73bb602009-09-14 21:25:05 +00004615/// \brief Mark the template parameters that are used by the given
4616/// nested name specifier.
4617static void
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004618MarkUsedTemplateParameters(ASTContext &Ctx,
Douglas Gregore73bb602009-09-14 21:25:05 +00004619 NestedNameSpecifier *NNS,
4620 bool OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004621 unsigned Depth,
Benjamin Kramer013b3662012-01-30 16:17:39 +00004622 llvm::SmallBitVector &Used) {
Douglas Gregore73bb602009-09-14 21:25:05 +00004623 if (!NNS)
4624 return;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004625
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004626 MarkUsedTemplateParameters(Ctx, NNS->getPrefix(), OnlyDeduced, Depth,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004627 Used);
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004628 MarkUsedTemplateParameters(Ctx, QualType(NNS->getAsType(), 0),
Douglas Gregored9c0f92009-10-29 00:04:11 +00004629 OnlyDeduced, Depth, Used);
Douglas Gregore73bb602009-09-14 21:25:05 +00004630}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004631
Douglas Gregore73bb602009-09-14 21:25:05 +00004632/// \brief Mark the template parameters that are used by the given
4633/// template name.
4634static void
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004635MarkUsedTemplateParameters(ASTContext &Ctx,
Douglas Gregore73bb602009-09-14 21:25:05 +00004636 TemplateName Name,
4637 bool OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004638 unsigned Depth,
Benjamin Kramer013b3662012-01-30 16:17:39 +00004639 llvm::SmallBitVector &Used) {
Douglas Gregore73bb602009-09-14 21:25:05 +00004640 if (TemplateDecl *Template = Name.getAsTemplateDecl()) {
4641 if (TemplateTemplateParmDecl *TTP
Douglas Gregored9c0f92009-10-29 00:04:11 +00004642 = dyn_cast<TemplateTemplateParmDecl>(Template)) {
4643 if (TTP->getDepth() == Depth)
4644 Used[TTP->getIndex()] = true;
4645 }
Douglas Gregore73bb602009-09-14 21:25:05 +00004646 return;
4647 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004648
Douglas Gregor788cd062009-11-11 01:00:40 +00004649 if (QualifiedTemplateName *QTN = Name.getAsQualifiedTemplateName())
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004650 MarkUsedTemplateParameters(Ctx, QTN->getQualifier(), OnlyDeduced,
Douglas Gregor788cd062009-11-11 01:00:40 +00004651 Depth, Used);
Douglas Gregore73bb602009-09-14 21:25:05 +00004652 if (DependentTemplateName *DTN = Name.getAsDependentTemplateName())
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004653 MarkUsedTemplateParameters(Ctx, DTN->getQualifier(), OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004654 Depth, Used);
Douglas Gregore73bb602009-09-14 21:25:05 +00004655}
4656
4657/// \brief Mark the template parameters that are used by the given
Douglas Gregor031a5882009-06-13 00:26:55 +00004658/// type.
Mike Stump1eb44332009-09-09 15:08:12 +00004659static void
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004660MarkUsedTemplateParameters(ASTContext &Ctx, QualType T,
Douglas Gregore73bb602009-09-14 21:25:05 +00004661 bool OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004662 unsigned Depth,
Benjamin Kramer013b3662012-01-30 16:17:39 +00004663 llvm::SmallBitVector &Used) {
Douglas Gregore73bb602009-09-14 21:25:05 +00004664 if (T.isNull())
4665 return;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004666
Douglas Gregor031a5882009-06-13 00:26:55 +00004667 // Non-dependent types have nothing deducible
4668 if (!T->isDependentType())
4669 return;
4670
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004671 T = Ctx.getCanonicalType(T);
Douglas Gregor031a5882009-06-13 00:26:55 +00004672 switch (T->getTypeClass()) {
Douglas Gregor031a5882009-06-13 00:26:55 +00004673 case Type::Pointer:
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004674 MarkUsedTemplateParameters(Ctx,
Douglas Gregore73bb602009-09-14 21:25:05 +00004675 cast<PointerType>(T)->getPointeeType(),
4676 OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004677 Depth,
Douglas Gregore73bb602009-09-14 21:25:05 +00004678 Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004679 break;
4680
4681 case Type::BlockPointer:
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004682 MarkUsedTemplateParameters(Ctx,
Douglas Gregore73bb602009-09-14 21:25:05 +00004683 cast<BlockPointerType>(T)->getPointeeType(),
4684 OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004685 Depth,
Douglas Gregore73bb602009-09-14 21:25:05 +00004686 Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004687 break;
4688
4689 case Type::LValueReference:
4690 case Type::RValueReference:
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004691 MarkUsedTemplateParameters(Ctx,
Douglas Gregore73bb602009-09-14 21:25:05 +00004692 cast<ReferenceType>(T)->getPointeeType(),
4693 OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004694 Depth,
Douglas Gregore73bb602009-09-14 21:25:05 +00004695 Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004696 break;
4697
4698 case Type::MemberPointer: {
4699 const MemberPointerType *MemPtr = cast<MemberPointerType>(T.getTypePtr());
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004700 MarkUsedTemplateParameters(Ctx, MemPtr->getPointeeType(), OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004701 Depth, Used);
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004702 MarkUsedTemplateParameters(Ctx, QualType(MemPtr->getClass(), 0),
Douglas Gregored9c0f92009-10-29 00:04:11 +00004703 OnlyDeduced, Depth, Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004704 break;
4705 }
4706
4707 case Type::DependentSizedArray:
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004708 MarkUsedTemplateParameters(Ctx,
Douglas Gregore73bb602009-09-14 21:25:05 +00004709 cast<DependentSizedArrayType>(T)->getSizeExpr(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00004710 OnlyDeduced, Depth, Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004711 // Fall through to check the element type
4712
4713 case Type::ConstantArray:
4714 case Type::IncompleteArray:
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004715 MarkUsedTemplateParameters(Ctx,
Douglas Gregore73bb602009-09-14 21:25:05 +00004716 cast<ArrayType>(T)->getElementType(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00004717 OnlyDeduced, Depth, Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004718 break;
4719
4720 case Type::Vector:
4721 case Type::ExtVector:
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004722 MarkUsedTemplateParameters(Ctx,
Douglas Gregore73bb602009-09-14 21:25:05 +00004723 cast<VectorType>(T)->getElementType(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00004724 OnlyDeduced, Depth, Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004725 break;
4726
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00004727 case Type::DependentSizedExtVector: {
4728 const DependentSizedExtVectorType *VecType
Douglas Gregorf6ddb732009-06-18 18:45:36 +00004729 = cast<DependentSizedExtVectorType>(T);
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004730 MarkUsedTemplateParameters(Ctx, VecType->getElementType(), OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004731 Depth, Used);
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004732 MarkUsedTemplateParameters(Ctx, VecType->getSizeExpr(), OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004733 Depth, Used);
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00004734 break;
4735 }
4736
Douglas Gregor031a5882009-06-13 00:26:55 +00004737 case Type::FunctionProto: {
Douglas Gregorf6ddb732009-06-18 18:45:36 +00004738 const FunctionProtoType *Proto = cast<FunctionProtoType>(T);
Stephen Hines651f13c2014-04-23 16:59:28 -07004739 MarkUsedTemplateParameters(Ctx, Proto->getReturnType(), OnlyDeduced, Depth,
4740 Used);
4741 for (unsigned I = 0, N = Proto->getNumParams(); I != N; ++I)
4742 MarkUsedTemplateParameters(Ctx, Proto->getParamType(I), OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004743 Depth, Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004744 break;
4745 }
4746
Douglas Gregored9c0f92009-10-29 00:04:11 +00004747 case Type::TemplateTypeParm: {
4748 const TemplateTypeParmType *TTP = cast<TemplateTypeParmType>(T);
4749 if (TTP->getDepth() == Depth)
4750 Used[TTP->getIndex()] = true;
Douglas Gregor031a5882009-06-13 00:26:55 +00004751 break;
Douglas Gregored9c0f92009-10-29 00:04:11 +00004752 }
Douglas Gregor031a5882009-06-13 00:26:55 +00004753
Douglas Gregor0bc15d92011-01-14 05:11:40 +00004754 case Type::SubstTemplateTypeParmPack: {
4755 const SubstTemplateTypeParmPackType *Subst
4756 = cast<SubstTemplateTypeParmPackType>(T);
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004757 MarkUsedTemplateParameters(Ctx,
Douglas Gregor0bc15d92011-01-14 05:11:40 +00004758 QualType(Subst->getReplacedParameter(), 0),
4759 OnlyDeduced, Depth, Used);
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004760 MarkUsedTemplateParameters(Ctx, Subst->getArgumentPack(),
Douglas Gregor0bc15d92011-01-14 05:11:40 +00004761 OnlyDeduced, Depth, Used);
4762 break;
4763 }
4764
John McCall31f17ec2010-04-27 00:57:59 +00004765 case Type::InjectedClassName:
4766 T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
4767 // fall through
4768
Douglas Gregor031a5882009-06-13 00:26:55 +00004769 case Type::TemplateSpecialization: {
Mike Stump1eb44332009-09-09 15:08:12 +00004770 const TemplateSpecializationType *Spec
Douglas Gregorf6ddb732009-06-18 18:45:36 +00004771 = cast<TemplateSpecializationType>(T);
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004772 MarkUsedTemplateParameters(Ctx, Spec->getTemplateName(), OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004773 Depth, Used);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004774
Douglas Gregor7b976ec2010-12-23 01:24:45 +00004775 // C++0x [temp.deduct.type]p9:
Stephen Hines176edba2014-12-01 14:53:08 -08004776 // If the template argument list of P contains a pack expansion that is
4777 // not the last template argument, the entire template argument list is a
Douglas Gregor7b976ec2010-12-23 01:24:45 +00004778 // non-deduced context.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004779 if (OnlyDeduced &&
Douglas Gregor7b976ec2010-12-23 01:24:45 +00004780 hasPackExpansionBeforeEnd(Spec->getArgs(), Spec->getNumArgs()))
4781 break;
4782
Douglas Gregore73bb602009-09-14 21:25:05 +00004783 for (unsigned I = 0, N = Spec->getNumArgs(); I != N; ++I)
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004784 MarkUsedTemplateParameters(Ctx, Spec->getArg(I), OnlyDeduced, Depth,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004785 Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004786 break;
4787 }
4788
Douglas Gregore73bb602009-09-14 21:25:05 +00004789 case Type::Complex:
4790 if (!OnlyDeduced)
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004791 MarkUsedTemplateParameters(Ctx,
Douglas Gregore73bb602009-09-14 21:25:05 +00004792 cast<ComplexType>(T)->getElementType(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00004793 OnlyDeduced, Depth, Used);
Douglas Gregore73bb602009-09-14 21:25:05 +00004794 break;
4795
Eli Friedmanb001de72011-10-06 23:00:33 +00004796 case Type::Atomic:
4797 if (!OnlyDeduced)
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004798 MarkUsedTemplateParameters(Ctx,
Eli Friedmanb001de72011-10-06 23:00:33 +00004799 cast<AtomicType>(T)->getValueType(),
4800 OnlyDeduced, Depth, Used);
4801 break;
4802
Douglas Gregor4714c122010-03-31 17:34:00 +00004803 case Type::DependentName:
Douglas Gregore73bb602009-09-14 21:25:05 +00004804 if (!OnlyDeduced)
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004805 MarkUsedTemplateParameters(Ctx,
Douglas Gregor4714c122010-03-31 17:34:00 +00004806 cast<DependentNameType>(T)->getQualifier(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00004807 OnlyDeduced, Depth, Used);
Douglas Gregore73bb602009-09-14 21:25:05 +00004808 break;
4809
John McCall33500952010-06-11 00:33:02 +00004810 case Type::DependentTemplateSpecialization: {
4811 const DependentTemplateSpecializationType *Spec
4812 = cast<DependentTemplateSpecializationType>(T);
4813 if (!OnlyDeduced)
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004814 MarkUsedTemplateParameters(Ctx, Spec->getQualifier(),
John McCall33500952010-06-11 00:33:02 +00004815 OnlyDeduced, Depth, Used);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004816
Douglas Gregor7b976ec2010-12-23 01:24:45 +00004817 // C++0x [temp.deduct.type]p9:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004818 // If the template argument list of P contains a pack expansion that is not
4819 // the last template argument, the entire template argument list is a
Douglas Gregor7b976ec2010-12-23 01:24:45 +00004820 // non-deduced context.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004821 if (OnlyDeduced &&
Douglas Gregor7b976ec2010-12-23 01:24:45 +00004822 hasPackExpansionBeforeEnd(Spec->getArgs(), Spec->getNumArgs()))
4823 break;
4824
John McCall33500952010-06-11 00:33:02 +00004825 for (unsigned I = 0, N = Spec->getNumArgs(); I != N; ++I)
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004826 MarkUsedTemplateParameters(Ctx, Spec->getArg(I), OnlyDeduced, Depth,
John McCall33500952010-06-11 00:33:02 +00004827 Used);
4828 break;
4829 }
4830
John McCallad5e7382010-03-01 23:49:17 +00004831 case Type::TypeOf:
4832 if (!OnlyDeduced)
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004833 MarkUsedTemplateParameters(Ctx,
John McCallad5e7382010-03-01 23:49:17 +00004834 cast<TypeOfType>(T)->getUnderlyingType(),
4835 OnlyDeduced, Depth, Used);
4836 break;
4837
4838 case Type::TypeOfExpr:
4839 if (!OnlyDeduced)
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004840 MarkUsedTemplateParameters(Ctx,
John McCallad5e7382010-03-01 23:49:17 +00004841 cast<TypeOfExprType>(T)->getUnderlyingExpr(),
4842 OnlyDeduced, Depth, Used);
4843 break;
4844
4845 case Type::Decltype:
4846 if (!OnlyDeduced)
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004847 MarkUsedTemplateParameters(Ctx,
John McCallad5e7382010-03-01 23:49:17 +00004848 cast<DecltypeType>(T)->getUnderlyingExpr(),
4849 OnlyDeduced, Depth, Used);
4850 break;
4851
Sean Huntca63c202011-05-24 22:41:36 +00004852 case Type::UnaryTransform:
4853 if (!OnlyDeduced)
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004854 MarkUsedTemplateParameters(Ctx,
Sean Huntca63c202011-05-24 22:41:36 +00004855 cast<UnaryTransformType>(T)->getUnderlyingType(),
4856 OnlyDeduced, Depth, Used);
4857 break;
4858
Douglas Gregor7536dd52010-12-20 02:24:11 +00004859 case Type::PackExpansion:
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004860 MarkUsedTemplateParameters(Ctx,
Douglas Gregor7536dd52010-12-20 02:24:11 +00004861 cast<PackExpansionType>(T)->getPattern(),
4862 OnlyDeduced, Depth, Used);
4863 break;
4864
Richard Smith34b41d92011-02-20 03:19:35 +00004865 case Type::Auto:
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004866 MarkUsedTemplateParameters(Ctx,
Richard Smith34b41d92011-02-20 03:19:35 +00004867 cast<AutoType>(T)->getDeducedType(),
4868 OnlyDeduced, Depth, Used);
4869
Douglas Gregore73bb602009-09-14 21:25:05 +00004870 // None of these types have any template parameters in them.
Douglas Gregor031a5882009-06-13 00:26:55 +00004871 case Type::Builtin:
Douglas Gregor031a5882009-06-13 00:26:55 +00004872 case Type::VariableArray:
4873 case Type::FunctionNoProto:
4874 case Type::Record:
4875 case Type::Enum:
Douglas Gregor031a5882009-06-13 00:26:55 +00004876 case Type::ObjCInterface:
John McCallc12c5bb2010-05-15 11:32:37 +00004877 case Type::ObjCObject:
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00004878 case Type::ObjCObjectPointer:
John McCalled976492009-12-04 22:46:56 +00004879 case Type::UnresolvedUsing:
Douglas Gregor031a5882009-06-13 00:26:55 +00004880#define TYPE(Class, Base)
4881#define ABSTRACT_TYPE(Class, Base)
4882#define DEPENDENT_TYPE(Class, Base)
4883#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
4884#include "clang/AST/TypeNodes.def"
4885 break;
4886 }
4887}
4888
Douglas Gregore73bb602009-09-14 21:25:05 +00004889/// \brief Mark the template parameters that are used by this
Douglas Gregor031a5882009-06-13 00:26:55 +00004890/// template argument.
Mike Stump1eb44332009-09-09 15:08:12 +00004891static void
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004892MarkUsedTemplateParameters(ASTContext &Ctx,
Douglas Gregore73bb602009-09-14 21:25:05 +00004893 const TemplateArgument &TemplateArg,
4894 bool OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004895 unsigned Depth,
Benjamin Kramer013b3662012-01-30 16:17:39 +00004896 llvm::SmallBitVector &Used) {
Douglas Gregor031a5882009-06-13 00:26:55 +00004897 switch (TemplateArg.getKind()) {
4898 case TemplateArgument::Null:
4899 case TemplateArgument::Integral:
Douglas Gregord2008e22012-04-06 22:40:38 +00004900 case TemplateArgument::Declaration:
Douglas Gregor031a5882009-06-13 00:26:55 +00004901 break;
Mike Stump1eb44332009-09-09 15:08:12 +00004902
Eli Friedmand7a6b162012-09-26 02:36:12 +00004903 case TemplateArgument::NullPtr:
4904 MarkUsedTemplateParameters(Ctx, TemplateArg.getNullPtrType(), OnlyDeduced,
4905 Depth, Used);
4906 break;
4907
Douglas Gregor031a5882009-06-13 00:26:55 +00004908 case TemplateArgument::Type:
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004909 MarkUsedTemplateParameters(Ctx, TemplateArg.getAsType(), OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004910 Depth, Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004911 break;
4912
Douglas Gregor788cd062009-11-11 01:00:40 +00004913 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +00004914 case TemplateArgument::TemplateExpansion:
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004915 MarkUsedTemplateParameters(Ctx,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004916 TemplateArg.getAsTemplateOrTemplatePattern(),
Douglas Gregor788cd062009-11-11 01:00:40 +00004917 OnlyDeduced, Depth, Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004918 break;
4919
4920 case TemplateArgument::Expression:
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004921 MarkUsedTemplateParameters(Ctx, TemplateArg.getAsExpr(), OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004922 Depth, Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004923 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004924
Anders Carlssond01b1da2009-06-15 17:04:53 +00004925 case TemplateArgument::Pack:
Stephen Hines176edba2014-12-01 14:53:08 -08004926 for (const auto &P : TemplateArg.pack_elements())
4927 MarkUsedTemplateParameters(Ctx, P, OnlyDeduced, Depth, Used);
Anders Carlssond01b1da2009-06-15 17:04:53 +00004928 break;
Douglas Gregor031a5882009-06-13 00:26:55 +00004929 }
4930}
4931
James Dennett16ae9de2012-06-22 10:16:05 +00004932/// \brief Mark which template parameters can be deduced from a given
Douglas Gregor031a5882009-06-13 00:26:55 +00004933/// template argument list.
4934///
4935/// \param TemplateArgs the template argument list from which template
4936/// parameters will be deduced.
4937///
James Dennett16ae9de2012-06-22 10:16:05 +00004938/// \param Used a bit vector whose elements will be set to \c true
Douglas Gregor031a5882009-06-13 00:26:55 +00004939/// to indicate when the corresponding template parameter will be
4940/// deduced.
Mike Stump1eb44332009-09-09 15:08:12 +00004941void
Douglas Gregore73bb602009-09-14 21:25:05 +00004942Sema::MarkUsedTemplateParameters(const TemplateArgumentList &TemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004943 bool OnlyDeduced, unsigned Depth,
Benjamin Kramer013b3662012-01-30 16:17:39 +00004944 llvm::SmallBitVector &Used) {
Douglas Gregor7b976ec2010-12-23 01:24:45 +00004945 // C++0x [temp.deduct.type]p9:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004946 // If the template argument list of P contains a pack expansion that is not
4947 // the last template argument, the entire template argument list is a
Douglas Gregor7b976ec2010-12-23 01:24:45 +00004948 // non-deduced context.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004949 if (OnlyDeduced &&
Douglas Gregor7b976ec2010-12-23 01:24:45 +00004950 hasPackExpansionBeforeEnd(TemplateArgs.data(), TemplateArgs.size()))
4951 return;
4952
Douglas Gregor031a5882009-06-13 00:26:55 +00004953 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004954 ::MarkUsedTemplateParameters(Context, TemplateArgs[I], OnlyDeduced,
Douglas Gregored9c0f92009-10-29 00:04:11 +00004955 Depth, Used);
Douglas Gregor031a5882009-06-13 00:26:55 +00004956}
Douglas Gregor63f07c52009-09-18 23:21:38 +00004957
4958/// \brief Marks all of the template parameters that will be deduced by a
4959/// call to the given function template.
Stephen Hines176edba2014-12-01 14:53:08 -08004960void Sema::MarkDeducedTemplateParameters(
4961 ASTContext &Ctx, const FunctionTemplateDecl *FunctionTemplate,
4962 llvm::SmallBitVector &Deduced) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004963 TemplateParameterList *TemplateParams
Douglas Gregor63f07c52009-09-18 23:21:38 +00004964 = FunctionTemplate->getTemplateParameters();
4965 Deduced.clear();
4966 Deduced.resize(TemplateParams->size());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004967
Douglas Gregor63f07c52009-09-18 23:21:38 +00004968 FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
4969 for (unsigned I = 0, N = Function->getNumParams(); I != N; ++I)
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004970 ::MarkUsedTemplateParameters(Ctx, Function->getParamDecl(I)->getType(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00004971 true, TemplateParams->getDepth(), Deduced);
Douglas Gregor63f07c52009-09-18 23:21:38 +00004972}
Douglas Gregordbfb3712011-06-16 16:50:48 +00004973
4974bool hasDeducibleTemplateParameters(Sema &S,
4975 FunctionTemplateDecl *FunctionTemplate,
4976 QualType T) {
4977 if (!T->isDependentType())
4978 return false;
4979
4980 TemplateParameterList *TemplateParams
4981 = FunctionTemplate->getTemplateParameters();
Benjamin Kramer013b3662012-01-30 16:17:39 +00004982 llvm::SmallBitVector Deduced(TemplateParams->size());
Argyrios Kyrtzidis6fc9e1d2012-01-17 02:15:41 +00004983 ::MarkUsedTemplateParameters(S.Context, T, true, TemplateParams->getDepth(),
Douglas Gregordbfb3712011-06-16 16:50:48 +00004984 Deduced);
4985
Benjamin Kramer013b3662012-01-30 16:17:39 +00004986 return Deduced.any();
Douglas Gregordbfb3712011-06-16 16:50:48 +00004987}