2009-06-04 08:03:07 +08:00
|
|
|
|
//===------- SemaTemplateDeduction.cpp - Template Argument Deduction ------===/
|
|
|
|
|
//
|
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
|
//
|
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
|
//===----------------------------------------------------------------------===/
|
|
|
|
|
//
|
|
|
|
|
// This file implements C++ template argument deduction.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===/
|
|
|
|
|
|
2010-08-13 04:07:10 +08:00
|
|
|
|
#include "clang/Sema/Sema.h"
|
2010-08-21 02:27:03 +08:00
|
|
|
|
#include "clang/Sema/DeclSpec.h"
|
2010-08-24 15:21:54 +08:00
|
|
|
|
#include "clang/Sema/Template.h"
|
2010-08-25 13:32:35 +08:00
|
|
|
|
#include "clang/Sema/TemplateDeduction.h"
|
2009-06-04 08:03:07 +08:00
|
|
|
|
#include "clang/AST/ASTContext.h"
|
2010-08-24 15:21:54 +08:00
|
|
|
|
#include "clang/AST/DeclObjC.h"
|
2009-06-04 08:03:07 +08:00
|
|
|
|
#include "clang/AST/DeclTemplate.h"
|
|
|
|
|
#include "clang/AST/StmtVisitor.h"
|
|
|
|
|
#include "clang/AST/Expr.h"
|
|
|
|
|
#include "clang/AST/ExprCXX.h"
|
2009-09-15 02:39:43 +08:00
|
|
|
|
#include <algorithm>
|
2009-06-27 07:10:12 +08:00
|
|
|
|
|
|
|
|
|
namespace clang {
|
2010-08-25 13:32:35 +08:00
|
|
|
|
using namespace sema;
|
|
|
|
|
|
2009-06-27 07:10:12 +08:00
|
|
|
|
/// \brief Various flags that control template argument deduction.
|
|
|
|
|
///
|
|
|
|
|
/// These flags can be bitwise-OR'd together.
|
|
|
|
|
enum TemplateDeductionFlags {
|
|
|
|
|
/// \brief No template argument deduction flags, which indicates the
|
|
|
|
|
/// strictest results for template argument deduction (as used for, e.g.,
|
|
|
|
|
/// matching class template partial specializations).
|
|
|
|
|
TDF_None = 0,
|
|
|
|
|
/// \brief Within template argument deduction from a function call, we are
|
|
|
|
|
/// matching with a parameter type for which the original parameter was
|
|
|
|
|
/// a reference.
|
|
|
|
|
TDF_ParamWithReferenceType = 0x1,
|
|
|
|
|
/// \brief Within template argument deduction from a function call, we
|
|
|
|
|
/// are matching in a case where we ignore cv-qualifiers.
|
|
|
|
|
TDF_IgnoreQualifiers = 0x02,
|
|
|
|
|
/// \brief Within template argument deduction from a function call,
|
|
|
|
|
/// we are matching in a case where we can perform template argument
|
2009-06-27 07:27:24 +08:00
|
|
|
|
/// deduction from a template-id of a derived class of the argument type.
|
2009-09-15 04:00:47 +08:00
|
|
|
|
TDF_DerivedClass = 0x04,
|
|
|
|
|
/// \brief Allow non-dependent types to differ, e.g., when performing
|
|
|
|
|
/// template argument deduction from a function call where conversions
|
|
|
|
|
/// may apply.
|
|
|
|
|
TDF_SkipNonDependent = 0x08
|
2009-06-27 07:10:12 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-04 08:03:07 +08:00
|
|
|
|
using namespace clang;
|
|
|
|
|
|
2010-03-26 13:50:28 +08:00
|
|
|
|
/// \brief Compare two APSInts, extending and switching the sign as
|
|
|
|
|
/// necessary to compare their values regardless of underlying type.
|
|
|
|
|
static bool hasSameExtendedValue(llvm::APSInt X, llvm::APSInt Y) {
|
|
|
|
|
if (Y.getBitWidth() > X.getBitWidth())
|
2010-12-07 16:25:34 +08:00
|
|
|
|
X = X.extend(Y.getBitWidth());
|
2010-03-26 13:50:28 +08:00
|
|
|
|
else if (Y.getBitWidth() < X.getBitWidth())
|
2010-12-07 16:25:34 +08:00
|
|
|
|
Y = Y.extend(X.getBitWidth());
|
2010-03-26 13:50:28 +08:00
|
|
|
|
|
|
|
|
|
// If there is a signedness mismatch, correct it.
|
|
|
|
|
if (X.isSigned() != Y.isSigned()) {
|
|
|
|
|
// If the signed value is negative, then the values cannot be the same.
|
|
|
|
|
if ((Y.isSigned() && Y.isNegative()) || (X.isSigned() && X.isNegative()))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
Y.setIsSigned(true);
|
|
|
|
|
X.setIsSigned(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return X == Y;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-13 02:26:56 +08:00
|
|
|
|
static Sema::TemplateDeductionResult
|
2010-02-08 05:33:28 +08:00
|
|
|
|
DeduceTemplateArguments(Sema &S,
|
2009-06-13 02:26:56 +08:00
|
|
|
|
TemplateParameterList *TemplateParams,
|
|
|
|
|
const TemplateArgument &Param,
|
2009-06-10 00:35:58 +08:00
|
|
|
|
const TemplateArgument &Arg,
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo &Info,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> &Deduced);
|
2009-06-10 00:35:58 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
/// \brief If the given expression is of a form that permits the deduction
|
|
|
|
|
/// of a non-type template parameter, return the declaration of that
|
|
|
|
|
/// non-type template parameter.
|
|
|
|
|
static NonTypeTemplateParmDecl *getDeducedParameterFromExpr(Expr *E) {
|
|
|
|
|
if (ImplicitCastExpr *IC = dyn_cast<ImplicitCastExpr>(E))
|
|
|
|
|
E = IC->getSubExpr();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
|
|
|
|
|
return dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
/// \brief Deduce the value of the given non-type template parameter
|
2009-06-05 08:53:49 +08:00
|
|
|
|
/// from the given constant.
|
2009-06-13 02:26:56 +08:00
|
|
|
|
static Sema::TemplateDeductionResult
|
2010-02-08 05:33:28 +08:00
|
|
|
|
DeduceNonTypeTemplateArgument(Sema &S,
|
2009-09-09 23:08:12 +08:00
|
|
|
|
NonTypeTemplateParmDecl *NTTP,
|
2010-03-26 13:50:28 +08:00
|
|
|
|
llvm::APSInt Value, QualType ValueType,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
bool DeducedFromArrayBound,
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo &Info,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
assert(NTTP->getDepth() == 0 &&
|
2009-06-05 08:53:49 +08:00
|
|
|
|
"Cannot deduce non-type template argument with depth > 0");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
if (Deduced[NTTP->getIndex()].isNull()) {
|
2010-03-28 10:42:43 +08:00
|
|
|
|
Deduced[NTTP->getIndex()] = DeducedTemplateArgument(Value, ValueType,
|
|
|
|
|
DeducedFromArrayBound);
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-06-05 08:53:49 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-03-26 13:50:28 +08:00
|
|
|
|
if (Deduced[NTTP->getIndex()].getKind() != TemplateArgument::Integral) {
|
2009-06-13 02:26:56 +08:00
|
|
|
|
Info.Param = NTTP;
|
|
|
|
|
Info.FirstArg = Deduced[NTTP->getIndex()];
|
2010-03-26 13:50:28 +08:00
|
|
|
|
Info.SecondArg = TemplateArgument(Value, ValueType);
|
|
|
|
|
return Sema::TDK_Inconsistent;
|
2009-06-13 02:26:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-26 13:50:28 +08:00
|
|
|
|
// Extent the smaller of the two values.
|
|
|
|
|
llvm::APSInt PrevValue = *Deduced[NTTP->getIndex()].getAsIntegral();
|
|
|
|
|
if (!hasSameExtendedValue(PrevValue, Value)) {
|
2009-06-13 02:26:56 +08:00
|
|
|
|
Info.Param = NTTP;
|
|
|
|
|
Info.FirstArg = Deduced[NTTP->getIndex()];
|
2010-03-26 13:50:28 +08:00
|
|
|
|
Info.SecondArg = TemplateArgument(Value, ValueType);
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Inconsistent;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-28 10:42:43 +08:00
|
|
|
|
if (!DeducedFromArrayBound)
|
|
|
|
|
Deduced[NTTP->getIndex()].setDeducedFromArrayBound(false);
|
|
|
|
|
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-06-05 08:53:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
/// \brief Deduce the value of the given non-type template parameter
|
2009-06-05 08:53:49 +08:00
|
|
|
|
/// from the given type- or value-dependent expression.
|
|
|
|
|
///
|
|
|
|
|
/// \returns true if deduction succeeded, false otherwise.
|
2009-06-13 02:26:56 +08:00
|
|
|
|
static Sema::TemplateDeductionResult
|
2010-02-08 05:33:28 +08:00
|
|
|
|
DeduceNonTypeTemplateArgument(Sema &S,
|
2009-06-13 02:26:56 +08:00
|
|
|
|
NonTypeTemplateParmDecl *NTTP,
|
|
|
|
|
Expr *Value,
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo &Info,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
assert(NTTP->getDepth() == 0 &&
|
2009-06-05 08:53:49 +08:00
|
|
|
|
"Cannot deduce non-type template argument with depth > 0");
|
|
|
|
|
assert((Value->isTypeDependent() || Value->isValueDependent()) &&
|
|
|
|
|
"Expression template argument must be type- or value-dependent.");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
if (Deduced[NTTP->getIndex()].isNull()) {
|
2010-10-26 15:05:15 +08:00
|
|
|
|
Deduced[NTTP->getIndex()] = TemplateArgument(Value);
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-06-05 08:53:49 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
if (Deduced[NTTP->getIndex()].getKind() == TemplateArgument::Integral) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// Okay, we deduced a constant in one case and a dependent expression
|
|
|
|
|
// in another case. FIXME: Later, we will check that instantiating the
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// dependent expression gives us the constant value.
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-06-05 08:53:49 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-09-16 00:51:42 +08:00
|
|
|
|
if (Deduced[NTTP->getIndex()].getKind() == TemplateArgument::Expression) {
|
|
|
|
|
// Compare the expressions for equality
|
|
|
|
|
llvm::FoldingSetNodeID ID1, ID2;
|
2010-02-08 05:33:28 +08:00
|
|
|
|
Deduced[NTTP->getIndex()].getAsExpr()->Profile(ID1, S.Context, true);
|
|
|
|
|
Value->Profile(ID2, S.Context, true);
|
2009-09-16 00:51:42 +08:00
|
|
|
|
if (ID1 == ID2)
|
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
|
|
|
|
|
// FIXME: Fill in argument mismatch information
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-06-05 08:53:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-11-14 07:45:44 +08:00
|
|
|
|
/// \brief Deduce the value of the given non-type template parameter
|
|
|
|
|
/// from the given declaration.
|
|
|
|
|
///
|
|
|
|
|
/// \returns true if deduction succeeded, false otherwise.
|
|
|
|
|
static Sema::TemplateDeductionResult
|
2010-02-08 05:33:28 +08:00
|
|
|
|
DeduceNonTypeTemplateArgument(Sema &S,
|
2009-11-14 07:45:44 +08:00
|
|
|
|
NonTypeTemplateParmDecl *NTTP,
|
|
|
|
|
Decl *D,
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo &Info,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
|
2009-11-14 07:45:44 +08:00
|
|
|
|
assert(NTTP->getDepth() == 0 &&
|
|
|
|
|
"Cannot deduce non-type template argument with depth > 0");
|
|
|
|
|
|
|
|
|
|
if (Deduced[NTTP->getIndex()].isNull()) {
|
|
|
|
|
Deduced[NTTP->getIndex()] = TemplateArgument(D->getCanonicalDecl());
|
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Deduced[NTTP->getIndex()].getKind() == TemplateArgument::Expression) {
|
|
|
|
|
// Okay, we deduced a declaration in one case and a dependent expression
|
|
|
|
|
// in another case.
|
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Deduced[NTTP->getIndex()].getKind() == TemplateArgument::Declaration) {
|
|
|
|
|
// Compare the declarations for equality
|
|
|
|
|
if (Deduced[NTTP->getIndex()].getAsDecl()->getCanonicalDecl() ==
|
|
|
|
|
D->getCanonicalDecl())
|
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
|
|
|
|
|
// FIXME: Fill in argument mismatch information
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-13 02:26:56 +08:00
|
|
|
|
static Sema::TemplateDeductionResult
|
2010-02-08 05:33:28 +08:00
|
|
|
|
DeduceTemplateArguments(Sema &S,
|
2009-11-12 07:06:43 +08:00
|
|
|
|
TemplateParameterList *TemplateParams,
|
2009-06-13 02:26:56 +08:00
|
|
|
|
TemplateName Param,
|
|
|
|
|
TemplateName Arg,
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo &Info,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
|
2009-06-10 00:35:58 +08:00
|
|
|
|
TemplateDecl *ParamDecl = Param.getAsTemplateDecl();
|
2009-11-12 07:06:43 +08:00
|
|
|
|
if (!ParamDecl) {
|
|
|
|
|
// The parameter type is dependent and is not a template template parameter,
|
|
|
|
|
// so there is nothing that we can deduce.
|
|
|
|
|
return Sema::TDK_Success;
|
2009-06-13 02:26:56 +08:00
|
|
|
|
}
|
2009-11-12 07:06:43 +08:00
|
|
|
|
|
|
|
|
|
if (TemplateTemplateParmDecl *TempParam
|
|
|
|
|
= dyn_cast<TemplateTemplateParmDecl>(ParamDecl)) {
|
|
|
|
|
// Bind the template template parameter to the given template name.
|
|
|
|
|
TemplateArgument &ExistingArg = Deduced[TempParam->getIndex()];
|
|
|
|
|
if (ExistingArg.isNull()) {
|
|
|
|
|
// This is the first deduction for this template template parameter.
|
2010-02-08 05:33:28 +08:00
|
|
|
|
ExistingArg = TemplateArgument(S.Context.getCanonicalTemplateName(Arg));
|
2009-11-12 07:06:43 +08:00
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Verify that the previous binding matches this deduction.
|
|
|
|
|
assert(ExistingArg.getKind() == TemplateArgument::Template);
|
2010-02-08 05:33:28 +08:00
|
|
|
|
if (S.Context.hasSameTemplateName(ExistingArg.getAsTemplate(), Arg))
|
2009-11-12 07:06:43 +08:00
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
|
|
|
|
|
// Inconsistent deduction.
|
|
|
|
|
Info.Param = TempParam;
|
|
|
|
|
Info.FirstArg = ExistingArg;
|
|
|
|
|
Info.SecondArg = TemplateArgument(Arg);
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Inconsistent;
|
|
|
|
|
}
|
2009-11-12 07:06:43 +08:00
|
|
|
|
|
|
|
|
|
// Verify that the two template names are equivalent.
|
2010-02-08 05:33:28 +08:00
|
|
|
|
if (S.Context.hasSameTemplateName(Param, Arg))
|
2009-11-12 07:06:43 +08:00
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
|
|
|
|
|
// Mismatch of non-dependent template parameter to argument.
|
|
|
|
|
Info.FirstArg = TemplateArgument(Param);
|
|
|
|
|
Info.SecondArg = TemplateArgument(Arg);
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-06-10 00:35:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
/// \brief Deduce the template arguments by comparing the template parameter
|
2009-07-08 07:09:34 +08:00
|
|
|
|
/// type (which is a template-id) with the template argument type.
|
|
|
|
|
///
|
2010-02-08 05:33:28 +08:00
|
|
|
|
/// \param S the Sema
|
2009-07-08 07:09:34 +08:00
|
|
|
|
///
|
|
|
|
|
/// \param TemplateParams the template parameters that we are deducing
|
|
|
|
|
///
|
|
|
|
|
/// \param Param the parameter type
|
|
|
|
|
///
|
|
|
|
|
/// \param Arg the argument type
|
|
|
|
|
///
|
|
|
|
|
/// \param Info information about the template argument deduction itself
|
|
|
|
|
///
|
|
|
|
|
/// \param Deduced the deduced template arguments
|
|
|
|
|
///
|
|
|
|
|
/// \returns the result of template argument deduction so far. Note that a
|
|
|
|
|
/// "success" result means that template argument deduction has not yet failed,
|
|
|
|
|
/// but it may still fail, later, for other reasons.
|
|
|
|
|
static Sema::TemplateDeductionResult
|
2010-02-08 05:33:28 +08:00
|
|
|
|
DeduceTemplateArguments(Sema &S,
|
2009-07-08 07:09:34 +08:00
|
|
|
|
TemplateParameterList *TemplateParams,
|
|
|
|
|
const TemplateSpecializationType *Param,
|
|
|
|
|
QualType Arg,
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo &Info,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
|
2009-10-23 04:10:53 +08:00
|
|
|
|
assert(Arg.isCanonical() && "Argument type must be canonical");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// Check whether the template argument is a dependent template-id.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
if (const TemplateSpecializationType *SpecArg
|
2009-07-08 07:09:34 +08:00
|
|
|
|
= dyn_cast<TemplateSpecializationType>(Arg)) {
|
|
|
|
|
// Perform template argument deduction for the template name.
|
|
|
|
|
if (Sema::TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= DeduceTemplateArguments(S, TemplateParams,
|
2009-07-08 07:09:34 +08:00
|
|
|
|
Param->getTemplateName(),
|
|
|
|
|
SpecArg->getTemplateName(),
|
|
|
|
|
Info, Deduced))
|
|
|
|
|
return Result;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// Perform template argument deduction on each template
|
|
|
|
|
// argument.
|
2009-11-12 07:06:43 +08:00
|
|
|
|
unsigned NumArgs = std::min(SpecArg->getNumArgs(), Param->getNumArgs());
|
2009-07-08 07:09:34 +08:00
|
|
|
|
for (unsigned I = 0; I != NumArgs; ++I)
|
|
|
|
|
if (Sema::TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= DeduceTemplateArguments(S, TemplateParams,
|
2009-07-08 07:09:34 +08:00
|
|
|
|
Param->getArg(I),
|
|
|
|
|
SpecArg->getArg(I),
|
|
|
|
|
Info, Deduced))
|
|
|
|
|
return Result;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// If the argument type is a class template specialization, we
|
|
|
|
|
// perform template argument deduction using its template
|
|
|
|
|
// arguments.
|
|
|
|
|
const RecordType *RecordArg = dyn_cast<RecordType>(Arg);
|
|
|
|
|
if (!RecordArg)
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
|
ClassTemplateSpecializationDecl *SpecArg
|
2009-07-08 07:09:34 +08:00
|
|
|
|
= dyn_cast<ClassTemplateSpecializationDecl>(RecordArg->getDecl());
|
|
|
|
|
if (!SpecArg)
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// Perform template argument deduction for the template name.
|
|
|
|
|
if (Sema::TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= DeduceTemplateArguments(S,
|
2009-11-12 07:06:43 +08:00
|
|
|
|
TemplateParams,
|
2009-07-08 07:09:34 +08:00
|
|
|
|
Param->getTemplateName(),
|
|
|
|
|
TemplateName(SpecArg->getSpecializedTemplate()),
|
|
|
|
|
Info, Deduced))
|
|
|
|
|
return Result;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
unsigned NumArgs = Param->getNumArgs();
|
|
|
|
|
const TemplateArgumentList &ArgArgs = SpecArg->getTemplateArgs();
|
|
|
|
|
if (NumArgs != ArgArgs.size())
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
for (unsigned I = 0; I != NumArgs; ++I)
|
2009-09-09 23:08:12 +08:00
|
|
|
|
if (Sema::TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= DeduceTemplateArguments(S, TemplateParams,
|
2009-07-08 07:09:34 +08:00
|
|
|
|
Param->getArg(I),
|
|
|
|
|
ArgArgs.get(I),
|
|
|
|
|
Info, Deduced))
|
|
|
|
|
return Result;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-29 06:14:41 +08:00
|
|
|
|
/// \brief Determines whether the given type is an opaque type that
|
|
|
|
|
/// might be more qualified when instantiated.
|
|
|
|
|
static bool IsPossiblyOpaquelyQualifiedType(QualType T) {
|
|
|
|
|
switch (T->getTypeClass()) {
|
|
|
|
|
case Type::TypeOfExpr:
|
|
|
|
|
case Type::TypeOf:
|
|
|
|
|
case Type::DependentName:
|
|
|
|
|
case Type::Decltype:
|
|
|
|
|
case Type::UnresolvedUsing:
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case Type::ConstantArray:
|
|
|
|
|
case Type::IncompleteArray:
|
|
|
|
|
case Type::VariableArray:
|
|
|
|
|
case Type::DependentSizedArray:
|
|
|
|
|
return IsPossiblyOpaquelyQualifiedType(
|
|
|
|
|
cast<ArrayType>(T)->getElementType());
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-27 02:27:22 +08:00
|
|
|
|
/// \brief Deduce the template arguments by comparing the parameter type and
|
|
|
|
|
/// the argument type (C++ [temp.deduct.type]).
|
|
|
|
|
///
|
2010-02-08 05:33:28 +08:00
|
|
|
|
/// \param S the semantic analysis object within which we are deducing
|
2009-06-27 02:27:22 +08:00
|
|
|
|
///
|
|
|
|
|
/// \param TemplateParams the template parameters that we are deducing
|
|
|
|
|
///
|
|
|
|
|
/// \param ParamIn the parameter type
|
|
|
|
|
///
|
|
|
|
|
/// \param ArgIn the argument type
|
|
|
|
|
///
|
|
|
|
|
/// \param Info information about the template argument deduction itself
|
|
|
|
|
///
|
|
|
|
|
/// \param Deduced the deduced template arguments
|
|
|
|
|
///
|
2009-06-27 07:10:12 +08:00
|
|
|
|
/// \param TDF bitwise OR of the TemplateDeductionFlags bits that describe
|
2009-09-09 23:08:12 +08:00
|
|
|
|
/// how template argument deduction is performed.
|
2009-06-27 02:27:22 +08:00
|
|
|
|
///
|
|
|
|
|
/// \returns the result of template argument deduction so far. Note that a
|
|
|
|
|
/// "success" result means that template argument deduction has not yet failed,
|
|
|
|
|
/// but it may still fail, later, for other reasons.
|
2009-06-13 02:26:56 +08:00
|
|
|
|
static Sema::TemplateDeductionResult
|
2010-02-08 05:33:28 +08:00
|
|
|
|
DeduceTemplateArguments(Sema &S,
|
2009-06-13 02:26:56 +08:00
|
|
|
|
TemplateParameterList *TemplateParams,
|
|
|
|
|
QualType ParamIn, QualType ArgIn,
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo &Info,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> &Deduced,
|
2009-06-27 07:10:12 +08:00
|
|
|
|
unsigned TDF) {
|
2009-06-04 08:03:07 +08:00
|
|
|
|
// We only want to look at the canonical types, since typedefs and
|
|
|
|
|
// sugar are not part of template argument deduction.
|
2010-02-08 05:33:28 +08:00
|
|
|
|
QualType Param = S.Context.getCanonicalType(ParamIn);
|
|
|
|
|
QualType Arg = S.Context.getCanonicalType(ArgIn);
|
2009-06-04 08:03:07 +08:00
|
|
|
|
|
2009-06-27 02:27:22 +08:00
|
|
|
|
// C++0x [temp.deduct.call]p4 bullet 1:
|
|
|
|
|
// - If the original P is a reference type, the deduced A (i.e., the type
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// referred to by the reference) can be more cv-qualified than the
|
2009-06-27 02:27:22 +08:00
|
|
|
|
// transformed A.
|
2009-06-27 07:10:12 +08:00
|
|
|
|
if (TDF & TDF_ParamWithReferenceType) {
|
2009-12-30 12:10:01 +08:00
|
|
|
|
Qualifiers Quals;
|
2010-02-08 05:33:28 +08:00
|
|
|
|
QualType UnqualParam = S.Context.getUnqualifiedArrayType(Param, Quals);
|
2009-12-30 12:10:01 +08:00
|
|
|
|
Quals.setCVRQualifiers(Quals.getCVRQualifiers() &
|
|
|
|
|
Arg.getCVRQualifiersThroughArrayTypes());
|
2010-02-08 05:33:28 +08:00
|
|
|
|
Param = S.Context.getQualifiedType(UnqualParam, Quals);
|
2009-06-27 02:27:22 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-27 04:57:09 +08:00
|
|
|
|
// If the parameter type is not dependent, there is nothing to deduce.
|
2009-09-15 04:00:47 +08:00
|
|
|
|
if (!Param->isDependentType()) {
|
|
|
|
|
if (!(TDF & TDF_SkipNonDependent) && Param != Arg) {
|
|
|
|
|
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-27 04:57:09 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-09-15 04:00:47 +08:00
|
|
|
|
}
|
2009-06-04 08:03:07 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// C++ [temp.deduct.type]p9:
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// A template type argument T, a template template argument TT or a
|
|
|
|
|
// template non-type argument i can be deduced if P and A have one of
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// the following forms:
|
|
|
|
|
//
|
|
|
|
|
// T
|
|
|
|
|
// cv-list T
|
2009-09-09 23:08:12 +08:00
|
|
|
|
if (const TemplateTypeParmType *TemplateTypeParm
|
2009-09-22 07:43:11 +08:00
|
|
|
|
= Param->getAs<TemplateTypeParmType>()) {
|
2009-06-13 02:26:56 +08:00
|
|
|
|
unsigned Index = TemplateTypeParm->getIndex();
|
2009-07-23 05:30:48 +08:00
|
|
|
|
bool RecanonicalizeArg = false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-23 04:02:25 +08:00
|
|
|
|
// If the argument type is an array type, move the qualifiers up to the
|
|
|
|
|
// top level, so they can be matched with the qualifiers on the parameter.
|
|
|
|
|
// FIXME: address spaces, ObjC GC qualifiers
|
2009-07-23 05:30:48 +08:00
|
|
|
|
if (isa<ArrayType>(Arg)) {
|
2009-09-25 03:53:00 +08:00
|
|
|
|
Qualifiers Quals;
|
2010-02-08 05:33:28 +08:00
|
|
|
|
Arg = S.Context.getUnqualifiedArrayType(Arg, Quals);
|
2009-09-25 03:53:00 +08:00
|
|
|
|
if (Quals) {
|
2010-02-08 05:33:28 +08:00
|
|
|
|
Arg = S.Context.getQualifiedType(Arg, Quals);
|
2009-07-23 05:30:48 +08:00
|
|
|
|
RecanonicalizeArg = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-04 08:03:07 +08:00
|
|
|
|
// The argument type can not be less qualified than the parameter
|
|
|
|
|
// type.
|
2009-06-27 07:10:12 +08:00
|
|
|
|
if (Param.isMoreQualifiedThan(Arg) && !(TDF & TDF_IgnoreQualifiers)) {
|
2009-06-13 02:26:56 +08:00
|
|
|
|
Info.Param = cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index));
|
2010-08-05 17:05:08 +08:00
|
|
|
|
Info.FirstArg = TemplateArgument(Param);
|
2009-10-29 16:12:44 +08:00
|
|
|
|
Info.SecondArg = TemplateArgument(Arg);
|
2010-08-05 17:05:08 +08:00
|
|
|
|
return Sema::TDK_Underqualified;
|
2009-06-13 02:26:56 +08:00
|
|
|
|
}
|
2009-06-04 08:03:07 +08:00
|
|
|
|
|
|
|
|
|
assert(TemplateTypeParm->getDepth() == 0 && "Can't deduce with depth > 0");
|
2010-02-08 05:33:28 +08:00
|
|
|
|
assert(Arg != S.Context.OverloadTy && "Unresolved overloaded function");
|
2009-09-25 03:53:00 +08:00
|
|
|
|
QualType DeducedType = Arg;
|
2010-12-10 19:01:00 +08:00
|
|
|
|
|
|
|
|
|
// local manipulation is okay because it's canonical
|
|
|
|
|
DeducedType.removeLocalCVRQualifiers(Param.getCVRQualifiers());
|
2009-07-23 05:30:48 +08:00
|
|
|
|
if (RecanonicalizeArg)
|
2010-02-08 05:33:28 +08:00
|
|
|
|
DeducedType = S.Context.getCanonicalType(DeducedType);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-04 08:03:07 +08:00
|
|
|
|
if (Deduced[Index].isNull())
|
2009-10-29 16:12:44 +08:00
|
|
|
|
Deduced[Index] = TemplateArgument(DeducedType);
|
2009-06-04 08:03:07 +08:00
|
|
|
|
else {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// C++ [temp.deduct.type]p2:
|
2009-06-04 08:03:07 +08:00
|
|
|
|
// [...] If type deduction cannot be done for any P/A pair, or if for
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// any pair the deduction leads to more than one possible set of
|
|
|
|
|
// deduced values, or if different pairs yield different deduced
|
|
|
|
|
// values, or if any template argument remains neither deduced nor
|
2009-06-04 08:03:07 +08:00
|
|
|
|
// explicitly specified, template argument deduction fails.
|
2009-06-13 02:26:56 +08:00
|
|
|
|
if (Deduced[Index].getAsType() != DeducedType) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
Info.Param
|
2009-06-13 02:26:56 +08:00
|
|
|
|
= cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index));
|
|
|
|
|
Info.FirstArg = Deduced[Index];
|
2009-10-29 16:12:44 +08:00
|
|
|
|
Info.SecondArg = TemplateArgument(Arg);
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Inconsistent;
|
|
|
|
|
}
|
2009-06-04 08:03:07 +08:00
|
|
|
|
}
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-06-04 08:03:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-13 02:26:56 +08:00
|
|
|
|
// Set up the template argument deduction information for a failure.
|
2009-10-29 16:12:44 +08:00
|
|
|
|
Info.FirstArg = TemplateArgument(ParamIn);
|
|
|
|
|
Info.SecondArg = TemplateArgument(ArgIn);
|
2009-06-13 02:26:56 +08:00
|
|
|
|
|
2009-06-27 07:10:12 +08:00
|
|
|
|
// Check the cv-qualifiers on the parameter and argument types.
|
|
|
|
|
if (!(TDF & TDF_IgnoreQualifiers)) {
|
|
|
|
|
if (TDF & TDF_ParamWithReferenceType) {
|
|
|
|
|
if (Param.isMoreQualifiedThan(Arg))
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2010-08-29 06:14:41 +08:00
|
|
|
|
} else if (!IsPossiblyOpaquelyQualifiedType(Param)) {
|
2009-06-27 07:10:12 +08:00
|
|
|
|
if (Param.getCVRQualifiers() != Arg.getCVRQualifiers())
|
2009-09-09 23:08:12 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-06-27 07:10:12 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-06-04 08:03:07 +08:00
|
|
|
|
|
2009-06-04 08:21:18 +08:00
|
|
|
|
switch (Param->getTypeClass()) {
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// No deduction possible for these types
|
|
|
|
|
case Type::Builtin:
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// T *
|
2009-06-04 08:21:18 +08:00
|
|
|
|
case Type::Pointer: {
|
2010-05-13 15:48:05 +08:00
|
|
|
|
QualType PointeeType;
|
|
|
|
|
if (const PointerType *PointerArg = Arg->getAs<PointerType>()) {
|
|
|
|
|
PointeeType = PointerArg->getPointeeType();
|
|
|
|
|
} else if (const ObjCObjectPointerType *PointerArg
|
|
|
|
|
= Arg->getAs<ObjCObjectPointerType>()) {
|
|
|
|
|
PointeeType = PointerArg->getPointeeType();
|
|
|
|
|
} else {
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2010-05-13 15:48:05 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-27 07:27:24 +08:00
|
|
|
|
unsigned SubTDF = TDF & (TDF_IgnoreQualifiers | TDF_DerivedClass);
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceTemplateArguments(S, TemplateParams,
|
2009-06-04 08:21:18 +08:00
|
|
|
|
cast<PointerType>(Param)->getPointeeType(),
|
2010-05-13 15:48:05 +08:00
|
|
|
|
PointeeType,
|
2009-06-27 07:27:24 +08:00
|
|
|
|
Info, Deduced, SubTDF);
|
2009-06-04 08:21:18 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// T &
|
2009-06-04 08:21:18 +08:00
|
|
|
|
case Type::LValueReference: {
|
2009-07-30 05:53:49 +08:00
|
|
|
|
const LValueReferenceType *ReferenceArg = Arg->getAs<LValueReferenceType>();
|
2009-06-04 08:21:18 +08:00
|
|
|
|
if (!ReferenceArg)
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceTemplateArguments(S, TemplateParams,
|
2009-06-04 08:21:18 +08:00
|
|
|
|
cast<LValueReferenceType>(Param)->getPointeeType(),
|
|
|
|
|
ReferenceArg->getPointeeType(),
|
2009-06-27 07:10:12 +08:00
|
|
|
|
Info, Deduced, 0);
|
2009-06-04 08:21:18 +08:00
|
|
|
|
}
|
2009-06-04 08:03:07 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// T && [C++0x]
|
2009-06-04 08:21:18 +08:00
|
|
|
|
case Type::RValueReference: {
|
2009-07-30 05:53:49 +08:00
|
|
|
|
const RValueReferenceType *ReferenceArg = Arg->getAs<RValueReferenceType>();
|
2009-06-04 08:21:18 +08:00
|
|
|
|
if (!ReferenceArg)
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceTemplateArguments(S, TemplateParams,
|
2009-06-04 08:21:18 +08:00
|
|
|
|
cast<RValueReferenceType>(Param)->getPointeeType(),
|
|
|
|
|
ReferenceArg->getPointeeType(),
|
2009-06-27 07:10:12 +08:00
|
|
|
|
Info, Deduced, 0);
|
2009-06-04 08:21:18 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// T [] (implied, but not stated explicitly)
|
2009-06-04 12:11:30 +08:00
|
|
|
|
case Type::IncompleteArray: {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
const IncompleteArrayType *IncompleteArrayArg =
|
2010-02-08 05:33:28 +08:00
|
|
|
|
S.Context.getAsIncompleteArrayType(Arg);
|
2009-06-04 12:11:30 +08:00
|
|
|
|
if (!IncompleteArrayArg)
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-08-19 08:20:19 +08:00
|
|
|
|
unsigned SubTDF = TDF & TDF_IgnoreQualifiers;
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceTemplateArguments(S, TemplateParams,
|
|
|
|
|
S.Context.getAsIncompleteArrayType(Param)->getElementType(),
|
2009-06-04 12:11:30 +08:00
|
|
|
|
IncompleteArrayArg->getElementType(),
|
2010-08-19 08:20:19 +08:00
|
|
|
|
Info, Deduced, SubTDF);
|
2009-06-04 12:11:30 +08:00
|
|
|
|
}
|
2009-06-05 08:53:49 +08:00
|
|
|
|
|
|
|
|
|
// T [integer-constant]
|
2009-06-04 12:11:30 +08:00
|
|
|
|
case Type::ConstantArray: {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
const ConstantArrayType *ConstantArrayArg =
|
2010-02-08 05:33:28 +08:00
|
|
|
|
S.Context.getAsConstantArrayType(Arg);
|
2009-06-04 12:11:30 +08:00
|
|
|
|
if (!ConstantArrayArg)
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
|
const ConstantArrayType *ConstantArrayParm =
|
2010-02-08 05:33:28 +08:00
|
|
|
|
S.Context.getAsConstantArrayType(Param);
|
2009-06-04 12:11:30 +08:00
|
|
|
|
if (ConstantArrayArg->getSize() != ConstantArrayParm->getSize())
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-08-19 08:20:19 +08:00
|
|
|
|
unsigned SubTDF = TDF & TDF_IgnoreQualifiers;
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceTemplateArguments(S, TemplateParams,
|
2009-06-04 12:11:30 +08:00
|
|
|
|
ConstantArrayParm->getElementType(),
|
|
|
|
|
ConstantArrayArg->getElementType(),
|
2010-08-19 08:20:19 +08:00
|
|
|
|
Info, Deduced, SubTDF);
|
2009-06-04 12:11:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// type [i]
|
|
|
|
|
case Type::DependentSizedArray: {
|
2010-02-08 05:33:28 +08:00
|
|
|
|
const ArrayType *ArrayArg = S.Context.getAsArrayType(Arg);
|
2009-06-05 08:53:49 +08:00
|
|
|
|
if (!ArrayArg)
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-08-19 08:20:19 +08:00
|
|
|
|
unsigned SubTDF = TDF & TDF_IgnoreQualifiers;
|
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// Check the element type of the arrays
|
|
|
|
|
const DependentSizedArrayType *DependentArrayParm
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= S.Context.getAsDependentSizedArrayType(Param);
|
2009-06-13 02:26:56 +08:00
|
|
|
|
if (Sema::TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= DeduceTemplateArguments(S, TemplateParams,
|
2009-06-13 02:26:56 +08:00
|
|
|
|
DependentArrayParm->getElementType(),
|
|
|
|
|
ArrayArg->getElementType(),
|
2010-08-19 08:20:19 +08:00
|
|
|
|
Info, Deduced, SubTDF))
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Result;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// Determine the array bound is something we can deduce.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
NonTypeTemplateParmDecl *NTTP
|
2009-06-05 08:53:49 +08:00
|
|
|
|
= getDeducedParameterFromExpr(DependentArrayParm->getSizeExpr());
|
|
|
|
|
if (!NTTP)
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
|
// We can perform template argument deduction for the given non-type
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// template parameter.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
assert(NTTP->getDepth() == 0 &&
|
2009-06-05 08:53:49 +08:00
|
|
|
|
"Cannot deduce non-type template argument at depth > 0");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
if (const ConstantArrayType *ConstantArrayArg
|
2009-06-17 06:44:31 +08:00
|
|
|
|
= dyn_cast<ConstantArrayType>(ArrayArg)) {
|
|
|
|
|
llvm::APSInt Size(ConstantArrayArg->getSize());
|
2010-03-26 13:50:28 +08:00
|
|
|
|
return DeduceNonTypeTemplateArgument(S, NTTP, Size,
|
|
|
|
|
S.Context.getSizeType(),
|
2010-03-28 10:42:43 +08:00
|
|
|
|
/*ArrayBound=*/true,
|
2009-06-13 02:26:56 +08:00
|
|
|
|
Info, Deduced);
|
2009-06-17 06:44:31 +08:00
|
|
|
|
}
|
2009-06-05 08:53:49 +08:00
|
|
|
|
if (const DependentSizedArrayType *DependentArrayArg
|
|
|
|
|
= dyn_cast<DependentSizedArrayType>(ArrayArg))
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceNonTypeTemplateArgument(S, NTTP,
|
2009-06-05 08:53:49 +08:00
|
|
|
|
DependentArrayArg->getSizeExpr(),
|
2009-06-13 02:26:56 +08:00
|
|
|
|
Info, Deduced);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// Incomplete type does not match a dependently-sized array type
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-06-05 08:53:49 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
|
// type(*)(T)
|
|
|
|
|
// T(*)()
|
|
|
|
|
// T(*)(T)
|
2009-06-08 23:19:08 +08:00
|
|
|
|
case Type::FunctionProto: {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
const FunctionProtoType *FunctionProtoArg =
|
2009-06-08 23:19:08 +08:00
|
|
|
|
dyn_cast<FunctionProtoType>(Arg);
|
|
|
|
|
if (!FunctionProtoArg)
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
|
const FunctionProtoType *FunctionProtoParam =
|
2009-06-08 23:19:08 +08:00
|
|
|
|
cast<FunctionProtoType>(Param);
|
2009-06-09 03:22:23 +08:00
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
if (FunctionProtoParam->getTypeQuals() !=
|
2009-06-09 03:22:23 +08:00
|
|
|
|
FunctionProtoArg->getTypeQuals())
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-09 03:22:23 +08:00
|
|
|
|
if (FunctionProtoParam->getNumArgs() != FunctionProtoArg->getNumArgs())
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-09 03:22:23 +08:00
|
|
|
|
if (FunctionProtoParam->isVariadic() != FunctionProtoArg->isVariadic())
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-06-09 03:22:23 +08:00
|
|
|
|
|
2009-06-08 23:19:08 +08:00
|
|
|
|
// Check return types.
|
2009-06-13 02:26:56 +08:00
|
|
|
|
if (Sema::TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= DeduceTemplateArguments(S, TemplateParams,
|
2009-06-13 02:26:56 +08:00
|
|
|
|
FunctionProtoParam->getResultType(),
|
|
|
|
|
FunctionProtoArg->getResultType(),
|
2009-06-27 07:10:12 +08:00
|
|
|
|
Info, Deduced, 0))
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Result;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-08 23:19:08 +08:00
|
|
|
|
for (unsigned I = 0, N = FunctionProtoParam->getNumArgs(); I != N; ++I) {
|
|
|
|
|
// Check argument types.
|
2009-06-13 02:26:56 +08:00
|
|
|
|
if (Sema::TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= DeduceTemplateArguments(S, TemplateParams,
|
2009-06-13 02:26:56 +08:00
|
|
|
|
FunctionProtoParam->getArgType(I),
|
|
|
|
|
FunctionProtoArg->getArgType(I),
|
2009-06-27 07:10:12 +08:00
|
|
|
|
Info, Deduced, 0))
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Result;
|
2009-06-08 23:19:08 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-06-08 23:19:08 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-03-10 11:28:59 +08:00
|
|
|
|
case Type::InjectedClassName: {
|
|
|
|
|
// Treat a template's injected-class-name as if the template
|
|
|
|
|
// specialization type had been used.
|
2010-04-27 08:57:59 +08:00
|
|
|
|
Param = cast<InjectedClassNameType>(Param)
|
|
|
|
|
->getInjectedSpecializationType();
|
2010-03-10 11:28:59 +08:00
|
|
|
|
assert(isa<TemplateSpecializationType>(Param) &&
|
|
|
|
|
"injected class name is not a template specialization type");
|
|
|
|
|
// fall through
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-27 04:57:09 +08:00
|
|
|
|
// template-name<T> (where template-name refers to a class template)
|
2009-06-10 00:35:58 +08:00
|
|
|
|
// template-name<i>
|
2009-11-12 07:06:43 +08:00
|
|
|
|
// TT<T>
|
|
|
|
|
// TT<i>
|
|
|
|
|
// TT<>
|
2009-06-10 00:35:58 +08:00
|
|
|
|
case Type::TemplateSpecialization: {
|
|
|
|
|
const TemplateSpecializationType *SpecParam
|
|
|
|
|
= cast<TemplateSpecializationType>(Param);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// Try to deduce template arguments from the template-id.
|
|
|
|
|
Sema::TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= DeduceTemplateArguments(S, TemplateParams, SpecParam, Arg,
|
2009-07-08 07:09:34 +08:00
|
|
|
|
Info, Deduced);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-10-01 06:13:51 +08:00
|
|
|
|
if (Result && (TDF & TDF_DerivedClass)) {
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// C++ [temp.deduct.call]p3b3:
|
|
|
|
|
// If P is a class, and P has the form template-id, then A can be a
|
|
|
|
|
// derived class of the deduced A. Likewise, if P is a pointer to a
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// class of the form template-id, A can be a pointer to a derived
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// class pointed to by the deduced A.
|
|
|
|
|
//
|
|
|
|
|
// More importantly:
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// These alternatives are considered only if type deduction would
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// otherwise fail.
|
2010-02-08 05:33:28 +08:00
|
|
|
|
if (const RecordType *RecordT = Arg->getAs<RecordType>()) {
|
|
|
|
|
// We cannot inspect base classes as part of deduction when the type
|
|
|
|
|
// is incomplete, so either instantiate any templates necessary to
|
|
|
|
|
// complete the type, or skip over it if it cannot be completed.
|
2010-02-09 07:07:23 +08:00
|
|
|
|
if (S.RequireCompleteType(Info.getLocation(), Arg, 0))
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return Result;
|
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// Use data recursion to crawl through the list of base classes.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// Visited contains the set of nodes we have already visited, while
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// ToVisit is our stack of records that we still need to visit.
|
|
|
|
|
llvm::SmallPtrSet<const RecordType *, 8> Visited;
|
|
|
|
|
llvm::SmallVector<const RecordType *, 8> ToVisit;
|
|
|
|
|
ToVisit.push_back(RecordT);
|
|
|
|
|
bool Successful = false;
|
2010-11-02 08:02:34 +08:00
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> DeducedOrig(0);
|
|
|
|
|
DeducedOrig = Deduced;
|
2009-07-08 07:09:34 +08:00
|
|
|
|
while (!ToVisit.empty()) {
|
|
|
|
|
// Retrieve the next class in the inheritance hierarchy.
|
|
|
|
|
const RecordType *NextT = ToVisit.back();
|
|
|
|
|
ToVisit.pop_back();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// If we have already seen this type, skip it.
|
|
|
|
|
if (!Visited.insert(NextT))
|
|
|
|
|
continue;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// If this is a base class, try to perform template argument
|
|
|
|
|
// deduction from it.
|
|
|
|
|
if (NextT != RecordT) {
|
|
|
|
|
Sema::TemplateDeductionResult BaseResult
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= DeduceTemplateArguments(S, TemplateParams, SpecParam,
|
2009-07-08 07:09:34 +08:00
|
|
|
|
QualType(NextT, 0), Info, Deduced);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// If template argument deduction for this base was successful,
|
2010-11-02 08:02:34 +08:00
|
|
|
|
// note that we had some success. Otherwise, ignore any deductions
|
|
|
|
|
// from this base class.
|
|
|
|
|
if (BaseResult == Sema::TDK_Success) {
|
2009-07-08 07:09:34 +08:00
|
|
|
|
Successful = true;
|
2010-11-02 08:02:34 +08:00
|
|
|
|
DeducedOrig = Deduced;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
Deduced = DeducedOrig;
|
2009-07-08 07:09:34 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
// Visit base classes
|
|
|
|
|
CXXRecordDecl *Next = cast<CXXRecordDecl>(NextT->getDecl());
|
|
|
|
|
for (CXXRecordDecl::base_class_iterator Base = Next->bases_begin(),
|
|
|
|
|
BaseEnd = Next->bases_end();
|
2009-10-26 01:03:50 +08:00
|
|
|
|
Base != BaseEnd; ++Base) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
assert(Base->getType()->isRecordType() &&
|
2009-07-08 07:09:34 +08:00
|
|
|
|
"Base class that isn't a record?");
|
2009-07-30 05:53:49 +08:00
|
|
|
|
ToVisit.push_back(Base->getType()->getAs<RecordType>());
|
2009-07-08 07:09:34 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
if (Successful)
|
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-08 07:09:34 +08:00
|
|
|
|
return Result;
|
2009-06-10 00:35:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-11 07:47:09 +08:00
|
|
|
|
// T type::*
|
|
|
|
|
// T T::*
|
|
|
|
|
// T (type::*)()
|
|
|
|
|
// type (T::*)()
|
|
|
|
|
// type (type::*)(T)
|
|
|
|
|
// type (T::*)(T)
|
|
|
|
|
// T (type::*)(T)
|
|
|
|
|
// T (T::*)()
|
|
|
|
|
// T (T::*)(T)
|
|
|
|
|
case Type::MemberPointer: {
|
|
|
|
|
const MemberPointerType *MemPtrParam = cast<MemberPointerType>(Param);
|
|
|
|
|
const MemberPointerType *MemPtrArg = dyn_cast<MemberPointerType>(Arg);
|
|
|
|
|
if (!MemPtrArg)
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
|
|
|
|
|
|
|
|
|
if (Sema::TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= DeduceTemplateArguments(S, TemplateParams,
|
2009-06-13 02:26:56 +08:00
|
|
|
|
MemPtrParam->getPointeeType(),
|
|
|
|
|
MemPtrArg->getPointeeType(),
|
2009-06-27 07:10:12 +08:00
|
|
|
|
Info, Deduced,
|
|
|
|
|
TDF & TDF_IgnoreQualifiers))
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Result;
|
|
|
|
|
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceTemplateArguments(S, TemplateParams,
|
2009-06-13 02:26:56 +08:00
|
|
|
|
QualType(MemPtrParam->getClass(), 0),
|
|
|
|
|
QualType(MemPtrArg->getClass(), 0),
|
2009-06-27 07:10:12 +08:00
|
|
|
|
Info, Deduced, 0);
|
2009-06-11 07:47:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-13 06:56:54 +08:00
|
|
|
|
// (clang extension)
|
|
|
|
|
//
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// type(^)(T)
|
|
|
|
|
// T(^)()
|
|
|
|
|
// T(^)(T)
|
2009-06-13 00:23:10 +08:00
|
|
|
|
case Type::BlockPointer: {
|
|
|
|
|
const BlockPointerType *BlockPtrParam = cast<BlockPointerType>(Param);
|
|
|
|
|
const BlockPointerType *BlockPtrArg = dyn_cast<BlockPointerType>(Arg);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-13 00:23:10 +08:00
|
|
|
|
if (!BlockPtrArg)
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceTemplateArguments(S, TemplateParams,
|
2009-06-13 00:23:10 +08:00
|
|
|
|
BlockPtrParam->getPointeeType(),
|
2009-06-13 02:26:56 +08:00
|
|
|
|
BlockPtrArg->getPointeeType(), Info,
|
2009-06-27 07:10:12 +08:00
|
|
|
|
Deduced, 0);
|
2009-06-13 00:23:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-11 07:47:09 +08:00
|
|
|
|
case Type::TypeOfExpr:
|
|
|
|
|
case Type::TypeOf:
|
2010-04-01 01:34:00 +08:00
|
|
|
|
case Type::DependentName:
|
2009-06-11 07:47:09 +08:00
|
|
|
|
// No template argument deduction for these types
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-06-11 07:47:09 +08:00
|
|
|
|
|
2009-06-04 08:21:18 +08:00
|
|
|
|
default:
|
|
|
|
|
break;
|
2009-06-04 08:03:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// FIXME: Many more cases to go (to go).
|
2009-06-27 04:57:09 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-06-04 08:03:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-13 02:26:56 +08:00
|
|
|
|
static Sema::TemplateDeductionResult
|
2010-02-08 05:33:28 +08:00
|
|
|
|
DeduceTemplateArguments(Sema &S,
|
2009-06-13 02:26:56 +08:00
|
|
|
|
TemplateParameterList *TemplateParams,
|
|
|
|
|
const TemplateArgument &Param,
|
2009-06-04 08:03:07 +08:00
|
|
|
|
const TemplateArgument &Arg,
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo &Info,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
|
2009-06-04 08:03:07 +08:00
|
|
|
|
switch (Param.getKind()) {
|
2009-06-05 08:53:49 +08:00
|
|
|
|
case TemplateArgument::Null:
|
|
|
|
|
assert(false && "Null template argument in parameter list");
|
|
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
|
case TemplateArgument::Type:
|
2009-11-11 09:00:40 +08:00
|
|
|
|
if (Arg.getKind() == TemplateArgument::Type)
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceTemplateArguments(S, TemplateParams, Param.getAsType(),
|
2009-11-11 09:00:40 +08:00
|
|
|
|
Arg.getAsType(), Info, Deduced, 0);
|
|
|
|
|
Info.FirstArg = Param;
|
|
|
|
|
Info.SecondArg = Arg;
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
|
|
|
|
|
|
|
|
|
case TemplateArgument::Template:
|
2009-11-12 07:06:43 +08:00
|
|
|
|
if (Arg.getKind() == TemplateArgument::Template)
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceTemplateArguments(S, TemplateParams,
|
2009-11-11 09:00:40 +08:00
|
|
|
|
Param.getAsTemplate(),
|
2009-11-12 07:06:43 +08:00
|
|
|
|
Arg.getAsTemplate(), Info, Deduced);
|
2009-11-11 09:00:40 +08:00
|
|
|
|
Info.FirstArg = Param;
|
|
|
|
|
Info.SecondArg = Arg;
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
case TemplateArgument::Declaration:
|
2009-11-11 09:00:40 +08:00
|
|
|
|
if (Arg.getKind() == TemplateArgument::Declaration &&
|
|
|
|
|
Param.getAsDecl()->getCanonicalDecl() ==
|
|
|
|
|
Arg.getAsDecl()->getCanonicalDecl())
|
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
|
2009-06-13 02:26:56 +08:00
|
|
|
|
Info.FirstArg = Param;
|
|
|
|
|
Info.SecondArg = Arg;
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
case TemplateArgument::Integral:
|
|
|
|
|
if (Arg.getKind() == TemplateArgument::Integral) {
|
2010-03-26 13:50:28 +08:00
|
|
|
|
if (hasSameExtendedValue(*Param.getAsIntegral(), *Arg.getAsIntegral()))
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
|
|
|
|
|
Info.FirstArg = Param;
|
|
|
|
|
Info.SecondArg = Arg;
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Arg.getKind() == TemplateArgument::Expression) {
|
|
|
|
|
Info.FirstArg = Param;
|
|
|
|
|
Info.SecondArg = Arg;
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-06-05 08:53:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-13 02:26:56 +08:00
|
|
|
|
Info.FirstArg = Param;
|
|
|
|
|
Info.SecondArg = Arg;
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
case TemplateArgument::Expression: {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
if (NonTypeTemplateParmDecl *NTTP
|
2009-06-05 08:53:49 +08:00
|
|
|
|
= getDeducedParameterFromExpr(Param.getAsExpr())) {
|
|
|
|
|
if (Arg.getKind() == TemplateArgument::Integral)
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceNonTypeTemplateArgument(S, NTTP,
|
2009-09-09 23:08:12 +08:00
|
|
|
|
*Arg.getAsIntegral(),
|
2010-03-26 13:50:28 +08:00
|
|
|
|
Arg.getIntegralType(),
|
2010-03-28 10:42:43 +08:00
|
|
|
|
/*ArrayBound=*/false,
|
2009-06-13 02:26:56 +08:00
|
|
|
|
Info, Deduced);
|
2009-06-05 08:53:49 +08:00
|
|
|
|
if (Arg.getKind() == TemplateArgument::Expression)
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceNonTypeTemplateArgument(S, NTTP, Arg.getAsExpr(),
|
2009-06-13 02:26:56 +08:00
|
|
|
|
Info, Deduced);
|
2009-11-14 07:45:44 +08:00
|
|
|
|
if (Arg.getKind() == TemplateArgument::Declaration)
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceNonTypeTemplateArgument(S, NTTP, Arg.getAsDecl(),
|
2009-11-14 07:45:44 +08:00
|
|
|
|
Info, Deduced);
|
|
|
|
|
|
2009-06-13 02:26:56 +08:00
|
|
|
|
Info.FirstArg = Param;
|
|
|
|
|
Info.SecondArg = Arg;
|
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-06-05 08:53:49 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
|
// Can't deduce anything, but that's okay.
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-06-05 08:53:49 +08:00
|
|
|
|
}
|
2009-06-16 01:04:53 +08:00
|
|
|
|
case TemplateArgument::Pack:
|
|
|
|
|
assert(0 && "FIXME: Implement!");
|
|
|
|
|
break;
|
2009-06-04 08:03:07 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-06-04 08:03:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
static Sema::TemplateDeductionResult
|
2010-02-08 05:33:28 +08:00
|
|
|
|
DeduceTemplateArguments(Sema &S,
|
2009-06-13 02:26:56 +08:00
|
|
|
|
TemplateParameterList *TemplateParams,
|
2009-06-04 08:03:07 +08:00
|
|
|
|
const TemplateArgumentList &ParamList,
|
|
|
|
|
const TemplateArgumentList &ArgList,
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo &Info,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> &Deduced) {
|
2009-06-04 08:03:07 +08:00
|
|
|
|
assert(ParamList.size() == ArgList.size());
|
|
|
|
|
for (unsigned I = 0, N = ParamList.size(); I != N; ++I) {
|
2009-06-13 02:26:56 +08:00
|
|
|
|
if (Sema::TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= DeduceTemplateArguments(S, TemplateParams,
|
2009-09-09 23:08:12 +08:00
|
|
|
|
ParamList[I], ArgList[I],
|
2009-06-13 02:26:56 +08:00
|
|
|
|
Info, Deduced))
|
|
|
|
|
return Result;
|
2009-06-04 08:03:07 +08:00
|
|
|
|
}
|
2009-06-13 02:26:56 +08:00
|
|
|
|
return Sema::TDK_Success;
|
2009-06-04 08:03:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-27 04:57:09 +08:00
|
|
|
|
/// \brief Determine whether two template arguments are the same.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
static bool isSameTemplateArg(ASTContext &Context,
|
2009-06-27 04:57:09 +08:00
|
|
|
|
const TemplateArgument &X,
|
|
|
|
|
const TemplateArgument &Y) {
|
|
|
|
|
if (X.getKind() != Y.getKind())
|
|
|
|
|
return false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-27 04:57:09 +08:00
|
|
|
|
switch (X.getKind()) {
|
|
|
|
|
case TemplateArgument::Null:
|
|
|
|
|
assert(false && "Comparing NULL template argument");
|
|
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-27 04:57:09 +08:00
|
|
|
|
case TemplateArgument::Type:
|
|
|
|
|
return Context.getCanonicalType(X.getAsType()) ==
|
|
|
|
|
Context.getCanonicalType(Y.getAsType());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-27 04:57:09 +08:00
|
|
|
|
case TemplateArgument::Declaration:
|
2009-07-18 08:34:25 +08:00
|
|
|
|
return X.getAsDecl()->getCanonicalDecl() ==
|
|
|
|
|
Y.getAsDecl()->getCanonicalDecl();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-11-11 09:00:40 +08:00
|
|
|
|
case TemplateArgument::Template:
|
|
|
|
|
return Context.getCanonicalTemplateName(X.getAsTemplate())
|
|
|
|
|
.getAsVoidPointer() ==
|
|
|
|
|
Context.getCanonicalTemplateName(Y.getAsTemplate())
|
|
|
|
|
.getAsVoidPointer();
|
|
|
|
|
|
2009-06-27 04:57:09 +08:00
|
|
|
|
case TemplateArgument::Integral:
|
|
|
|
|
return *X.getAsIntegral() == *Y.getAsIntegral();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-11-11 09:00:40 +08:00
|
|
|
|
case TemplateArgument::Expression: {
|
|
|
|
|
llvm::FoldingSetNodeID XID, YID;
|
|
|
|
|
X.getAsExpr()->Profile(XID, Context, true);
|
|
|
|
|
Y.getAsExpr()->Profile(YID, Context, true);
|
|
|
|
|
return XID == YID;
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-27 04:57:09 +08:00
|
|
|
|
case TemplateArgument::Pack:
|
|
|
|
|
if (X.pack_size() != Y.pack_size())
|
|
|
|
|
return false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
|
for (TemplateArgument::pack_iterator XP = X.pack_begin(),
|
|
|
|
|
XPEnd = X.pack_end(),
|
2009-06-27 04:57:09 +08:00
|
|
|
|
YP = Y.pack_begin();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
XP != XPEnd; ++XP, ++YP)
|
2009-06-27 04:57:09 +08:00
|
|
|
|
if (!isSameTemplateArg(Context, *XP, *YP))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// \brief Helper function to build a TemplateParameter when we don't
|
|
|
|
|
/// know its type statically.
|
|
|
|
|
static TemplateParameter makeTemplateParameter(Decl *D) {
|
|
|
|
|
if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(D))
|
|
|
|
|
return TemplateParameter(TTP);
|
|
|
|
|
else if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D))
|
|
|
|
|
return TemplateParameter(NTTP);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-27 04:57:09 +08:00
|
|
|
|
return TemplateParameter(cast<TemplateTemplateParmDecl>(D));
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-29 14:21:43 +08:00
|
|
|
|
/// Complete template argument deduction for a class template partial
|
|
|
|
|
/// specialization.
|
|
|
|
|
static Sema::TemplateDeductionResult
|
|
|
|
|
FinishTemplateArgumentDeduction(Sema &S,
|
|
|
|
|
ClassTemplatePartialSpecializationDecl *Partial,
|
|
|
|
|
const TemplateArgumentList &TemplateArgs,
|
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> &Deduced,
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo &Info) {
|
2010-04-29 14:21:43 +08:00
|
|
|
|
// Trap errors.
|
|
|
|
|
Sema::SFINAETrap Trap(S);
|
|
|
|
|
|
|
|
|
|
Sema::ContextRAII SavedContext(S, Partial);
|
2010-04-29 08:35:03 +08:00
|
|
|
|
|
2009-06-12 02:10:32 +08:00
|
|
|
|
// C++ [temp.deduct.type]p2:
|
|
|
|
|
// [...] or if any template argument remains neither deduced nor
|
|
|
|
|
// explicitly specified, template argument deduction fails.
|
2010-11-08 07:05:16 +08:00
|
|
|
|
llvm::SmallVector<TemplateArgument, 4> Builder;
|
2009-06-12 02:10:32 +08:00
|
|
|
|
for (unsigned I = 0, N = Deduced.size(); I != N; ++I) {
|
2009-06-13 02:26:56 +08:00
|
|
|
|
if (Deduced[I].isNull()) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
Decl *Param
|
2010-10-13 02:51:08 +08:00
|
|
|
|
= const_cast<NamedDecl *>(
|
2009-09-16 00:23:51 +08:00
|
|
|
|
Partial->getTemplateParameters()->getParam(I));
|
2010-03-25 23:38:42 +08:00
|
|
|
|
Info.Param = makeTemplateParameter(Param);
|
2010-04-29 14:21:43 +08:00
|
|
|
|
return Sema::TDK_Incomplete;
|
2009-06-13 02:26:56 +08:00
|
|
|
|
}
|
2010-04-29 14:21:43 +08:00
|
|
|
|
|
2010-11-08 07:05:16 +08:00
|
|
|
|
Builder.push_back(Deduced[I]);
|
2009-06-12 02:10:32 +08:00
|
|
|
|
}
|
2010-04-29 14:21:43 +08:00
|
|
|
|
|
2009-06-12 02:10:32 +08:00
|
|
|
|
// Form the template argument list from the deduced template arguments.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
TemplateArgumentList *DeducedArgumentList
|
2010-11-08 07:05:16 +08:00
|
|
|
|
= TemplateArgumentList::CreateCopy(S.Context, Builder.data(),
|
|
|
|
|
Builder.size());
|
|
|
|
|
|
2009-06-13 02:26:56 +08:00
|
|
|
|
Info.reset(DeducedArgumentList);
|
2009-06-12 02:10:32 +08:00
|
|
|
|
|
|
|
|
|
// Substitute the deduced template arguments into the template
|
|
|
|
|
// arguments of the class template partial specialization, and
|
|
|
|
|
// verify that the instantiated template arguments are both valid
|
|
|
|
|
// and are equivalent to the template arguments originally provided
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// to the class template.
|
2010-03-28 10:42:43 +08:00
|
|
|
|
// FIXME: Do we have to correct the types of deduced non-type template
|
|
|
|
|
// arguments (in particular, integral non-type template arguments?).
|
2010-08-25 13:32:35 +08:00
|
|
|
|
LocalInstantiationScope InstScope(S);
|
2009-06-12 02:10:32 +08:00
|
|
|
|
ClassTemplateDecl *ClassTemplate = Partial->getSpecializedTemplate();
|
2009-10-29 16:12:44 +08:00
|
|
|
|
const TemplateArgumentLoc *PartialTemplateArgs
|
|
|
|
|
= Partial->getTemplateArgsAsWritten();
|
|
|
|
|
unsigned N = Partial->getNumTemplateArgsAsWritten();
|
2009-11-23 09:53:49 +08:00
|
|
|
|
|
|
|
|
|
// Note that we don't provide the langle and rangle locations.
|
|
|
|
|
TemplateArgumentListInfo InstArgs;
|
|
|
|
|
|
2009-10-29 16:12:44 +08:00
|
|
|
|
for (unsigned I = 0; I != N; ++I) {
|
2009-09-16 00:23:51 +08:00
|
|
|
|
Decl *Param = const_cast<NamedDecl *>(
|
2009-06-13 08:59:32 +08:00
|
|
|
|
ClassTemplate->getTemplateParameters()->getParam(I));
|
2009-11-23 09:53:49 +08:00
|
|
|
|
TemplateArgumentLoc InstArg;
|
2010-04-29 14:21:43 +08:00
|
|
|
|
if (S.Subst(PartialTemplateArgs[I], InstArg,
|
|
|
|
|
MultiLevelTemplateArgumentList(*DeducedArgumentList))) {
|
2009-06-27 04:57:09 +08:00
|
|
|
|
Info.Param = makeTemplateParameter(Param);
|
2009-10-29 16:12:44 +08:00
|
|
|
|
Info.FirstArg = PartialTemplateArgs[I].getArgument();
|
2010-04-29 14:21:43 +08:00
|
|
|
|
return Sema::TDK_SubstitutionFailure;
|
2009-06-27 04:57:09 +08:00
|
|
|
|
}
|
2009-11-23 09:53:49 +08:00
|
|
|
|
InstArgs.addArgument(InstArg);
|
2009-10-29 16:12:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
2010-11-08 07:05:16 +08:00
|
|
|
|
llvm::SmallVector<TemplateArgument, 4> ConvertedInstArgs;
|
2010-04-29 14:21:43 +08:00
|
|
|
|
if (S.CheckTemplateArgumentList(ClassTemplate, Partial->getLocation(),
|
2010-05-09 04:07:26 +08:00
|
|
|
|
InstArgs, false, ConvertedInstArgs))
|
2010-04-29 14:21:43 +08:00
|
|
|
|
return Sema::TDK_SubstitutionFailure;
|
2009-10-29 16:12:44 +08:00
|
|
|
|
|
2010-11-08 07:05:16 +08:00
|
|
|
|
for (unsigned I = 0, E = ConvertedInstArgs.size(); I != E; ++I) {
|
|
|
|
|
TemplateArgument InstArg = ConvertedInstArgs.data()[I];
|
2009-10-29 16:12:44 +08:00
|
|
|
|
|
|
|
|
|
Decl *Param = const_cast<NamedDecl *>(
|
|
|
|
|
ClassTemplate->getTemplateParameters()->getParam(I));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-27 04:57:09 +08:00
|
|
|
|
if (InstArg.getKind() == TemplateArgument::Expression) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// When the argument is an expression, check the expression result
|
2009-06-27 04:57:09 +08:00
|
|
|
|
// against the actual template parameter to get down to the canonical
|
|
|
|
|
// template argument.
|
|
|
|
|
Expr *InstExpr = InstArg.getAsExpr();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
if (NonTypeTemplateParmDecl *NTTP
|
2009-06-27 04:57:09 +08:00
|
|
|
|
= dyn_cast<NonTypeTemplateParmDecl>(Param)) {
|
2010-04-29 14:21:43 +08:00
|
|
|
|
if (S.CheckTemplateArgument(NTTP, NTTP->getType(), InstExpr, InstArg)) {
|
2009-06-27 04:57:09 +08:00
|
|
|
|
Info.Param = makeTemplateParameter(Param);
|
2009-10-29 16:12:44 +08:00
|
|
|
|
Info.FirstArg = Partial->getTemplateArgs()[I];
|
2010-04-29 14:21:43 +08:00
|
|
|
|
return Sema::TDK_SubstitutionFailure;
|
2009-06-27 04:57:09 +08:00
|
|
|
|
}
|
2009-06-13 02:26:56 +08:00
|
|
|
|
}
|
2009-06-12 02:10:32 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-04-29 14:21:43 +08:00
|
|
|
|
if (!isSameTemplateArg(S.Context, TemplateArgs[I], InstArg)) {
|
2009-06-27 04:57:09 +08:00
|
|
|
|
Info.Param = makeTemplateParameter(Param);
|
|
|
|
|
Info.FirstArg = TemplateArgs[I];
|
|
|
|
|
Info.SecondArg = InstArg;
|
2010-04-29 14:21:43 +08:00
|
|
|
|
return Sema::TDK_NonDeducedMismatch;
|
2009-06-27 04:57:09 +08:00
|
|
|
|
}
|
2009-06-12 02:10:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-14 16:02:22 +08:00
|
|
|
|
if (Trap.hasErrorOccurred())
|
2010-04-29 14:21:43 +08:00
|
|
|
|
return Sema::TDK_SubstitutionFailure;
|
2009-06-14 16:02:22 +08:00
|
|
|
|
|
2010-04-29 14:21:43 +08:00
|
|
|
|
return Sema::TDK_Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// \brief Perform template argument deduction to determine whether
|
|
|
|
|
/// the given template arguments match the given class template
|
|
|
|
|
/// partial specialization per C++ [temp.class.spec.match].
|
|
|
|
|
Sema::TemplateDeductionResult
|
|
|
|
|
Sema::DeduceTemplateArguments(ClassTemplatePartialSpecializationDecl *Partial,
|
|
|
|
|
const TemplateArgumentList &TemplateArgs,
|
|
|
|
|
TemplateDeductionInfo &Info) {
|
|
|
|
|
// C++ [temp.class.spec.match]p2:
|
|
|
|
|
// A partial specialization matches a given actual template
|
|
|
|
|
// argument list if the template arguments of the partial
|
|
|
|
|
// specialization can be deduced from the actual template argument
|
|
|
|
|
// list (14.8.2).
|
|
|
|
|
SFINAETrap Trap(*this);
|
|
|
|
|
llvm::SmallVector<DeducedTemplateArgument, 4> Deduced;
|
|
|
|
|
Deduced.resize(Partial->getTemplateParameters()->size());
|
|
|
|
|
if (TemplateDeductionResult Result
|
|
|
|
|
= ::DeduceTemplateArguments(*this,
|
|
|
|
|
Partial->getTemplateParameters(),
|
|
|
|
|
Partial->getTemplateArgs(),
|
|
|
|
|
TemplateArgs, Info, Deduced))
|
|
|
|
|
return Result;
|
|
|
|
|
|
|
|
|
|
InstantiatingTemplate Inst(*this, Partial->getLocation(), Partial,
|
2010-10-13 07:32:35 +08:00
|
|
|
|
Deduced.data(), Deduced.size(), Info);
|
2010-04-29 14:21:43 +08:00
|
|
|
|
if (Inst)
|
|
|
|
|
return TDK_InstantiationDepth;
|
|
|
|
|
|
|
|
|
|
if (Trap.hasErrorOccurred())
|
|
|
|
|
return Sema::TDK_SubstitutionFailure;
|
|
|
|
|
|
|
|
|
|
return ::FinishTemplateArgumentDeduction(*this, Partial, TemplateArgs,
|
|
|
|
|
Deduced, Info);
|
2009-06-04 08:03:07 +08:00
|
|
|
|
}
|
2009-06-13 08:26:55 +08:00
|
|
|
|
|
2009-06-27 07:27:24 +08:00
|
|
|
|
/// \brief Determine whether the given type T is a simple-template-id type.
|
|
|
|
|
static bool isSimpleTemplateIdType(QualType T) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
if (const TemplateSpecializationType *Spec
|
2009-09-22 07:43:11 +08:00
|
|
|
|
= T->getAs<TemplateSpecializationType>())
|
2009-06-27 07:27:24 +08:00
|
|
|
|
return Spec->getTemplateName().getAsTemplateDecl() != 0;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-27 07:27:24 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2009-07-09 04:55:45 +08:00
|
|
|
|
|
|
|
|
|
/// \brief Substitute the explicitly-provided template arguments into the
|
|
|
|
|
/// given function template according to C++ [temp.arg.explicit].
|
|
|
|
|
///
|
|
|
|
|
/// \param FunctionTemplate the function template into which the explicit
|
|
|
|
|
/// template arguments will be substituted.
|
|
|
|
|
///
|
2009-09-09 23:08:12 +08:00
|
|
|
|
/// \param ExplicitTemplateArguments the explicitly-specified template
|
2009-07-09 04:55:45 +08:00
|
|
|
|
/// arguments.
|
|
|
|
|
///
|
2009-09-09 23:08:12 +08:00
|
|
|
|
/// \param Deduced the deduced template arguments, which will be populated
|
2009-07-09 04:55:45 +08:00
|
|
|
|
/// with the converted and checked explicit template arguments.
|
|
|
|
|
///
|
2009-09-09 23:08:12 +08:00
|
|
|
|
/// \param ParamTypes will be populated with the instantiated function
|
2009-07-09 04:55:45 +08:00
|
|
|
|
/// parameters.
|
|
|
|
|
///
|
|
|
|
|
/// \param FunctionType if non-NULL, the result type of the function template
|
|
|
|
|
/// will also be instantiated and the pointed-to value will be updated with
|
|
|
|
|
/// the instantiated function type.
|
|
|
|
|
///
|
|
|
|
|
/// \param Info if substitution fails for any reason, this object will be
|
|
|
|
|
/// populated with more information about the failure.
|
|
|
|
|
///
|
|
|
|
|
/// \returns TDK_Success if substitution was successful, or some failure
|
|
|
|
|
/// condition.
|
|
|
|
|
Sema::TemplateDeductionResult
|
|
|
|
|
Sema::SubstituteExplicitTemplateArguments(
|
|
|
|
|
FunctionTemplateDecl *FunctionTemplate,
|
2009-11-23 09:53:49 +08:00
|
|
|
|
const TemplateArgumentListInfo &ExplicitTemplateArgs,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> &Deduced,
|
2009-07-09 04:55:45 +08:00
|
|
|
|
llvm::SmallVectorImpl<QualType> &ParamTypes,
|
|
|
|
|
QualType *FunctionType,
|
|
|
|
|
TemplateDeductionInfo &Info) {
|
|
|
|
|
FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
|
|
|
|
|
TemplateParameterList *TemplateParams
|
|
|
|
|
= FunctionTemplate->getTemplateParameters();
|
|
|
|
|
|
2009-11-23 09:53:49 +08:00
|
|
|
|
if (ExplicitTemplateArgs.size() == 0) {
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// No arguments to substitute; just copy over the parameter types and
|
|
|
|
|
// fill in the function type.
|
|
|
|
|
for (FunctionDecl::param_iterator P = Function->param_begin(),
|
|
|
|
|
PEnd = Function->param_end();
|
|
|
|
|
P != PEnd;
|
|
|
|
|
++P)
|
|
|
|
|
ParamTypes.push_back((*P)->getType());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
if (FunctionType)
|
|
|
|
|
*FunctionType = Function->getType();
|
|
|
|
|
return TDK_Success;
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// Substitution of the explicit template arguments into a function template
|
|
|
|
|
/// is a SFINAE context. Trap any errors that might occur.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
SFINAETrap Trap(*this);
|
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// C++ [temp.arg.explicit]p3:
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// Template arguments that are present shall be specified in the
|
|
|
|
|
// declaration order of their corresponding template-parameters. The
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// template argument list shall not specify more template-arguments than
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// there are corresponding template-parameters.
|
2010-11-08 07:05:16 +08:00
|
|
|
|
llvm::SmallVector<TemplateArgument, 4> Builder;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
|
// Enter a new template instantiation context where we check the
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// explicitly-specified template arguments against this function template,
|
|
|
|
|
// and then substitute them into the function parameter types.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
InstantiatingTemplate Inst(*this, FunctionTemplate->getLocation(),
|
2009-07-09 04:55:45 +08:00
|
|
|
|
FunctionTemplate, Deduced.data(), Deduced.size(),
|
2010-10-13 07:32:35 +08:00
|
|
|
|
ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution,
|
|
|
|
|
Info);
|
2009-07-09 04:55:45 +08:00
|
|
|
|
if (Inst)
|
|
|
|
|
return TDK_InstantiationDepth;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
if (CheckTemplateArgumentList(FunctionTemplate,
|
|
|
|
|
SourceLocation(),
|
2009-11-23 09:53:49 +08:00
|
|
|
|
ExplicitTemplateArgs,
|
2009-07-09 04:55:45 +08:00
|
|
|
|
true,
|
2010-05-09 03:15:54 +08:00
|
|
|
|
Builder) || Trap.hasErrorOccurred()) {
|
2010-11-08 07:05:16 +08:00
|
|
|
|
unsigned Index = Builder.size();
|
2010-05-09 09:26:06 +08:00
|
|
|
|
if (Index >= TemplateParams->size())
|
|
|
|
|
Index = TemplateParams->size() - 1;
|
|
|
|
|
Info.Param = makeTemplateParameter(TemplateParams->getParam(Index));
|
2009-07-09 04:55:45 +08:00
|
|
|
|
return TDK_InvalidExplicitArguments;
|
2010-05-09 03:15:54 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// Form the template argument list from the explicitly-specified
|
|
|
|
|
// template arguments.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
TemplateArgumentList *ExplicitArgumentList
|
2010-11-08 07:05:16 +08:00
|
|
|
|
= TemplateArgumentList::CreateCopy(Context, Builder.data(), Builder.size());
|
2009-07-09 04:55:45 +08:00
|
|
|
|
Info.reset(ExplicitArgumentList);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-10-13 03:40:14 +08:00
|
|
|
|
// Template argument deduction and the final substitution should be
|
|
|
|
|
// done in the context of the templated declaration. Explicit
|
|
|
|
|
// argument substitution, on the other hand, needs to happen in the
|
|
|
|
|
// calling context.
|
|
|
|
|
ContextRAII SavedContext(*this, FunctionTemplate->getTemplatedDecl());
|
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// Instantiate the types of each of the function parameters given the
|
|
|
|
|
// explicitly-specified template arguments.
|
|
|
|
|
for (FunctionDecl::param_iterator P = Function->param_begin(),
|
|
|
|
|
PEnd = Function->param_end();
|
|
|
|
|
P != PEnd;
|
|
|
|
|
++P) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
QualType ParamType
|
|
|
|
|
= SubstType((*P)->getType(),
|
2009-08-29 04:50:45 +08:00
|
|
|
|
MultiLevelTemplateArgumentList(*ExplicitArgumentList),
|
|
|
|
|
(*P)->getLocation(), (*P)->getDeclName());
|
2009-07-09 04:55:45 +08:00
|
|
|
|
if (ParamType.isNull() || Trap.hasErrorOccurred())
|
|
|
|
|
return TDK_SubstitutionFailure;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
ParamTypes.push_back(ParamType);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If the caller wants a full function type back, instantiate the return
|
|
|
|
|
// type and form that function type.
|
|
|
|
|
if (FunctionType) {
|
|
|
|
|
// FIXME: exception-specifications?
|
2009-09-09 23:08:12 +08:00
|
|
|
|
const FunctionProtoType *Proto
|
2009-09-22 07:43:11 +08:00
|
|
|
|
= Function->getType()->getAs<FunctionProtoType>();
|
2009-07-09 04:55:45 +08:00
|
|
|
|
assert(Proto && "Function template does not have a prototype?");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
|
QualType ResultType
|
2009-08-29 04:50:45 +08:00
|
|
|
|
= SubstType(Proto->getResultType(),
|
|
|
|
|
MultiLevelTemplateArgumentList(*ExplicitArgumentList),
|
|
|
|
|
Function->getTypeSpecStartLoc(),
|
|
|
|
|
Function->getDeclName());
|
2009-07-09 04:55:45 +08:00
|
|
|
|
if (ResultType.isNull() || Trap.hasErrorOccurred())
|
|
|
|
|
return TDK_SubstitutionFailure;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
|
*FunctionType = BuildFunctionType(ResultType,
|
2009-07-09 04:55:45 +08:00
|
|
|
|
ParamTypes.data(), ParamTypes.size(),
|
|
|
|
|
Proto->isVariadic(),
|
|
|
|
|
Proto->getTypeQuals(),
|
|
|
|
|
Function->getLocation(),
|
2010-08-05 10:54:05 +08:00
|
|
|
|
Function->getDeclName(),
|
|
|
|
|
Proto->getExtInfo());
|
2009-07-09 04:55:45 +08:00
|
|
|
|
if (FunctionType->isNull() || Trap.hasErrorOccurred())
|
|
|
|
|
return TDK_SubstitutionFailure;
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// C++ [temp.arg.explicit]p2:
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// Trailing template arguments that can be deduced (14.8.2) may be
|
|
|
|
|
// omitted from the list of explicit template-arguments. If all of the
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// template arguments can be deduced, they may all be omitted; in this
|
|
|
|
|
// case, the empty template argument list <> itself may also be omitted.
|
|
|
|
|
//
|
|
|
|
|
// Take all of the explicitly-specified arguments and put them into the
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// set of deduced template arguments.
|
2009-07-09 04:55:45 +08:00
|
|
|
|
Deduced.reserve(TemplateParams->size());
|
|
|
|
|
for (unsigned I = 0, N = ExplicitArgumentList->size(); I != N; ++I)
|
2009-09-09 23:08:12 +08:00
|
|
|
|
Deduced.push_back(ExplicitArgumentList->get(I));
|
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
return TDK_Success;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-28 10:42:43 +08:00
|
|
|
|
/// \brief Allocate a TemplateArgumentLoc where all locations have
|
|
|
|
|
/// been initialized to the given location.
|
|
|
|
|
///
|
|
|
|
|
/// \param S The semantic analysis object.
|
|
|
|
|
///
|
|
|
|
|
/// \param The template argument we are producing template argument
|
|
|
|
|
/// location information for.
|
|
|
|
|
///
|
|
|
|
|
/// \param NTTPType For a declaration template argument, the type of
|
|
|
|
|
/// the non-type template parameter that corresponds to this template
|
|
|
|
|
/// argument.
|
|
|
|
|
///
|
|
|
|
|
/// \param Loc The source location to use for the resulting template
|
|
|
|
|
/// argument.
|
|
|
|
|
static TemplateArgumentLoc
|
|
|
|
|
getTrivialTemplateArgumentLoc(Sema &S,
|
|
|
|
|
const TemplateArgument &Arg,
|
|
|
|
|
QualType NTTPType,
|
|
|
|
|
SourceLocation Loc) {
|
|
|
|
|
switch (Arg.getKind()) {
|
|
|
|
|
case TemplateArgument::Null:
|
|
|
|
|
llvm_unreachable("Can't get a NULL template argument here");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TemplateArgument::Type:
|
|
|
|
|
return TemplateArgumentLoc(Arg,
|
|
|
|
|
S.Context.getTrivialTypeSourceInfo(Arg.getAsType(), Loc));
|
|
|
|
|
|
|
|
|
|
case TemplateArgument::Declaration: {
|
|
|
|
|
Expr *E
|
|
|
|
|
= S.BuildExpressionFromDeclTemplateArgument(Arg, NTTPType, Loc)
|
|
|
|
|
.takeAs<Expr>();
|
|
|
|
|
return TemplateArgumentLoc(TemplateArgument(E), E);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case TemplateArgument::Integral: {
|
|
|
|
|
Expr *E
|
|
|
|
|
= S.BuildExpressionFromIntegralTemplateArgument(Arg, Loc).takeAs<Expr>();
|
|
|
|
|
return TemplateArgumentLoc(TemplateArgument(E), E);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case TemplateArgument::Template:
|
|
|
|
|
return TemplateArgumentLoc(Arg, SourceRange(), Loc);
|
|
|
|
|
|
|
|
|
|
case TemplateArgument::Expression:
|
|
|
|
|
return TemplateArgumentLoc(Arg, Arg.getAsExpr());
|
|
|
|
|
|
|
|
|
|
case TemplateArgument::Pack:
|
|
|
|
|
llvm_unreachable("Template parameter packs are not yet supported");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return TemplateArgumentLoc();
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
/// \brief Finish template argument deduction for a function template,
|
2009-07-09 04:55:45 +08:00
|
|
|
|
/// checking the deduced template arguments for completeness and forming
|
|
|
|
|
/// the function template specialization.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
Sema::TemplateDeductionResult
|
2009-07-09 04:55:45 +08:00
|
|
|
|
Sema::FinishTemplateArgumentDeduction(FunctionTemplateDecl *FunctionTemplate,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> &Deduced,
|
|
|
|
|
unsigned NumExplicitlySpecified,
|
2009-07-09 04:55:45 +08:00
|
|
|
|
FunctionDecl *&Specialization,
|
|
|
|
|
TemplateDeductionInfo &Info) {
|
|
|
|
|
TemplateParameterList *TemplateParams
|
|
|
|
|
= FunctionTemplate->getTemplateParameters();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-11-26 02:55:14 +08:00
|
|
|
|
// Template argument deduction for function templates in a SFINAE context.
|
|
|
|
|
// Trap any errors that might occur.
|
|
|
|
|
SFINAETrap Trap(*this);
|
|
|
|
|
|
|
|
|
|
// Enter a new template instantiation context while we instantiate the
|
|
|
|
|
// actual function declaration.
|
|
|
|
|
InstantiatingTemplate Inst(*this, FunctionTemplate->getLocation(),
|
|
|
|
|
FunctionTemplate, Deduced.data(), Deduced.size(),
|
2010-10-13 07:32:35 +08:00
|
|
|
|
ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution,
|
|
|
|
|
Info);
|
2009-11-26 02:55:14 +08:00
|
|
|
|
if (Inst)
|
|
|
|
|
return TDK_InstantiationDepth;
|
|
|
|
|
|
2010-04-29 09:18:58 +08:00
|
|
|
|
ContextRAII SavedContext(*this, FunctionTemplate->getTemplatedDecl());
|
2010-04-29 08:35:03 +08:00
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// C++ [temp.deduct.type]p2:
|
|
|
|
|
// [...] or if any template argument remains neither deduced nor
|
|
|
|
|
// explicitly specified, template argument deduction fails.
|
2010-11-08 07:05:16 +08:00
|
|
|
|
llvm::SmallVector<TemplateArgument, 4> Builder;
|
2009-07-09 04:55:45 +08:00
|
|
|
|
for (unsigned I = 0, N = Deduced.size(); I != N; ++I) {
|
2010-03-28 10:42:43 +08:00
|
|
|
|
NamedDecl *Param = FunctionTemplate->getTemplateParameters()->getParam(I);
|
2009-11-26 02:55:14 +08:00
|
|
|
|
if (!Deduced[I].isNull()) {
|
2010-10-13 02:51:08 +08:00
|
|
|
|
if (I < NumExplicitlySpecified) {
|
2010-03-28 10:42:43 +08:00
|
|
|
|
// We have already fully type-checked and converted this
|
2010-10-13 02:51:08 +08:00
|
|
|
|
// argument, because it was explicitly-specified. Just record the
|
|
|
|
|
// presence of this argument.
|
2010-11-08 07:05:16 +08:00
|
|
|
|
Builder.push_back(Deduced[I]);
|
2010-03-28 10:42:43 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We have deduced this argument, so it still needs to be
|
|
|
|
|
// checked and converted.
|
|
|
|
|
|
|
|
|
|
// First, for a non-type template parameter type that is
|
|
|
|
|
// initialized by a declaration, we need the type of the
|
|
|
|
|
// corresponding non-type template parameter.
|
|
|
|
|
QualType NTTPType;
|
|
|
|
|
if (NonTypeTemplateParmDecl *NTTP
|
|
|
|
|
= dyn_cast<NonTypeTemplateParmDecl>(Param)) {
|
|
|
|
|
if (Deduced[I].getKind() == TemplateArgument::Declaration) {
|
|
|
|
|
NTTPType = NTTP->getType();
|
|
|
|
|
if (NTTPType->isDependentType()) {
|
2010-11-08 07:05:16 +08:00
|
|
|
|
TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
|
|
|
|
|
Builder.data(), Builder.size());
|
2010-03-28 10:42:43 +08:00
|
|
|
|
NTTPType = SubstType(NTTPType,
|
|
|
|
|
MultiLevelTemplateArgumentList(TemplateArgs),
|
|
|
|
|
NTTP->getLocation(),
|
|
|
|
|
NTTP->getDeclName());
|
|
|
|
|
if (NTTPType.isNull()) {
|
|
|
|
|
Info.Param = makeTemplateParameter(Param);
|
2010-11-08 07:05:16 +08:00
|
|
|
|
// FIXME: These template arguments are temporary. Free them!
|
|
|
|
|
Info.reset(TemplateArgumentList::CreateCopy(Context,
|
|
|
|
|
Builder.data(),
|
|
|
|
|
Builder.size()));
|
2010-03-28 10:42:43 +08:00
|
|
|
|
return TDK_SubstitutionFailure;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Convert the deduced template argument into a template
|
|
|
|
|
// argument that we can check, almost as if the user had written
|
|
|
|
|
// the template argument explicitly.
|
|
|
|
|
TemplateArgumentLoc Arg = getTrivialTemplateArgumentLoc(*this,
|
|
|
|
|
Deduced[I],
|
|
|
|
|
NTTPType,
|
2010-10-13 07:32:35 +08:00
|
|
|
|
Info.getLocation());
|
2010-03-28 10:42:43 +08:00
|
|
|
|
|
|
|
|
|
// Check the template argument, converting it as necessary.
|
|
|
|
|
if (CheckTemplateArgument(Param, Arg,
|
|
|
|
|
FunctionTemplate,
|
|
|
|
|
FunctionTemplate->getLocation(),
|
|
|
|
|
FunctionTemplate->getSourceRange().getEnd(),
|
|
|
|
|
Builder,
|
|
|
|
|
Deduced[I].wasDeducedFromArrayBound()
|
|
|
|
|
? CTAK_DeducedFromArrayBound
|
|
|
|
|
: CTAK_Deduced)) {
|
|
|
|
|
Info.Param = makeTemplateParameter(
|
|
|
|
|
const_cast<NamedDecl *>(TemplateParams->getParam(I)));
|
2010-11-08 07:05:16 +08:00
|
|
|
|
// FIXME: These template arguments are temporary. Free them!
|
|
|
|
|
Info.reset(TemplateArgumentList::CreateCopy(Context, Builder.data(),
|
|
|
|
|
Builder.size()));
|
2010-03-28 10:42:43 +08:00
|
|
|
|
return TDK_SubstitutionFailure;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-26 02:55:14 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Substitute into the default template argument, if available.
|
|
|
|
|
TemplateArgumentLoc DefArg
|
|
|
|
|
= SubstDefaultTemplateArgumentIfAvailable(FunctionTemplate,
|
|
|
|
|
FunctionTemplate->getLocation(),
|
|
|
|
|
FunctionTemplate->getSourceRange().getEnd(),
|
|
|
|
|
Param,
|
|
|
|
|
Builder);
|
|
|
|
|
|
|
|
|
|
// If there was no default argument, deduction is incomplete.
|
|
|
|
|
if (DefArg.getArgument().isNull()) {
|
2009-07-09 04:55:45 +08:00
|
|
|
|
Info.Param = makeTemplateParameter(
|
2009-11-26 02:55:14 +08:00
|
|
|
|
const_cast<NamedDecl *>(TemplateParams->getParam(I)));
|
2009-07-09 04:55:45 +08:00
|
|
|
|
return TDK_Incomplete;
|
|
|
|
|
}
|
2009-11-26 02:55:14 +08:00
|
|
|
|
|
|
|
|
|
// Check whether we can actually use the default argument.
|
|
|
|
|
if (CheckTemplateArgument(Param, DefArg,
|
|
|
|
|
FunctionTemplate,
|
|
|
|
|
FunctionTemplate->getLocation(),
|
|
|
|
|
FunctionTemplate->getSourceRange().getEnd(),
|
2010-03-28 10:42:43 +08:00
|
|
|
|
Builder,
|
|
|
|
|
CTAK_Deduced)) {
|
2009-11-26 02:55:14 +08:00
|
|
|
|
Info.Param = makeTemplateParameter(
|
|
|
|
|
const_cast<NamedDecl *>(TemplateParams->getParam(I)));
|
2010-11-08 07:05:16 +08:00
|
|
|
|
// FIXME: These template arguments are temporary. Free them!
|
|
|
|
|
Info.reset(TemplateArgumentList::CreateCopy(Context, Builder.data(),
|
|
|
|
|
Builder.size()));
|
2009-11-26 02:55:14 +08:00
|
|
|
|
return TDK_SubstitutionFailure;
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-11-26 02:55:14 +08:00
|
|
|
|
// If we get here, we successfully used the default template argument.
|
2009-07-09 04:55:45 +08:00
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// Form the template argument list from the deduced template arguments.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
TemplateArgumentList *DeducedArgumentList
|
2010-11-08 07:05:16 +08:00
|
|
|
|
= TemplateArgumentList::CreateCopy(Context, Builder.data(), Builder.size());
|
2009-07-09 04:55:45 +08:00
|
|
|
|
Info.reset(DeducedArgumentList);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
|
// Substitute the deduced template arguments into the function template
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// declaration to produce the function template specialization.
|
2010-04-28 12:52:24 +08:00
|
|
|
|
DeclContext *Owner = FunctionTemplate->getDeclContext();
|
|
|
|
|
if (FunctionTemplate->getFriendObjectKind())
|
|
|
|
|
Owner = FunctionTemplate->getLexicalDeclContext();
|
2009-07-09 04:55:45 +08:00
|
|
|
|
Specialization = cast_or_null<FunctionDecl>(
|
2010-04-28 12:52:24 +08:00
|
|
|
|
SubstDecl(FunctionTemplate->getTemplatedDecl(), Owner,
|
2009-08-29 04:50:45 +08:00
|
|
|
|
MultiLevelTemplateArgumentList(*DeducedArgumentList)));
|
2009-07-09 04:55:45 +08:00
|
|
|
|
if (!Specialization)
|
|
|
|
|
return TDK_SubstitutionFailure;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-09-16 02:26:13 +08:00
|
|
|
|
assert(Specialization->getPrimaryTemplate()->getCanonicalDecl() ==
|
|
|
|
|
FunctionTemplate->getCanonicalDecl());
|
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// If the template argument list is owned by the function template
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// specialization, release it.
|
2010-05-09 04:07:26 +08:00
|
|
|
|
if (Specialization->getTemplateSpecializationArgs() == DeducedArgumentList &&
|
|
|
|
|
!Trap.hasErrorOccurred())
|
2009-07-09 04:55:45 +08:00
|
|
|
|
Info.take();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// There may have been an error that did not prevent us from constructing a
|
|
|
|
|
// declaration. Mark the declaration invalid and return with a substitution
|
|
|
|
|
// failure.
|
|
|
|
|
if (Trap.hasErrorOccurred()) {
|
|
|
|
|
Specialization->setInvalidDecl(true);
|
|
|
|
|
return TDK_SubstitutionFailure;
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-10-13 07:32:35 +08:00
|
|
|
|
// If we suppressed any diagnostics while performing template argument
|
|
|
|
|
// deduction, and if we haven't already instantiated this declaration,
|
|
|
|
|
// keep track of these diagnostics. They'll be emitted if this specialization
|
|
|
|
|
// is actually used.
|
|
|
|
|
if (Info.diag_begin() != Info.diag_end()) {
|
|
|
|
|
llvm::DenseMap<Decl *, llvm::SmallVector<PartialDiagnosticAt, 1> >::iterator
|
|
|
|
|
Pos = SuppressedDiagnostics.find(Specialization->getCanonicalDecl());
|
|
|
|
|
if (Pos == SuppressedDiagnostics.end())
|
|
|
|
|
SuppressedDiagnostics[Specialization->getCanonicalDecl()]
|
|
|
|
|
.append(Info.diag_begin(), Info.diag_end());
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
return TDK_Success;
|
2009-07-09 04:55:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
2010-08-27 17:08:28 +08:00
|
|
|
|
/// Gets the type of a function for template-argument-deducton
|
|
|
|
|
/// purposes when it's considered as part of an overload set.
|
2010-02-02 10:21:27 +08:00
|
|
|
|
static QualType GetTypeOfFunction(ASTContext &Context,
|
2010-08-27 17:08:28 +08:00
|
|
|
|
const OverloadExpr::FindResult &R,
|
2010-02-02 10:21:27 +08:00
|
|
|
|
FunctionDecl *Fn) {
|
|
|
|
|
if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn))
|
2010-08-27 17:08:28 +08:00
|
|
|
|
if (Method->isInstance()) {
|
|
|
|
|
// An instance method that's referenced in a form that doesn't
|
|
|
|
|
// look like a member pointer is just invalid.
|
|
|
|
|
if (!R.HasFormOfMemberPointer) return QualType();
|
|
|
|
|
|
2010-02-02 10:21:27 +08:00
|
|
|
|
return Context.getMemberPointerType(Fn->getType(),
|
|
|
|
|
Context.getTypeDeclType(Method->getParent()).getTypePtr());
|
2010-08-27 17:08:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!R.IsAddressOfOperand) return Fn->getType();
|
2010-02-02 10:21:27 +08:00
|
|
|
|
return Context.getPointerType(Fn->getType());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Apply the deduction rules for overload sets.
|
|
|
|
|
///
|
|
|
|
|
/// \return the null type if this argument should be treated as an
|
|
|
|
|
/// undeduced context
|
|
|
|
|
static QualType
|
|
|
|
|
ResolveOverloadForDeduction(Sema &S, TemplateParameterList *TemplateParams,
|
2010-08-31 05:04:23 +08:00
|
|
|
|
Expr *Arg, QualType ParamType,
|
|
|
|
|
bool ParamWasReference) {
|
2010-08-27 17:08:28 +08:00
|
|
|
|
|
|
|
|
|
OverloadExpr::FindResult R = OverloadExpr::find(Arg);
|
2010-02-02 10:21:27 +08:00
|
|
|
|
|
2010-08-27 17:08:28 +08:00
|
|
|
|
OverloadExpr *Ovl = R.Expression;
|
2010-02-02 10:21:27 +08:00
|
|
|
|
|
2010-08-31 05:04:23 +08:00
|
|
|
|
// C++0x [temp.deduct.call]p4
|
|
|
|
|
unsigned TDF = 0;
|
|
|
|
|
if (ParamWasReference)
|
|
|
|
|
TDF |= TDF_ParamWithReferenceType;
|
|
|
|
|
if (R.IsAddressOfOperand)
|
|
|
|
|
TDF |= TDF_IgnoreQualifiers;
|
|
|
|
|
|
2010-02-02 10:21:27 +08:00
|
|
|
|
// If there were explicit template arguments, we can only find
|
|
|
|
|
// something via C++ [temp.arg.explicit]p3, i.e. if the arguments
|
|
|
|
|
// unambiguously name a full specialization.
|
2010-02-02 14:20:04 +08:00
|
|
|
|
if (Ovl->hasExplicitTemplateArgs()) {
|
2010-02-02 10:21:27 +08:00
|
|
|
|
// But we can still look for an explicit specialization.
|
|
|
|
|
if (FunctionDecl *ExplicitSpec
|
2010-02-02 14:20:04 +08:00
|
|
|
|
= S.ResolveSingleFunctionTemplateSpecialization(Ovl))
|
2010-08-27 17:08:28 +08:00
|
|
|
|
return GetTypeOfFunction(S.Context, R, ExplicitSpec);
|
2010-02-02 10:21:27 +08:00
|
|
|
|
return QualType();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// C++0x [temp.deduct.call]p6:
|
|
|
|
|
// When P is a function type, pointer to function type, or pointer
|
|
|
|
|
// to member function type:
|
|
|
|
|
|
|
|
|
|
if (!ParamType->isFunctionType() &&
|
|
|
|
|
!ParamType->isFunctionPointerType() &&
|
|
|
|
|
!ParamType->isMemberFunctionPointerType())
|
|
|
|
|
return QualType();
|
|
|
|
|
|
|
|
|
|
QualType Match;
|
2010-02-02 14:20:04 +08:00
|
|
|
|
for (UnresolvedSetIterator I = Ovl->decls_begin(),
|
|
|
|
|
E = Ovl->decls_end(); I != E; ++I) {
|
2010-02-02 10:21:27 +08:00
|
|
|
|
NamedDecl *D = (*I)->getUnderlyingDecl();
|
|
|
|
|
|
|
|
|
|
// - If the argument is an overload set containing one or more
|
|
|
|
|
// function templates, the parameter is treated as a
|
|
|
|
|
// non-deduced context.
|
|
|
|
|
if (isa<FunctionTemplateDecl>(D))
|
|
|
|
|
return QualType();
|
|
|
|
|
|
|
|
|
|
FunctionDecl *Fn = cast<FunctionDecl>(D);
|
2010-08-27 17:08:28 +08:00
|
|
|
|
QualType ArgType = GetTypeOfFunction(S.Context, R, Fn);
|
|
|
|
|
if (ArgType.isNull()) continue;
|
2010-02-02 10:21:27 +08:00
|
|
|
|
|
2010-08-31 05:04:23 +08:00
|
|
|
|
// Function-to-pointer conversion.
|
|
|
|
|
if (!ParamWasReference && ParamType->isPointerType() &&
|
|
|
|
|
ArgType->isFunctionType())
|
|
|
|
|
ArgType = S.Context.getPointerType(ArgType);
|
|
|
|
|
|
2010-02-02 10:21:27 +08:00
|
|
|
|
// - If the argument is an overload set (not containing function
|
|
|
|
|
// templates), trial argument deduction is attempted using each
|
|
|
|
|
// of the members of the set. If deduction succeeds for only one
|
|
|
|
|
// of the overload set members, that member is used as the
|
|
|
|
|
// argument value for the deduction. If deduction succeeds for
|
|
|
|
|
// more than one member of the overload set the parameter is
|
|
|
|
|
// treated as a non-deduced context.
|
|
|
|
|
|
|
|
|
|
// We do all of this in a fresh context per C++0x [temp.deduct.type]p2:
|
|
|
|
|
// Type deduction is done independently for each P/A pair, and
|
|
|
|
|
// the deduced template argument values are then combined.
|
|
|
|
|
// So we do not reject deductions which were made elsewhere.
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVector<DeducedTemplateArgument, 8>
|
|
|
|
|
Deduced(TemplateParams->size());
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo Info(S.Context, Ovl->getNameLoc());
|
2010-02-02 10:21:27 +08:00
|
|
|
|
Sema::TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= DeduceTemplateArguments(S, TemplateParams,
|
2010-02-02 10:21:27 +08:00
|
|
|
|
ParamType, ArgType,
|
|
|
|
|
Info, Deduced, TDF);
|
|
|
|
|
if (Result) continue;
|
|
|
|
|
if (!Match.isNull()) return QualType();
|
|
|
|
|
Match = ArgType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Match;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-26 06:08:12 +08:00
|
|
|
|
/// \brief Perform template argument deduction from a function call
|
|
|
|
|
/// (C++ [temp.deduct.call]).
|
|
|
|
|
///
|
|
|
|
|
/// \param FunctionTemplate the function template for which we are performing
|
|
|
|
|
/// template argument deduction.
|
|
|
|
|
///
|
2010-01-12 02:40:55 +08:00
|
|
|
|
/// \param ExplicitTemplateArguments the explicit template arguments provided
|
|
|
|
|
/// for this call.
|
2009-07-01 07:57:56 +08:00
|
|
|
|
///
|
2009-06-26 06:08:12 +08:00
|
|
|
|
/// \param Args the function call arguments
|
|
|
|
|
///
|
|
|
|
|
/// \param NumArgs the number of arguments in Args
|
|
|
|
|
///
|
2010-01-12 02:40:55 +08:00
|
|
|
|
/// \param Name the name of the function being called. This is only significant
|
|
|
|
|
/// when the function template is a conversion function template, in which
|
|
|
|
|
/// case this routine will also perform template argument deduction based on
|
|
|
|
|
/// the function to which
|
|
|
|
|
///
|
2009-06-26 06:08:12 +08:00
|
|
|
|
/// \param Specialization if template argument deduction was successful,
|
2009-09-09 23:08:12 +08:00
|
|
|
|
/// this will be set to the function template specialization produced by
|
2009-06-26 06:08:12 +08:00
|
|
|
|
/// template argument deduction.
|
|
|
|
|
///
|
|
|
|
|
/// \param Info the argument will be updated to provide additional information
|
|
|
|
|
/// about template argument deduction.
|
|
|
|
|
///
|
|
|
|
|
/// \returns the result of template argument deduction.
|
|
|
|
|
Sema::TemplateDeductionResult
|
|
|
|
|
Sema::DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
|
2010-01-12 02:40:55 +08:00
|
|
|
|
const TemplateArgumentListInfo *ExplicitTemplateArgs,
|
2009-06-26 06:08:12 +08:00
|
|
|
|
Expr **Args, unsigned NumArgs,
|
|
|
|
|
FunctionDecl *&Specialization,
|
|
|
|
|
TemplateDeductionInfo &Info) {
|
|
|
|
|
FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
|
2009-07-01 07:57:56 +08:00
|
|
|
|
|
2009-06-26 06:08:12 +08:00
|
|
|
|
// C++ [temp.deduct.call]p1:
|
|
|
|
|
// Template argument deduction is done by comparing each function template
|
|
|
|
|
// parameter type (call it P) with the type of the corresponding argument
|
|
|
|
|
// of the call (call it A) as described below.
|
|
|
|
|
unsigned CheckArgs = NumArgs;
|
2009-07-01 07:57:56 +08:00
|
|
|
|
if (NumArgs < Function->getMinRequiredArguments())
|
2009-06-26 06:08:12 +08:00
|
|
|
|
return TDK_TooFewArguments;
|
|
|
|
|
else if (NumArgs > Function->getNumParams()) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
const FunctionProtoType *Proto
|
2009-09-22 07:43:11 +08:00
|
|
|
|
= Function->getType()->getAs<FunctionProtoType>();
|
2009-06-26 06:08:12 +08:00
|
|
|
|
if (!Proto->isVariadic())
|
|
|
|
|
return TDK_TooManyArguments;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-26 06:08:12 +08:00
|
|
|
|
CheckArgs = Function->getNumParams();
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-01 07:57:56 +08:00
|
|
|
|
// The types of the parameters from which we will perform template argument
|
|
|
|
|
// deduction.
|
2010-08-25 13:32:35 +08:00
|
|
|
|
LocalInstantiationScope InstScope(*this);
|
2009-06-26 06:08:12 +08:00
|
|
|
|
TemplateParameterList *TemplateParams
|
|
|
|
|
= FunctionTemplate->getTemplateParameters();
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVector<DeducedTemplateArgument, 4> Deduced;
|
2009-07-01 07:57:56 +08:00
|
|
|
|
llvm::SmallVector<QualType, 4> ParamTypes;
|
2010-03-28 10:42:43 +08:00
|
|
|
|
unsigned NumExplicitlySpecified = 0;
|
2009-11-23 09:53:49 +08:00
|
|
|
|
if (ExplicitTemplateArgs) {
|
2009-07-09 04:55:45 +08:00
|
|
|
|
TemplateDeductionResult Result =
|
|
|
|
|
SubstituteExplicitTemplateArguments(FunctionTemplate,
|
2009-11-23 09:53:49 +08:00
|
|
|
|
*ExplicitTemplateArgs,
|
2009-07-09 04:55:45 +08:00
|
|
|
|
Deduced,
|
|
|
|
|
ParamTypes,
|
|
|
|
|
0,
|
|
|
|
|
Info);
|
|
|
|
|
if (Result)
|
|
|
|
|
return Result;
|
2010-03-28 10:42:43 +08:00
|
|
|
|
|
|
|
|
|
NumExplicitlySpecified = Deduced.size();
|
2009-07-01 07:57:56 +08:00
|
|
|
|
} else {
|
|
|
|
|
// Just fill in the parameter types from the function declaration.
|
|
|
|
|
for (unsigned I = 0; I != CheckArgs; ++I)
|
|
|
|
|
ParamTypes.push_back(Function->getParamDecl(I)->getType());
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-01 07:57:56 +08:00
|
|
|
|
// Deduce template arguments from the function parameters.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
Deduced.resize(TemplateParams->size());
|
2009-06-26 06:08:12 +08:00
|
|
|
|
for (unsigned I = 0; I != CheckArgs; ++I) {
|
2009-07-01 07:57:56 +08:00
|
|
|
|
QualType ParamType = ParamTypes[I];
|
2009-06-26 06:08:12 +08:00
|
|
|
|
QualType ArgType = Args[I]->getType();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2010-08-31 05:04:23 +08:00
|
|
|
|
// C++0x [temp.deduct.call]p3:
|
|
|
|
|
// If P is a cv-qualified type, the top level cv-qualifiers of P’s type
|
|
|
|
|
// are ignored for type deduction.
|
|
|
|
|
if (ParamType.getCVRQualifiers())
|
|
|
|
|
ParamType = ParamType.getLocalUnqualifiedType();
|
|
|
|
|
const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>();
|
|
|
|
|
if (ParamRefType) {
|
|
|
|
|
// [...] If P is a reference type, the type referred to by P is used
|
|
|
|
|
// for type deduction.
|
|
|
|
|
ParamType = ParamRefType->getPointeeType();
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-02 10:21:27 +08:00
|
|
|
|
// Overload sets usually make this parameter an undeduced
|
|
|
|
|
// context, but there are sometimes special circumstances.
|
|
|
|
|
if (ArgType == Context.OverloadTy) {
|
|
|
|
|
ArgType = ResolveOverloadForDeduction(*this, TemplateParams,
|
2010-08-31 05:04:23 +08:00
|
|
|
|
Args[I], ParamType,
|
|
|
|
|
ParamRefType != 0);
|
2010-02-02 10:21:27 +08:00
|
|
|
|
if (ArgType.isNull())
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-31 05:04:23 +08:00
|
|
|
|
if (ParamRefType) {
|
|
|
|
|
// C++0x [temp.deduct.call]p3:
|
|
|
|
|
// [...] If P is of the form T&&, where T is a template parameter, and
|
|
|
|
|
// the argument is an lvalue, the type A& is used in place of A for
|
|
|
|
|
// type deduction.
|
|
|
|
|
if (ParamRefType->isRValueReferenceType() &&
|
|
|
|
|
ParamRefType->getAs<TemplateTypeParmType>() &&
|
2010-11-24 13:12:34 +08:00
|
|
|
|
Args[I]->isLValue())
|
2010-08-31 05:04:23 +08:00
|
|
|
|
ArgType = Context.getLValueReferenceType(ArgType);
|
|
|
|
|
} else {
|
|
|
|
|
// C++ [temp.deduct.call]p2:
|
|
|
|
|
// If P is not a reference type:
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// - If A is an array type, the pointer type produced by the
|
|
|
|
|
// array-to-pointer standard conversion (4.2) is used in place of
|
2009-06-26 06:08:12 +08:00
|
|
|
|
// A for type deduction; otherwise,
|
|
|
|
|
if (ArgType->isArrayType())
|
|
|
|
|
ArgType = Context.getArrayDecayedType(ArgType);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// - If A is a function type, the pointer type produced by the
|
|
|
|
|
// function-to-pointer standard conversion (4.3) is used in place
|
2009-06-26 06:08:12 +08:00
|
|
|
|
// of A for type deduction; otherwise,
|
|
|
|
|
else if (ArgType->isFunctionType())
|
|
|
|
|
ArgType = Context.getPointerType(ArgType);
|
|
|
|
|
else {
|
|
|
|
|
// - If A is a cv-qualified type, the top level cv-qualifiers of A’s
|
|
|
|
|
// type are ignored for type deduction.
|
|
|
|
|
QualType CanonArgType = Context.getCanonicalType(ArgType);
|
2010-08-31 05:04:23 +08:00
|
|
|
|
if (ArgType.getCVRQualifiers())
|
|
|
|
|
ArgType = ArgType.getUnqualifiedType();
|
2009-06-26 06:08:12 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-26 06:08:12 +08:00
|
|
|
|
// C++0x [temp.deduct.call]p4:
|
|
|
|
|
// In general, the deduction process attempts to find template argument
|
|
|
|
|
// values that will make the deduced A identical to A (after the type A
|
|
|
|
|
// is transformed as described above). [...]
|
2009-09-15 04:00:47 +08:00
|
|
|
|
unsigned TDF = TDF_SkipNonDependent;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-27 07:10:12 +08:00
|
|
|
|
// - If the original P is a reference type, the deduced A (i.e., the
|
|
|
|
|
// type referred to by the reference) can be more cv-qualified than
|
|
|
|
|
// the transformed A.
|
2010-08-31 05:04:23 +08:00
|
|
|
|
if (ParamRefType)
|
2009-06-27 07:10:12 +08:00
|
|
|
|
TDF |= TDF_ParamWithReferenceType;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// - The transformed A can be another pointer or pointer to member
|
|
|
|
|
// type that can be converted to the deduced A via a qualification
|
2009-06-27 07:10:12 +08:00
|
|
|
|
// conversion (4.4).
|
2010-08-05 13:30:45 +08:00
|
|
|
|
if (ArgType->isPointerType() || ArgType->isMemberPointerType() ||
|
|
|
|
|
ArgType->isObjCObjectPointerType())
|
2009-06-27 07:10:12 +08:00
|
|
|
|
TDF |= TDF_IgnoreQualifiers;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// - If P is a class and P has the form simple-template-id, then the
|
2009-06-27 07:27:24 +08:00
|
|
|
|
// transformed A can be a derived class of the deduced A. Likewise,
|
|
|
|
|
// if P is a pointer to a class of the form simple-template-id, the
|
|
|
|
|
// transformed A can be a pointer to a derived class pointed to by
|
|
|
|
|
// the deduced A.
|
|
|
|
|
if (isSimpleTemplateIdType(ParamType) ||
|
2009-09-09 23:08:12 +08:00
|
|
|
|
(isa<PointerType>(ParamType) &&
|
2009-06-27 07:27:24 +08:00
|
|
|
|
isSimpleTemplateIdType(
|
2009-07-30 05:53:49 +08:00
|
|
|
|
ParamType->getAs<PointerType>()->getPointeeType())))
|
2009-06-27 07:27:24 +08:00
|
|
|
|
TDF |= TDF_DerivedClass;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-26 06:08:12 +08:00
|
|
|
|
if (TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= ::DeduceTemplateArguments(*this, TemplateParams,
|
2009-06-27 02:27:22 +08:00
|
|
|
|
ParamType, ArgType, Info, Deduced,
|
2009-06-27 07:10:12 +08:00
|
|
|
|
TDF))
|
2009-06-26 06:08:12 +08:00
|
|
|
|
return Result;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-08-22 07:19:43 +08:00
|
|
|
|
// FIXME: we need to check that the deduced A is the same as A,
|
|
|
|
|
// modulo the various allowed differences.
|
2009-06-26 06:08:12 +08:00
|
|
|
|
}
|
2009-08-22 07:19:43 +08:00
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
return FinishTemplateArgumentDeduction(FunctionTemplate, Deduced,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
NumExplicitlySpecified,
|
2009-07-09 04:55:45 +08:00
|
|
|
|
Specialization, Info);
|
|
|
|
|
}
|
2009-06-30 04:59:39 +08:00
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
/// \brief Deduce template arguments when taking the address of a function
|
2009-12-22 07:17:24 +08:00
|
|
|
|
/// template (C++ [temp.deduct.funcaddr]) or matching a specialization to
|
|
|
|
|
/// a template.
|
2009-07-09 04:55:45 +08:00
|
|
|
|
///
|
|
|
|
|
/// \param FunctionTemplate the function template for which we are performing
|
|
|
|
|
/// template argument deduction.
|
|
|
|
|
///
|
2009-12-22 07:17:24 +08:00
|
|
|
|
/// \param ExplicitTemplateArguments the explicitly-specified template
|
|
|
|
|
/// arguments.
|
2009-07-09 04:55:45 +08:00
|
|
|
|
///
|
|
|
|
|
/// \param ArgFunctionType the function type that will be used as the
|
|
|
|
|
/// "argument" type (A) when performing template argument deduction from the
|
2009-12-22 07:17:24 +08:00
|
|
|
|
/// function template's function type. This type may be NULL, if there is no
|
|
|
|
|
/// argument type to compare against, in C++0x [temp.arg.explicit]p3.
|
2009-07-09 04:55:45 +08:00
|
|
|
|
///
|
|
|
|
|
/// \param Specialization if template argument deduction was successful,
|
2009-09-09 23:08:12 +08:00
|
|
|
|
/// this will be set to the function template specialization produced by
|
2009-07-09 04:55:45 +08:00
|
|
|
|
/// template argument deduction.
|
|
|
|
|
///
|
|
|
|
|
/// \param Info the argument will be updated to provide additional information
|
|
|
|
|
/// about template argument deduction.
|
|
|
|
|
///
|
|
|
|
|
/// \returns the result of template argument deduction.
|
|
|
|
|
Sema::TemplateDeductionResult
|
|
|
|
|
Sema::DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
|
2009-11-23 09:53:49 +08:00
|
|
|
|
const TemplateArgumentListInfo *ExplicitTemplateArgs,
|
2009-07-09 04:55:45 +08:00
|
|
|
|
QualType ArgFunctionType,
|
|
|
|
|
FunctionDecl *&Specialization,
|
|
|
|
|
TemplateDeductionInfo &Info) {
|
|
|
|
|
FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
|
|
|
|
|
TemplateParameterList *TemplateParams
|
|
|
|
|
= FunctionTemplate->getTemplateParameters();
|
|
|
|
|
QualType FunctionType = Function->getType();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-07-09 04:55:45 +08:00
|
|
|
|
// Substitute any explicit template arguments.
|
2010-08-25 13:32:35 +08:00
|
|
|
|
LocalInstantiationScope InstScope(*this);
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVector<DeducedTemplateArgument, 4> Deduced;
|
|
|
|
|
unsigned NumExplicitlySpecified = 0;
|
2009-07-09 04:55:45 +08:00
|
|
|
|
llvm::SmallVector<QualType, 4> ParamTypes;
|
2009-11-23 09:53:49 +08:00
|
|
|
|
if (ExplicitTemplateArgs) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
if (TemplateDeductionResult Result
|
|
|
|
|
= SubstituteExplicitTemplateArguments(FunctionTemplate,
|
2009-11-23 09:53:49 +08:00
|
|
|
|
*ExplicitTemplateArgs,
|
2009-09-09 23:08:12 +08:00
|
|
|
|
Deduced, ParamTypes,
|
2009-07-09 04:55:45 +08:00
|
|
|
|
&FunctionType, Info))
|
|
|
|
|
return Result;
|
2010-03-28 10:42:43 +08:00
|
|
|
|
|
|
|
|
|
NumExplicitlySpecified = Deduced.size();
|
2009-06-30 04:59:39 +08:00
|
|
|
|
}
|
2009-07-09 04:55:45 +08:00
|
|
|
|
|
|
|
|
|
// Template argument deduction for function templates in a SFINAE context.
|
|
|
|
|
// Trap any errors that might occur.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
SFINAETrap Trap(*this);
|
|
|
|
|
|
2010-02-02 10:21:27 +08:00
|
|
|
|
Deduced.resize(TemplateParams->size());
|
|
|
|
|
|
2009-12-22 07:17:24 +08:00
|
|
|
|
if (!ArgFunctionType.isNull()) {
|
|
|
|
|
// Deduce template arguments from the function type.
|
|
|
|
|
if (TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= ::DeduceTemplateArguments(*this, TemplateParams,
|
2009-12-22 07:17:24 +08:00
|
|
|
|
FunctionType, ArgFunctionType, Info,
|
|
|
|
|
Deduced, 0))
|
|
|
|
|
return Result;
|
|
|
|
|
}
|
2010-09-30 05:14:36 +08:00
|
|
|
|
|
|
|
|
|
if (TemplateDeductionResult Result
|
|
|
|
|
= FinishTemplateArgumentDeduction(FunctionTemplate, Deduced,
|
|
|
|
|
NumExplicitlySpecified,
|
|
|
|
|
Specialization, Info))
|
|
|
|
|
return Result;
|
|
|
|
|
|
|
|
|
|
// If the requested function type does not match the actual type of the
|
|
|
|
|
// specialization, template argument deduction fails.
|
|
|
|
|
if (!ArgFunctionType.isNull() &&
|
|
|
|
|
!Context.hasSameType(ArgFunctionType, Specialization->getType()))
|
|
|
|
|
return TDK_NonDeducedMismatch;
|
|
|
|
|
|
|
|
|
|
return TDK_Success;
|
2009-06-26 06:08:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-08-22 07:19:43 +08:00
|
|
|
|
/// \brief Deduce template arguments for a templated conversion
|
|
|
|
|
/// function (C++ [temp.deduct.conv]) and, if successful, produce a
|
|
|
|
|
/// conversion function template specialization.
|
|
|
|
|
Sema::TemplateDeductionResult
|
|
|
|
|
Sema::DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
|
|
|
|
|
QualType ToType,
|
|
|
|
|
CXXConversionDecl *&Specialization,
|
|
|
|
|
TemplateDeductionInfo &Info) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
CXXConversionDecl *Conv
|
2009-08-22 07:19:43 +08:00
|
|
|
|
= cast<CXXConversionDecl>(FunctionTemplate->getTemplatedDecl());
|
|
|
|
|
QualType FromType = Conv->getConversionType();
|
|
|
|
|
|
|
|
|
|
// Canonicalize the types for deduction.
|
|
|
|
|
QualType P = Context.getCanonicalType(FromType);
|
|
|
|
|
QualType A = Context.getCanonicalType(ToType);
|
|
|
|
|
|
|
|
|
|
// C++0x [temp.deduct.conv]p3:
|
|
|
|
|
// If P is a reference type, the type referred to by P is used for
|
|
|
|
|
// type deduction.
|
|
|
|
|
if (const ReferenceType *PRef = P->getAs<ReferenceType>())
|
|
|
|
|
P = PRef->getPointeeType();
|
|
|
|
|
|
|
|
|
|
// C++0x [temp.deduct.conv]p3:
|
|
|
|
|
// If A is a reference type, the type referred to by A is used
|
|
|
|
|
// for type deduction.
|
|
|
|
|
if (const ReferenceType *ARef = A->getAs<ReferenceType>())
|
|
|
|
|
A = ARef->getPointeeType();
|
|
|
|
|
// C++ [temp.deduct.conv]p2:
|
|
|
|
|
//
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// If A is not a reference type:
|
2009-08-22 07:19:43 +08:00
|
|
|
|
else {
|
|
|
|
|
assert(!A->isReferenceType() && "Reference types were handled above");
|
|
|
|
|
|
|
|
|
|
// - If P is an array type, the pointer type produced by the
|
2009-09-09 23:08:12 +08:00
|
|
|
|
// array-to-pointer standard conversion (4.2) is used in place
|
2009-08-22 07:19:43 +08:00
|
|
|
|
// of P for type deduction; otherwise,
|
|
|
|
|
if (P->isArrayType())
|
|
|
|
|
P = Context.getArrayDecayedType(P);
|
|
|
|
|
// - If P is a function type, the pointer type produced by the
|
|
|
|
|
// function-to-pointer standard conversion (4.3) is used in
|
|
|
|
|
// place of P for type deduction; otherwise,
|
|
|
|
|
else if (P->isFunctionType())
|
|
|
|
|
P = Context.getPointerType(P);
|
|
|
|
|
// - If P is a cv-qualified type, the top level cv-qualifiers of
|
|
|
|
|
// P’s type are ignored for type deduction.
|
|
|
|
|
else
|
|
|
|
|
P = P.getUnqualifiedType();
|
|
|
|
|
|
|
|
|
|
// C++0x [temp.deduct.conv]p3:
|
|
|
|
|
// If A is a cv-qualified type, the top level cv-qualifiers of A’s
|
|
|
|
|
// type are ignored for type deduction.
|
|
|
|
|
A = A.getUnqualifiedType();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Template argument deduction for function templates in a SFINAE context.
|
|
|
|
|
// Trap any errors that might occur.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
SFINAETrap Trap(*this);
|
2009-08-22 07:19:43 +08:00
|
|
|
|
|
|
|
|
|
// C++ [temp.deduct.conv]p1:
|
|
|
|
|
// Template argument deduction is done by comparing the return
|
|
|
|
|
// type of the template conversion function (call it P) with the
|
|
|
|
|
// type that is required as the result of the conversion (call it
|
|
|
|
|
// A) as described in 14.8.2.4.
|
|
|
|
|
TemplateParameterList *TemplateParams
|
|
|
|
|
= FunctionTemplate->getTemplateParameters();
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVector<DeducedTemplateArgument, 4> Deduced;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
Deduced.resize(TemplateParams->size());
|
2009-08-22 07:19:43 +08:00
|
|
|
|
|
|
|
|
|
// C++0x [temp.deduct.conv]p4:
|
|
|
|
|
// In general, the deduction process attempts to find template
|
|
|
|
|
// argument values that will make the deduced A identical to
|
|
|
|
|
// A. However, there are two cases that allow a difference:
|
|
|
|
|
unsigned TDF = 0;
|
|
|
|
|
// - If the original A is a reference type, A can be more
|
|
|
|
|
// cv-qualified than the deduced A (i.e., the type referred to
|
|
|
|
|
// by the reference)
|
|
|
|
|
if (ToType->isReferenceType())
|
|
|
|
|
TDF |= TDF_ParamWithReferenceType;
|
|
|
|
|
// - The deduced A can be another pointer or pointer to member
|
|
|
|
|
// type that can be converted to A via a qualification
|
|
|
|
|
// conversion.
|
|
|
|
|
//
|
|
|
|
|
// (C++0x [temp.deduct.conv]p6 clarifies that this only happens when
|
|
|
|
|
// both P and A are pointers or member pointers. In this case, we
|
|
|
|
|
// just ignore cv-qualifiers completely).
|
|
|
|
|
if ((P->isPointerType() && A->isPointerType()) ||
|
|
|
|
|
(P->isMemberPointerType() && P->isMemberPointerType()))
|
|
|
|
|
TDF |= TDF_IgnoreQualifiers;
|
|
|
|
|
if (TemplateDeductionResult Result
|
2010-02-08 05:33:28 +08:00
|
|
|
|
= ::DeduceTemplateArguments(*this, TemplateParams,
|
2009-08-22 07:19:43 +08:00
|
|
|
|
P, A, Info, Deduced, TDF))
|
|
|
|
|
return Result;
|
|
|
|
|
|
|
|
|
|
// FIXME: we need to check that the deduced A is the same as A,
|
|
|
|
|
// modulo the various allowed differences.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-08-22 07:19:43 +08:00
|
|
|
|
// Finish template argument deduction.
|
2010-08-25 13:32:35 +08:00
|
|
|
|
LocalInstantiationScope InstScope(*this);
|
2009-08-22 07:19:43 +08:00
|
|
|
|
FunctionDecl *Spec = 0;
|
|
|
|
|
TemplateDeductionResult Result
|
2010-03-28 10:42:43 +08:00
|
|
|
|
= FinishTemplateArgumentDeduction(FunctionTemplate, Deduced, 0, Spec,
|
|
|
|
|
Info);
|
2009-08-22 07:19:43 +08:00
|
|
|
|
Specialization = cast_or_null<CXXConversionDecl>(Spec);
|
|
|
|
|
return Result;
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-22 07:17:24 +08:00
|
|
|
|
/// \brief Deduce template arguments for a function template when there is
|
|
|
|
|
/// nothing to deduce against (C++0x [temp.arg.explicit]p3).
|
|
|
|
|
///
|
|
|
|
|
/// \param FunctionTemplate the function template for which we are performing
|
|
|
|
|
/// template argument deduction.
|
|
|
|
|
///
|
|
|
|
|
/// \param ExplicitTemplateArguments the explicitly-specified template
|
|
|
|
|
/// arguments.
|
|
|
|
|
///
|
|
|
|
|
/// \param Specialization if template argument deduction was successful,
|
|
|
|
|
/// this will be set to the function template specialization produced by
|
|
|
|
|
/// template argument deduction.
|
|
|
|
|
///
|
|
|
|
|
/// \param Info the argument will be updated to provide additional information
|
|
|
|
|
/// about template argument deduction.
|
|
|
|
|
///
|
|
|
|
|
/// \returns the result of template argument deduction.
|
|
|
|
|
Sema::TemplateDeductionResult
|
|
|
|
|
Sema::DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate,
|
|
|
|
|
const TemplateArgumentListInfo *ExplicitTemplateArgs,
|
|
|
|
|
FunctionDecl *&Specialization,
|
|
|
|
|
TemplateDeductionInfo &Info) {
|
|
|
|
|
return DeduceTemplateArguments(FunctionTemplate, ExplicitTemplateArgs,
|
|
|
|
|
QualType(), Specialization, Info);
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-15 02:39:43 +08:00
|
|
|
|
/// \brief Stores the result of comparing the qualifiers of two types.
|
|
|
|
|
enum DeductionQualifierComparison {
|
|
|
|
|
NeitherMoreQualified = 0,
|
|
|
|
|
ParamMoreQualified,
|
|
|
|
|
ArgMoreQualified
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// \brief Deduce the template arguments during partial ordering by comparing
|
|
|
|
|
/// the parameter type and the argument type (C++0x [temp.deduct.partial]).
|
|
|
|
|
///
|
2010-02-08 05:33:28 +08:00
|
|
|
|
/// \param S the semantic analysis object within which we are deducing
|
2009-09-15 02:39:43 +08:00
|
|
|
|
///
|
|
|
|
|
/// \param TemplateParams the template parameters that we are deducing
|
|
|
|
|
///
|
|
|
|
|
/// \param ParamIn the parameter type
|
|
|
|
|
///
|
|
|
|
|
/// \param ArgIn the argument type
|
|
|
|
|
///
|
|
|
|
|
/// \param Info information about the template argument deduction itself
|
|
|
|
|
///
|
|
|
|
|
/// \param Deduced the deduced template arguments
|
|
|
|
|
///
|
|
|
|
|
/// \returns the result of template argument deduction so far. Note that a
|
|
|
|
|
/// "success" result means that template argument deduction has not yet failed,
|
|
|
|
|
/// but it may still fail, later, for other reasons.
|
|
|
|
|
static Sema::TemplateDeductionResult
|
2010-02-08 05:33:28 +08:00
|
|
|
|
DeduceTemplateArgumentsDuringPartialOrdering(Sema &S,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
TemplateParameterList *TemplateParams,
|
2009-09-15 02:39:43 +08:00
|
|
|
|
QualType ParamIn, QualType ArgIn,
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo &Info,
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVectorImpl<DeducedTemplateArgument> &Deduced,
|
|
|
|
|
llvm::SmallVectorImpl<DeductionQualifierComparison> *QualifierComparisons) {
|
2010-02-08 05:33:28 +08:00
|
|
|
|
CanQualType Param = S.Context.getCanonicalType(ParamIn);
|
|
|
|
|
CanQualType Arg = S.Context.getCanonicalType(ArgIn);
|
2009-09-15 02:39:43 +08:00
|
|
|
|
|
|
|
|
|
// C++0x [temp.deduct.partial]p5:
|
|
|
|
|
// Before the partial ordering is done, certain transformations are
|
|
|
|
|
// performed on the types used for partial ordering:
|
|
|
|
|
// - If P is a reference type, P is replaced by the type referred to.
|
|
|
|
|
CanQual<ReferenceType> ParamRef = Param->getAs<ReferenceType>();
|
2009-10-24 07:03:21 +08:00
|
|
|
|
if (!ParamRef.isNull())
|
2009-09-15 02:39:43 +08:00
|
|
|
|
Param = ParamRef->getPointeeType();
|
|
|
|
|
|
|
|
|
|
// - If A is a reference type, A is replaced by the type referred to.
|
|
|
|
|
CanQual<ReferenceType> ArgRef = Arg->getAs<ReferenceType>();
|
2009-10-24 07:03:21 +08:00
|
|
|
|
if (!ArgRef.isNull())
|
2009-09-15 02:39:43 +08:00
|
|
|
|
Arg = ArgRef->getPointeeType();
|
|
|
|
|
|
2009-10-24 07:03:21 +08:00
|
|
|
|
if (QualifierComparisons && !ParamRef.isNull() && !ArgRef.isNull()) {
|
2009-09-15 02:39:43 +08:00
|
|
|
|
// C++0x [temp.deduct.partial]p6:
|
|
|
|
|
// If both P and A were reference types (before being replaced with the
|
|
|
|
|
// type referred to above), determine which of the two types (if any) is
|
|
|
|
|
// more cv-qualified than the other; otherwise the types are considered to
|
|
|
|
|
// be equally cv-qualified for partial ordering purposes. The result of this
|
|
|
|
|
// determination will be used below.
|
|
|
|
|
//
|
|
|
|
|
// We save this information for later, using it only when deduction
|
|
|
|
|
// succeeds in both directions.
|
|
|
|
|
DeductionQualifierComparison QualifierResult = NeitherMoreQualified;
|
|
|
|
|
if (Param.isMoreQualifiedThan(Arg))
|
|
|
|
|
QualifierResult = ParamMoreQualified;
|
|
|
|
|
else if (Arg.isMoreQualifiedThan(Param))
|
|
|
|
|
QualifierResult = ArgMoreQualified;
|
|
|
|
|
QualifierComparisons->push_back(QualifierResult);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// C++0x [temp.deduct.partial]p7:
|
|
|
|
|
// Remove any top-level cv-qualifiers:
|
|
|
|
|
// - If P is a cv-qualified type, P is replaced by the cv-unqualified
|
|
|
|
|
// version of P.
|
|
|
|
|
Param = Param.getUnqualifiedType();
|
|
|
|
|
// - If A is a cv-qualified type, A is replaced by the cv-unqualified
|
|
|
|
|
// version of A.
|
|
|
|
|
Arg = Arg.getUnqualifiedType();
|
|
|
|
|
|
|
|
|
|
// C++0x [temp.deduct.partial]p8:
|
|
|
|
|
// Using the resulting types P and A the deduction is then done as
|
|
|
|
|
// described in 14.9.2.5. If deduction succeeds for a given type, the type
|
|
|
|
|
// from the argument template is considered to be at least as specialized
|
|
|
|
|
// as the type from the parameter template.
|
2010-02-08 05:33:28 +08:00
|
|
|
|
return DeduceTemplateArguments(S, TemplateParams, Param, Arg, Info,
|
2009-09-15 02:39:43 +08:00
|
|
|
|
Deduced, TDF_None);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(Sema &SemaRef, QualType T,
|
|
|
|
|
bool OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
unsigned Level,
|
2009-09-15 05:25:05 +08:00
|
|
|
|
llvm::SmallVectorImpl<bool> &Deduced);
|
2010-11-13 07:44:13 +08:00
|
|
|
|
|
|
|
|
|
/// \brief If this is a non-static member function,
|
|
|
|
|
static void MaybeAddImplicitObjectParameterType(ASTContext &Context,
|
|
|
|
|
CXXMethodDecl *Method,
|
|
|
|
|
llvm::SmallVectorImpl<QualType> &ArgTypes) {
|
|
|
|
|
if (Method->isStatic())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// C++ [over.match.funcs]p4:
|
|
|
|
|
//
|
|
|
|
|
// For non-static member functions, the type of the implicit
|
|
|
|
|
// object parameter is
|
|
|
|
|
// — "lvalue reference to cv X" for functions declared without a
|
|
|
|
|
// ref-qualifier or with the & ref-qualifier
|
|
|
|
|
// - "rvalue reference to cv X" for functions declared with the
|
|
|
|
|
// && ref-qualifier
|
|
|
|
|
//
|
|
|
|
|
// FIXME: We don't have ref-qualifiers yet, so we don't do that part.
|
|
|
|
|
QualType ArgTy = Context.getTypeDeclType(Method->getParent());
|
|
|
|
|
ArgTy = Context.getQualifiedType(ArgTy,
|
|
|
|
|
Qualifiers::fromCVRMask(Method->getTypeQualifiers()));
|
|
|
|
|
ArgTy = Context.getLValueReferenceType(ArgTy);
|
|
|
|
|
ArgTypes.push_back(ArgTy);
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-15 02:39:43 +08:00
|
|
|
|
/// \brief Determine whether the function template \p FT1 is at least as
|
|
|
|
|
/// specialized as \p FT2.
|
|
|
|
|
static bool isAtLeastAsSpecializedAs(Sema &S,
|
2010-02-09 07:07:23 +08:00
|
|
|
|
SourceLocation Loc,
|
2009-09-15 02:39:43 +08:00
|
|
|
|
FunctionTemplateDecl *FT1,
|
|
|
|
|
FunctionTemplateDecl *FT2,
|
|
|
|
|
TemplatePartialOrderingContext TPOC,
|
|
|
|
|
llvm::SmallVectorImpl<DeductionQualifierComparison> *QualifierComparisons) {
|
|
|
|
|
FunctionDecl *FD1 = FT1->getTemplatedDecl();
|
|
|
|
|
FunctionDecl *FD2 = FT2->getTemplatedDecl();
|
|
|
|
|
const FunctionProtoType *Proto1 = FD1->getType()->getAs<FunctionProtoType>();
|
|
|
|
|
const FunctionProtoType *Proto2 = FD2->getType()->getAs<FunctionProtoType>();
|
|
|
|
|
|
|
|
|
|
assert(Proto1 && Proto2 && "Function templates must have prototypes");
|
|
|
|
|
TemplateParameterList *TemplateParams = FT2->getTemplateParameters();
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVector<DeducedTemplateArgument, 4> Deduced;
|
2009-09-15 02:39:43 +08:00
|
|
|
|
Deduced.resize(TemplateParams->size());
|
|
|
|
|
|
|
|
|
|
// C++0x [temp.deduct.partial]p3:
|
|
|
|
|
// The types used to determine the ordering depend on the context in which
|
|
|
|
|
// the partial ordering is done:
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo Info(S.Context, Loc);
|
2010-11-15 23:41:16 +08:00
|
|
|
|
CXXMethodDecl *Method1 = 0;
|
|
|
|
|
CXXMethodDecl *Method2 = 0;
|
|
|
|
|
bool IsNonStatic2 = false;
|
|
|
|
|
bool IsNonStatic1 = false;
|
|
|
|
|
unsigned Skip2 = 0;
|
2009-09-15 02:39:43 +08:00
|
|
|
|
switch (TPOC) {
|
|
|
|
|
case TPOC_Call: {
|
|
|
|
|
// - In the context of a function call, the function parameter types are
|
|
|
|
|
// used.
|
2010-11-15 23:41:16 +08:00
|
|
|
|
Method1 = dyn_cast<CXXMethodDecl>(FD1);
|
|
|
|
|
Method2 = dyn_cast<CXXMethodDecl>(FD2);
|
|
|
|
|
IsNonStatic1 = Method1 && !Method1->isStatic();
|
|
|
|
|
IsNonStatic2 = Method2 && !Method2->isStatic();
|
|
|
|
|
|
|
|
|
|
// C++0x [temp.func.order]p3:
|
|
|
|
|
// [...] If only one of the function templates is a non-static
|
|
|
|
|
// member, that function template is considered to have a new
|
|
|
|
|
// first parameter inserted in its function parameter list. The
|
|
|
|
|
// new parameter is of type "reference to cv A," where cv are
|
|
|
|
|
// the cv-qualifiers of the function template (if any) and A is
|
|
|
|
|
// the class of which the function template is a member.
|
|
|
|
|
//
|
|
|
|
|
// C++98/03 doesn't have this provision, so instead we drop the
|
|
|
|
|
// first argument of the free function or static member, which
|
|
|
|
|
// seems to match existing practice.
|
2010-11-13 07:44:13 +08:00
|
|
|
|
llvm::SmallVector<QualType, 4> Args1;
|
2010-11-15 23:41:16 +08:00
|
|
|
|
unsigned Skip1 = !S.getLangOptions().CPlusPlus0x &&
|
|
|
|
|
IsNonStatic2 && !IsNonStatic1;
|
|
|
|
|
if (S.getLangOptions().CPlusPlus0x && IsNonStatic1 && !IsNonStatic2)
|
2010-11-13 07:44:13 +08:00
|
|
|
|
MaybeAddImplicitObjectParameterType(S.Context, Method1, Args1);
|
|
|
|
|
Args1.insert(Args1.end(),
|
2010-11-15 23:41:16 +08:00
|
|
|
|
Proto1->arg_type_begin() + Skip1, Proto1->arg_type_end());
|
2010-11-13 07:44:13 +08:00
|
|
|
|
|
|
|
|
|
llvm::SmallVector<QualType, 4> Args2;
|
2010-11-15 23:41:16 +08:00
|
|
|
|
Skip2 = !S.getLangOptions().CPlusPlus0x &&
|
|
|
|
|
IsNonStatic1 && !IsNonStatic2;
|
|
|
|
|
if (S.getLangOptions().CPlusPlus0x && IsNonStatic2 && !IsNonStatic1)
|
2010-11-13 07:44:13 +08:00
|
|
|
|
MaybeAddImplicitObjectParameterType(S.Context, Method2, Args2);
|
|
|
|
|
Args2.insert(Args2.end(),
|
2010-11-15 23:41:16 +08:00
|
|
|
|
Proto2->arg_type_begin() + Skip2, Proto2->arg_type_end());
|
2010-11-13 07:44:13 +08:00
|
|
|
|
|
|
|
|
|
unsigned NumParams = std::min(Args1.size(), Args2.size());
|
2009-09-15 02:39:43 +08:00
|
|
|
|
for (unsigned I = 0; I != NumParams; ++I)
|
2010-02-08 05:33:28 +08:00
|
|
|
|
if (DeduceTemplateArgumentsDuringPartialOrdering(S,
|
2009-09-15 02:39:43 +08:00
|
|
|
|
TemplateParams,
|
2010-11-13 07:44:13 +08:00
|
|
|
|
Args2[I],
|
|
|
|
|
Args1[I],
|
2009-09-15 02:39:43 +08:00
|
|
|
|
Info,
|
|
|
|
|
Deduced,
|
|
|
|
|
QualifierComparisons))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case TPOC_Conversion:
|
|
|
|
|
// - In the context of a call to a conversion operator, the return types
|
|
|
|
|
// of the conversion function templates are used.
|
2010-02-08 05:33:28 +08:00
|
|
|
|
if (DeduceTemplateArgumentsDuringPartialOrdering(S,
|
2009-09-15 02:39:43 +08:00
|
|
|
|
TemplateParams,
|
|
|
|
|
Proto2->getResultType(),
|
|
|
|
|
Proto1->getResultType(),
|
|
|
|
|
Info,
|
|
|
|
|
Deduced,
|
|
|
|
|
QualifierComparisons))
|
|
|
|
|
return false;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TPOC_Other:
|
|
|
|
|
// - In other contexts (14.6.6.2) the function template’s function type
|
|
|
|
|
// is used.
|
2010-02-08 05:33:28 +08:00
|
|
|
|
if (DeduceTemplateArgumentsDuringPartialOrdering(S,
|
2009-09-15 02:39:43 +08:00
|
|
|
|
TemplateParams,
|
|
|
|
|
FD2->getType(),
|
|
|
|
|
FD1->getType(),
|
|
|
|
|
Info,
|
|
|
|
|
Deduced,
|
|
|
|
|
QualifierComparisons))
|
|
|
|
|
return false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// C++0x [temp.deduct.partial]p11:
|
|
|
|
|
// In most cases, all template parameters must have values in order for
|
|
|
|
|
// deduction to succeed, but for partial ordering purposes a template
|
|
|
|
|
// parameter may remain without a value provided it is not used in the
|
|
|
|
|
// types being used for partial ordering. [ Note: a template parameter used
|
|
|
|
|
// in a non-deduced context is considered used. -end note]
|
|
|
|
|
unsigned ArgIdx = 0, NumArgs = Deduced.size();
|
|
|
|
|
for (; ArgIdx != NumArgs; ++ArgIdx)
|
|
|
|
|
if (Deduced[ArgIdx].isNull())
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (ArgIdx == NumArgs) {
|
|
|
|
|
// All template arguments were deduced. FT1 is at least as specialized
|
|
|
|
|
// as FT2.
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-15 05:25:05 +08:00
|
|
|
|
// Figure out which template parameters were used.
|
2009-09-15 02:39:43 +08:00
|
|
|
|
llvm::SmallVector<bool, 4> UsedParameters;
|
|
|
|
|
UsedParameters.resize(TemplateParams->size());
|
|
|
|
|
switch (TPOC) {
|
|
|
|
|
case TPOC_Call: {
|
|
|
|
|
unsigned NumParams = std::min(Proto1->getNumArgs(), Proto2->getNumArgs());
|
2010-11-15 23:41:16 +08:00
|
|
|
|
if (S.getLangOptions().CPlusPlus0x && IsNonStatic2 && !IsNonStatic1)
|
|
|
|
|
::MarkUsedTemplateParameters(S, Method2->getThisType(S.Context), false,
|
|
|
|
|
TemplateParams->getDepth(), UsedParameters);
|
|
|
|
|
for (unsigned I = Skip2; I < NumParams; ++I)
|
2009-10-29 08:04:11 +08:00
|
|
|
|
::MarkUsedTemplateParameters(S, Proto2->getArgType(I), false,
|
|
|
|
|
TemplateParams->getDepth(),
|
2009-09-15 05:25:05 +08:00
|
|
|
|
UsedParameters);
|
2009-09-15 02:39:43 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case TPOC_Conversion:
|
2009-10-29 08:04:11 +08:00
|
|
|
|
::MarkUsedTemplateParameters(S, Proto2->getResultType(), false,
|
|
|
|
|
TemplateParams->getDepth(),
|
2009-09-15 05:25:05 +08:00
|
|
|
|
UsedParameters);
|
2009-09-15 02:39:43 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TPOC_Other:
|
2009-10-29 08:04:11 +08:00
|
|
|
|
::MarkUsedTemplateParameters(S, FD2->getType(), false,
|
|
|
|
|
TemplateParams->getDepth(),
|
|
|
|
|
UsedParameters);
|
2009-09-15 02:39:43 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (; ArgIdx != NumArgs; ++ArgIdx)
|
|
|
|
|
// If this argument had no value deduced but was used in one of the types
|
|
|
|
|
// used for partial ordering, then deduction fails.
|
|
|
|
|
if (Deduced[ArgIdx].isNull() && UsedParameters[ArgIdx])
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-09-16 00:23:51 +08:00
|
|
|
|
/// \brief Returns the more specialized function template according
|
2009-08-22 07:19:43 +08:00
|
|
|
|
/// to the rules of function template partial ordering (C++ [temp.func.order]).
|
|
|
|
|
///
|
|
|
|
|
/// \param FT1 the first function template
|
|
|
|
|
///
|
|
|
|
|
/// \param FT2 the second function template
|
|
|
|
|
///
|
2009-09-15 02:39:43 +08:00
|
|
|
|
/// \param TPOC the context in which we are performing partial ordering of
|
|
|
|
|
/// function templates.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
///
|
2009-09-16 00:23:51 +08:00
|
|
|
|
/// \returns the more specialized function template. If neither
|
2009-08-22 07:19:43 +08:00
|
|
|
|
/// template is more specialized, returns NULL.
|
|
|
|
|
FunctionTemplateDecl *
|
|
|
|
|
Sema::getMoreSpecializedTemplate(FunctionTemplateDecl *FT1,
|
|
|
|
|
FunctionTemplateDecl *FT2,
|
2010-02-09 07:07:23 +08:00
|
|
|
|
SourceLocation Loc,
|
2009-09-15 02:39:43 +08:00
|
|
|
|
TemplatePartialOrderingContext TPOC) {
|
|
|
|
|
llvm::SmallVector<DeductionQualifierComparison, 4> QualifierComparisons;
|
2010-02-09 07:07:23 +08:00
|
|
|
|
bool Better1 = isAtLeastAsSpecializedAs(*this, Loc, FT1, FT2, TPOC, 0);
|
|
|
|
|
bool Better2 = isAtLeastAsSpecializedAs(*this, Loc, FT2, FT1, TPOC,
|
2009-09-15 02:39:43 +08:00
|
|
|
|
&QualifierComparisons);
|
|
|
|
|
|
|
|
|
|
if (Better1 != Better2) // We have a clear winner
|
|
|
|
|
return Better1? FT1 : FT2;
|
|
|
|
|
|
|
|
|
|
if (!Better1 && !Better2) // Neither is better than the other
|
2009-08-22 07:19:43 +08:00
|
|
|
|
return 0;
|
2009-09-15 02:39:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// C++0x [temp.deduct.partial]p10:
|
|
|
|
|
// If for each type being considered a given template is at least as
|
|
|
|
|
// specialized for all types and more specialized for some set of types and
|
|
|
|
|
// the other template is not more specialized for any types or is not at
|
|
|
|
|
// least as specialized for any types, then the given template is more
|
|
|
|
|
// specialized than the other template. Otherwise, neither template is more
|
|
|
|
|
// specialized than the other.
|
|
|
|
|
Better1 = false;
|
|
|
|
|
Better2 = false;
|
|
|
|
|
for (unsigned I = 0, N = QualifierComparisons.size(); I != N; ++I) {
|
|
|
|
|
// C++0x [temp.deduct.partial]p9:
|
|
|
|
|
// If, for a given type, deduction succeeds in both directions (i.e., the
|
|
|
|
|
// types are identical after the transformations above) and if the type
|
|
|
|
|
// from the argument template is more cv-qualified than the type from the
|
|
|
|
|
// parameter template (as described above) that type is considered to be
|
|
|
|
|
// more specialized than the other. If neither type is more cv-qualified
|
|
|
|
|
// than the other then neither type is more specialized than the other.
|
|
|
|
|
switch (QualifierComparisons[I]) {
|
|
|
|
|
case NeitherMoreQualified:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ParamMoreQualified:
|
|
|
|
|
Better1 = true;
|
|
|
|
|
if (Better2)
|
|
|
|
|
return 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ArgMoreQualified:
|
|
|
|
|
Better2 = true;
|
|
|
|
|
if (Better1)
|
|
|
|
|
return 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert(!(Better1 && Better2) && "Should have broken out in the loop above");
|
2009-08-22 07:19:43 +08:00
|
|
|
|
if (Better1)
|
|
|
|
|
return FT1;
|
2009-09-15 02:39:43 +08:00
|
|
|
|
else if (Better2)
|
|
|
|
|
return FT2;
|
|
|
|
|
else
|
|
|
|
|
return 0;
|
2009-08-22 07:19:43 +08:00
|
|
|
|
}
|
2009-07-09 04:55:45 +08:00
|
|
|
|
|
2009-09-26 02:43:00 +08:00
|
|
|
|
/// \brief Determine if the two templates are equivalent.
|
|
|
|
|
static bool isSameTemplate(TemplateDecl *T1, TemplateDecl *T2) {
|
|
|
|
|
if (T1 == T2)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
if (!T1 || !T2)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return T1->getCanonicalDecl() == T2->getCanonicalDecl();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// \brief Retrieve the most specialized of the given function template
|
|
|
|
|
/// specializations.
|
|
|
|
|
///
|
2010-01-27 09:50:18 +08:00
|
|
|
|
/// \param SpecBegin the start iterator of the function template
|
|
|
|
|
/// specializations that we will be comparing.
|
2009-09-26 02:43:00 +08:00
|
|
|
|
///
|
2010-01-27 09:50:18 +08:00
|
|
|
|
/// \param SpecEnd the end iterator of the function template
|
|
|
|
|
/// specializations, paired with \p SpecBegin.
|
2009-09-26 02:43:00 +08:00
|
|
|
|
///
|
|
|
|
|
/// \param TPOC the partial ordering context to use to compare the function
|
|
|
|
|
/// template specializations.
|
|
|
|
|
///
|
|
|
|
|
/// \param Loc the location where the ambiguity or no-specializations
|
|
|
|
|
/// diagnostic should occur.
|
|
|
|
|
///
|
|
|
|
|
/// \param NoneDiag partial diagnostic used to diagnose cases where there are
|
|
|
|
|
/// no matching candidates.
|
|
|
|
|
///
|
|
|
|
|
/// \param AmbigDiag partial diagnostic used to diagnose an ambiguity, if one
|
|
|
|
|
/// occurs.
|
|
|
|
|
///
|
|
|
|
|
/// \param CandidateDiag partial diagnostic used for each function template
|
|
|
|
|
/// specialization that is a candidate in the ambiguous ordering. One parameter
|
|
|
|
|
/// in this diagnostic should be unbound, which will correspond to the string
|
|
|
|
|
/// describing the template arguments for the function template specialization.
|
|
|
|
|
///
|
|
|
|
|
/// \param Index if non-NULL and the result of this function is non-nULL,
|
|
|
|
|
/// receives the index corresponding to the resulting function template
|
|
|
|
|
/// specialization.
|
|
|
|
|
///
|
|
|
|
|
/// \returns the most specialized function template specialization, if
|
2010-01-27 09:50:18 +08:00
|
|
|
|
/// found. Otherwise, returns SpecEnd.
|
2009-09-26 02:43:00 +08:00
|
|
|
|
///
|
|
|
|
|
/// \todo FIXME: Consider passing in the "also-ran" candidates that failed
|
|
|
|
|
/// template argument deduction.
|
2010-01-27 09:50:18 +08:00
|
|
|
|
UnresolvedSetIterator
|
|
|
|
|
Sema::getMostSpecialized(UnresolvedSetIterator SpecBegin,
|
|
|
|
|
UnresolvedSetIterator SpecEnd,
|
|
|
|
|
TemplatePartialOrderingContext TPOC,
|
|
|
|
|
SourceLocation Loc,
|
|
|
|
|
const PartialDiagnostic &NoneDiag,
|
|
|
|
|
const PartialDiagnostic &AmbigDiag,
|
|
|
|
|
const PartialDiagnostic &CandidateDiag) {
|
|
|
|
|
if (SpecBegin == SpecEnd) {
|
2009-09-26 02:43:00 +08:00
|
|
|
|
Diag(Loc, NoneDiag);
|
2010-01-27 09:50:18 +08:00
|
|
|
|
return SpecEnd;
|
2009-09-26 02:43:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
2010-01-27 09:50:18 +08:00
|
|
|
|
if (SpecBegin + 1 == SpecEnd)
|
|
|
|
|
return SpecBegin;
|
2009-09-26 02:43:00 +08:00
|
|
|
|
|
|
|
|
|
// Find the function template that is better than all of the templates it
|
|
|
|
|
// has been compared to.
|
2010-01-27 09:50:18 +08:00
|
|
|
|
UnresolvedSetIterator Best = SpecBegin;
|
2009-09-26 02:43:00 +08:00
|
|
|
|
FunctionTemplateDecl *BestTemplate
|
2010-01-27 09:50:18 +08:00
|
|
|
|
= cast<FunctionDecl>(*Best)->getPrimaryTemplate();
|
2009-09-26 02:43:00 +08:00
|
|
|
|
assert(BestTemplate && "Not a function template specialization?");
|
2010-01-27 09:50:18 +08:00
|
|
|
|
for (UnresolvedSetIterator I = SpecBegin + 1; I != SpecEnd; ++I) {
|
|
|
|
|
FunctionTemplateDecl *Challenger
|
|
|
|
|
= cast<FunctionDecl>(*I)->getPrimaryTemplate();
|
2009-09-26 02:43:00 +08:00
|
|
|
|
assert(Challenger && "Not a function template specialization?");
|
2010-01-27 09:50:18 +08:00
|
|
|
|
if (isSameTemplate(getMoreSpecializedTemplate(BestTemplate, Challenger,
|
2010-02-09 07:07:23 +08:00
|
|
|
|
Loc, TPOC),
|
2009-09-26 02:43:00 +08:00
|
|
|
|
Challenger)) {
|
|
|
|
|
Best = I;
|
|
|
|
|
BestTemplate = Challenger;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Make sure that the "best" function template is more specialized than all
|
|
|
|
|
// of the others.
|
|
|
|
|
bool Ambiguous = false;
|
2010-01-27 09:50:18 +08:00
|
|
|
|
for (UnresolvedSetIterator I = SpecBegin; I != SpecEnd; ++I) {
|
|
|
|
|
FunctionTemplateDecl *Challenger
|
|
|
|
|
= cast<FunctionDecl>(*I)->getPrimaryTemplate();
|
2009-09-26 02:43:00 +08:00
|
|
|
|
if (I != Best &&
|
|
|
|
|
!isSameTemplate(getMoreSpecializedTemplate(BestTemplate, Challenger,
|
2010-02-09 07:07:23 +08:00
|
|
|
|
Loc, TPOC),
|
2009-09-26 02:43:00 +08:00
|
|
|
|
BestTemplate)) {
|
|
|
|
|
Ambiguous = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!Ambiguous) {
|
|
|
|
|
// We found an answer. Return it.
|
2010-01-27 09:50:18 +08:00
|
|
|
|
return Best;
|
2009-09-26 02:43:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Diagnose the ambiguity.
|
|
|
|
|
Diag(Loc, AmbigDiag);
|
|
|
|
|
|
|
|
|
|
// FIXME: Can we order the candidates in some sane way?
|
2010-01-27 09:50:18 +08:00
|
|
|
|
for (UnresolvedSetIterator I = SpecBegin; I != SpecEnd; ++I)
|
|
|
|
|
Diag((*I)->getLocation(), CandidateDiag)
|
2009-09-26 02:43:00 +08:00
|
|
|
|
<< getTemplateArgumentBindingsText(
|
2010-01-27 09:50:18 +08:00
|
|
|
|
cast<FunctionDecl>(*I)->getPrimaryTemplate()->getTemplateParameters(),
|
|
|
|
|
*cast<FunctionDecl>(*I)->getTemplateSpecializationArgs());
|
2009-09-26 02:43:00 +08:00
|
|
|
|
|
2010-01-27 09:50:18 +08:00
|
|
|
|
return SpecEnd;
|
2009-09-26 02:43:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-09-16 00:23:51 +08:00
|
|
|
|
/// \brief Returns the more specialized class template partial specialization
|
|
|
|
|
/// according to the rules of partial ordering of class template partial
|
|
|
|
|
/// specializations (C++ [temp.class.order]).
|
|
|
|
|
///
|
|
|
|
|
/// \param PS1 the first class template partial specialization
|
|
|
|
|
///
|
|
|
|
|
/// \param PS2 the second class template partial specialization
|
|
|
|
|
///
|
|
|
|
|
/// \returns the more specialized class template partial specialization. If
|
|
|
|
|
/// neither partial specialization is more specialized, returns NULL.
|
|
|
|
|
ClassTemplatePartialSpecializationDecl *
|
|
|
|
|
Sema::getMoreSpecializedPartialSpecialization(
|
|
|
|
|
ClassTemplatePartialSpecializationDecl *PS1,
|
2010-02-09 07:07:23 +08:00
|
|
|
|
ClassTemplatePartialSpecializationDecl *PS2,
|
|
|
|
|
SourceLocation Loc) {
|
2009-09-16 00:23:51 +08:00
|
|
|
|
// C++ [temp.class.order]p1:
|
|
|
|
|
// For two class template partial specializations, the first is at least as
|
|
|
|
|
// specialized as the second if, given the following rewrite to two
|
|
|
|
|
// function templates, the first function template is at least as
|
|
|
|
|
// specialized as the second according to the ordering rules for function
|
|
|
|
|
// templates (14.6.6.2):
|
|
|
|
|
// - the first function template has the same template parameters as the
|
|
|
|
|
// first partial specialization and has a single function parameter
|
|
|
|
|
// whose type is a class template specialization with the template
|
|
|
|
|
// arguments of the first partial specialization, and
|
|
|
|
|
// - the second function template has the same template parameters as the
|
|
|
|
|
// second partial specialization and has a single function parameter
|
|
|
|
|
// whose type is a class template specialization with the template
|
|
|
|
|
// arguments of the second partial specialization.
|
|
|
|
|
//
|
2010-04-29 14:21:43 +08:00
|
|
|
|
// Rather than synthesize function templates, we merely perform the
|
|
|
|
|
// equivalent partial ordering by performing deduction directly on
|
|
|
|
|
// the template arguments of the class template partial
|
|
|
|
|
// specializations. This computation is slightly simpler than the
|
|
|
|
|
// general problem of function template partial ordering, because
|
|
|
|
|
// class template partial specializations are more constrained. We
|
|
|
|
|
// know that every template parameter is deducible from the class
|
|
|
|
|
// template partial specialization's template arguments, for
|
|
|
|
|
// example.
|
2010-03-28 10:42:43 +08:00
|
|
|
|
llvm::SmallVector<DeducedTemplateArgument, 4> Deduced;
|
2010-08-25 13:32:35 +08:00
|
|
|
|
TemplateDeductionInfo Info(Context, Loc);
|
2010-04-27 08:57:59 +08:00
|
|
|
|
|
|
|
|
|
QualType PT1 = PS1->getInjectedSpecializationType();
|
|
|
|
|
QualType PT2 = PS2->getInjectedSpecializationType();
|
2009-09-16 00:23:51 +08:00
|
|
|
|
|
|
|
|
|
// Determine whether PS1 is at least as specialized as PS2
|
|
|
|
|
Deduced.resize(PS2->getTemplateParameters()->size());
|
2010-02-08 05:33:28 +08:00
|
|
|
|
bool Better1 = !DeduceTemplateArgumentsDuringPartialOrdering(*this,
|
2009-09-16 00:23:51 +08:00
|
|
|
|
PS2->getTemplateParameters(),
|
2010-04-27 08:57:59 +08:00
|
|
|
|
PT2,
|
|
|
|
|
PT1,
|
2009-09-16 00:23:51 +08:00
|
|
|
|
Info,
|
|
|
|
|
Deduced,
|
|
|
|
|
0);
|
2010-11-06 07:25:18 +08:00
|
|
|
|
if (Better1) {
|
|
|
|
|
InstantiatingTemplate Inst(*this, PS2->getLocation(), PS2,
|
|
|
|
|
Deduced.data(), Deduced.size(), Info);
|
2010-04-29 14:31:36 +08:00
|
|
|
|
Better1 = !::FinishTemplateArgumentDeduction(*this, PS2,
|
|
|
|
|
PS1->getTemplateArgs(),
|
|
|
|
|
Deduced, Info);
|
2010-11-06 07:25:18 +08:00
|
|
|
|
}
|
2010-04-29 14:31:36 +08:00
|
|
|
|
|
2009-09-16 00:23:51 +08:00
|
|
|
|
// Determine whether PS2 is at least as specialized as PS1
|
2009-11-12 07:06:43 +08:00
|
|
|
|
Deduced.clear();
|
2009-09-16 00:23:51 +08:00
|
|
|
|
Deduced.resize(PS1->getTemplateParameters()->size());
|
2010-02-08 05:33:28 +08:00
|
|
|
|
bool Better2 = !DeduceTemplateArgumentsDuringPartialOrdering(*this,
|
2009-09-16 00:23:51 +08:00
|
|
|
|
PS1->getTemplateParameters(),
|
2010-04-27 08:57:59 +08:00
|
|
|
|
PT1,
|
|
|
|
|
PT2,
|
2009-09-16 00:23:51 +08:00
|
|
|
|
Info,
|
|
|
|
|
Deduced,
|
|
|
|
|
0);
|
2010-11-06 07:25:18 +08:00
|
|
|
|
if (Better2) {
|
|
|
|
|
InstantiatingTemplate Inst(*this, PS1->getLocation(), PS1,
|
|
|
|
|
Deduced.data(), Deduced.size(), Info);
|
2010-04-29 14:31:36 +08:00
|
|
|
|
Better2 = !::FinishTemplateArgumentDeduction(*this, PS1,
|
|
|
|
|
PS2->getTemplateArgs(),
|
|
|
|
|
Deduced, Info);
|
2010-11-06 07:25:18 +08:00
|
|
|
|
}
|
2009-09-16 00:23:51 +08:00
|
|
|
|
|
|
|
|
|
if (Better1 == Better2)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return Better1? PS1 : PS2;
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
static void
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(Sema &SemaRef,
|
|
|
|
|
const TemplateArgument &TemplateArg,
|
|
|
|
|
bool OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
unsigned Depth,
|
2009-09-15 05:25:05 +08:00
|
|
|
|
llvm::SmallVectorImpl<bool> &Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
|
2009-09-15 05:25:05 +08:00
|
|
|
|
/// \brief Mark the template parameters that are used by the given
|
2009-06-13 08:26:55 +08:00
|
|
|
|
/// expression.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
static void
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(Sema &SemaRef,
|
|
|
|
|
const Expr *E,
|
|
|
|
|
bool OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
unsigned Depth,
|
2009-09-15 05:25:05 +08:00
|
|
|
|
llvm::SmallVectorImpl<bool> &Used) {
|
|
|
|
|
// FIXME: if !OnlyDeduced, we have to walk the whole subexpression to
|
|
|
|
|
// find other occurrences of template parameters.
|
2009-06-19 02:45:36 +08:00
|
|
|
|
const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
|
2010-01-15 02:13:22 +08:00
|
|
|
|
if (!DRE)
|
2009-06-13 08:26:55 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
|
const NonTypeTemplateParmDecl *NTTP
|
2009-06-13 08:26:55 +08:00
|
|
|
|
= dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
|
|
|
|
|
if (!NTTP)
|
|
|
|
|
return;
|
|
|
|
|
|
2009-10-29 08:04:11 +08:00
|
|
|
|
if (NTTP->getDepth() == Depth)
|
|
|
|
|
Used[NTTP->getIndex()] = true;
|
2009-06-13 08:26:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-09-15 05:25:05 +08:00
|
|
|
|
/// \brief Mark the template parameters that are used by the given
|
|
|
|
|
/// nested name specifier.
|
|
|
|
|
static void
|
|
|
|
|
MarkUsedTemplateParameters(Sema &SemaRef,
|
|
|
|
|
NestedNameSpecifier *NNS,
|
|
|
|
|
bool OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
unsigned Depth,
|
2009-09-15 05:25:05 +08:00
|
|
|
|
llvm::SmallVectorImpl<bool> &Used) {
|
|
|
|
|
if (!NNS)
|
|
|
|
|
return;
|
|
|
|
|
|
2009-10-29 08:04:11 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, NNS->getPrefix(), OnlyDeduced, Depth,
|
|
|
|
|
Used);
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, QualType(NNS->getAsType(), 0),
|
2009-10-29 08:04:11 +08:00
|
|
|
|
OnlyDeduced, Depth, Used);
|
2009-09-15 05:25:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// \brief Mark the template parameters that are used by the given
|
|
|
|
|
/// template name.
|
|
|
|
|
static void
|
|
|
|
|
MarkUsedTemplateParameters(Sema &SemaRef,
|
|
|
|
|
TemplateName Name,
|
|
|
|
|
bool OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
unsigned Depth,
|
2009-09-15 05:25:05 +08:00
|
|
|
|
llvm::SmallVectorImpl<bool> &Used) {
|
|
|
|
|
if (TemplateDecl *Template = Name.getAsTemplateDecl()) {
|
|
|
|
|
if (TemplateTemplateParmDecl *TTP
|
2009-10-29 08:04:11 +08:00
|
|
|
|
= dyn_cast<TemplateTemplateParmDecl>(Template)) {
|
|
|
|
|
if (TTP->getDepth() == Depth)
|
|
|
|
|
Used[TTP->getIndex()] = true;
|
|
|
|
|
}
|
2009-09-15 05:25:05 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-11 09:00:40 +08:00
|
|
|
|
if (QualifiedTemplateName *QTN = Name.getAsQualifiedTemplateName())
|
|
|
|
|
MarkUsedTemplateParameters(SemaRef, QTN->getQualifier(), OnlyDeduced,
|
|
|
|
|
Depth, Used);
|
2009-09-15 05:25:05 +08:00
|
|
|
|
if (DependentTemplateName *DTN = Name.getAsDependentTemplateName())
|
2009-10-29 08:04:11 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, DTN->getQualifier(), OnlyDeduced,
|
|
|
|
|
Depth, Used);
|
2009-09-15 05:25:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// \brief Mark the template parameters that are used by the given
|
2009-06-13 08:26:55 +08:00
|
|
|
|
/// type.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
static void
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(Sema &SemaRef, QualType T,
|
|
|
|
|
bool OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
unsigned Depth,
|
2009-09-15 05:25:05 +08:00
|
|
|
|
llvm::SmallVectorImpl<bool> &Used) {
|
|
|
|
|
if (T.isNull())
|
|
|
|
|
return;
|
|
|
|
|
|
2009-06-13 08:26:55 +08:00
|
|
|
|
// Non-dependent types have nothing deducible
|
|
|
|
|
if (!T->isDependentType())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
T = SemaRef.Context.getCanonicalType(T);
|
|
|
|
|
switch (T->getTypeClass()) {
|
|
|
|
|
case Type::Pointer:
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef,
|
|
|
|
|
cast<PointerType>(T)->getPointeeType(),
|
|
|
|
|
OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
Depth,
|
2009-09-15 05:25:05 +08:00
|
|
|
|
Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Type::BlockPointer:
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef,
|
|
|
|
|
cast<BlockPointerType>(T)->getPointeeType(),
|
|
|
|
|
OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
Depth,
|
2009-09-15 05:25:05 +08:00
|
|
|
|
Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Type::LValueReference:
|
|
|
|
|
case Type::RValueReference:
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef,
|
|
|
|
|
cast<ReferenceType>(T)->getPointeeType(),
|
|
|
|
|
OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
Depth,
|
2009-09-15 05:25:05 +08:00
|
|
|
|
Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Type::MemberPointer: {
|
|
|
|
|
const MemberPointerType *MemPtr = cast<MemberPointerType>(T.getTypePtr());
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, MemPtr->getPointeeType(), OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
Depth, Used);
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, QualType(MemPtr->getClass(), 0),
|
2009-10-29 08:04:11 +08:00
|
|
|
|
OnlyDeduced, Depth, Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case Type::DependentSizedArray:
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef,
|
|
|
|
|
cast<DependentSizedArrayType>(T)->getSizeExpr(),
|
2009-10-29 08:04:11 +08:00
|
|
|
|
OnlyDeduced, Depth, Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
// Fall through to check the element type
|
|
|
|
|
|
|
|
|
|
case Type::ConstantArray:
|
|
|
|
|
case Type::IncompleteArray:
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef,
|
|
|
|
|
cast<ArrayType>(T)->getElementType(),
|
2009-10-29 08:04:11 +08:00
|
|
|
|
OnlyDeduced, Depth, Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Type::Vector:
|
|
|
|
|
case Type::ExtVector:
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef,
|
|
|
|
|
cast<VectorType>(T)->getElementType(),
|
2009-10-29 08:04:11 +08:00
|
|
|
|
OnlyDeduced, Depth, Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2009-06-18 05:51:59 +08:00
|
|
|
|
case Type::DependentSizedExtVector: {
|
|
|
|
|
const DependentSizedExtVectorType *VecType
|
2009-06-19 02:45:36 +08:00
|
|
|
|
= cast<DependentSizedExtVectorType>(T);
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, VecType->getElementType(), OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
Depth, Used);
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, VecType->getSizeExpr(), OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
Depth, Used);
|
2009-06-18 05:51:59 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-13 08:26:55 +08:00
|
|
|
|
case Type::FunctionProto: {
|
2009-06-19 02:45:36 +08:00
|
|
|
|
const FunctionProtoType *Proto = cast<FunctionProtoType>(T);
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, Proto->getResultType(), OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
Depth, Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
for (unsigned I = 0, N = Proto->getNumArgs(); I != N; ++I)
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, Proto->getArgType(I), OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
Depth, Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-29 08:04:11 +08:00
|
|
|
|
case Type::TemplateTypeParm: {
|
|
|
|
|
const TemplateTypeParmType *TTP = cast<TemplateTypeParmType>(T);
|
|
|
|
|
if (TTP->getDepth() == Depth)
|
|
|
|
|
Used[TTP->getIndex()] = true;
|
2009-06-13 08:26:55 +08:00
|
|
|
|
break;
|
2009-10-29 08:04:11 +08:00
|
|
|
|
}
|
2009-06-13 08:26:55 +08:00
|
|
|
|
|
2010-04-27 08:57:59 +08:00
|
|
|
|
case Type::InjectedClassName:
|
|
|
|
|
T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
|
|
|
|
|
// fall through
|
|
|
|
|
|
2009-06-13 08:26:55 +08:00
|
|
|
|
case Type::TemplateSpecialization: {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
const TemplateSpecializationType *Spec
|
2009-06-19 02:45:36 +08:00
|
|
|
|
= cast<TemplateSpecializationType>(T);
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, Spec->getTemplateName(), OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
Depth, Used);
|
2009-09-15 05:25:05 +08:00
|
|
|
|
for (unsigned I = 0, N = Spec->getNumArgs(); I != N; ++I)
|
2009-10-29 08:04:11 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, Spec->getArg(I), OnlyDeduced, Depth,
|
|
|
|
|
Used);
|
2009-09-15 05:25:05 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-09-15 05:25:05 +08:00
|
|
|
|
case Type::Complex:
|
|
|
|
|
if (!OnlyDeduced)
|
|
|
|
|
MarkUsedTemplateParameters(SemaRef,
|
|
|
|
|
cast<ComplexType>(T)->getElementType(),
|
2009-10-29 08:04:11 +08:00
|
|
|
|
OnlyDeduced, Depth, Used);
|
2009-09-15 05:25:05 +08:00
|
|
|
|
break;
|
2009-06-13 08:26:55 +08:00
|
|
|
|
|
2010-04-01 01:34:00 +08:00
|
|
|
|
case Type::DependentName:
|
2009-09-15 05:25:05 +08:00
|
|
|
|
if (!OnlyDeduced)
|
|
|
|
|
MarkUsedTemplateParameters(SemaRef,
|
2010-04-01 01:34:00 +08:00
|
|
|
|
cast<DependentNameType>(T)->getQualifier(),
|
2009-10-29 08:04:11 +08:00
|
|
|
|
OnlyDeduced, Depth, Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2010-06-11 08:33:02 +08:00
|
|
|
|
case Type::DependentTemplateSpecialization: {
|
|
|
|
|
const DependentTemplateSpecializationType *Spec
|
|
|
|
|
= cast<DependentTemplateSpecializationType>(T);
|
|
|
|
|
if (!OnlyDeduced)
|
|
|
|
|
MarkUsedTemplateParameters(SemaRef, Spec->getQualifier(),
|
|
|
|
|
OnlyDeduced, Depth, Used);
|
|
|
|
|
for (unsigned I = 0, N = Spec->getNumArgs(); I != N; ++I)
|
|
|
|
|
MarkUsedTemplateParameters(SemaRef, Spec->getArg(I), OnlyDeduced, Depth,
|
|
|
|
|
Used);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-02 07:49:17 +08:00
|
|
|
|
case Type::TypeOf:
|
|
|
|
|
if (!OnlyDeduced)
|
|
|
|
|
MarkUsedTemplateParameters(SemaRef,
|
|
|
|
|
cast<TypeOfType>(T)->getUnderlyingType(),
|
|
|
|
|
OnlyDeduced, Depth, Used);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Type::TypeOfExpr:
|
|
|
|
|
if (!OnlyDeduced)
|
|
|
|
|
MarkUsedTemplateParameters(SemaRef,
|
|
|
|
|
cast<TypeOfExprType>(T)->getUnderlyingExpr(),
|
|
|
|
|
OnlyDeduced, Depth, Used);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Type::Decltype:
|
|
|
|
|
if (!OnlyDeduced)
|
|
|
|
|
MarkUsedTemplateParameters(SemaRef,
|
|
|
|
|
cast<DecltypeType>(T)->getUnderlyingExpr(),
|
|
|
|
|
OnlyDeduced, Depth, Used);
|
|
|
|
|
break;
|
|
|
|
|
|
2010-12-20 10:24:11 +08:00
|
|
|
|
case Type::PackExpansion:
|
|
|
|
|
MarkUsedTemplateParameters(SemaRef,
|
|
|
|
|
cast<PackExpansionType>(T)->getPattern(),
|
|
|
|
|
OnlyDeduced, Depth, Used);
|
|
|
|
|
break;
|
|
|
|
|
|
2009-09-15 05:25:05 +08:00
|
|
|
|
// None of these types have any template parameters in them.
|
2009-06-13 08:26:55 +08:00
|
|
|
|
case Type::Builtin:
|
|
|
|
|
case Type::VariableArray:
|
|
|
|
|
case Type::FunctionNoProto:
|
|
|
|
|
case Type::Record:
|
|
|
|
|
case Type::Enum:
|
|
|
|
|
case Type::ObjCInterface:
|
2010-05-15 19:32:37 +08:00
|
|
|
|
case Type::ObjCObject:
|
2009-06-18 06:40:22 +08:00
|
|
|
|
case Type::ObjCObjectPointer:
|
2009-12-05 06:46:56 +08:00
|
|
|
|
case Type::UnresolvedUsing:
|
2009-06-13 08:26:55 +08:00
|
|
|
|
#define TYPE(Class, Base)
|
|
|
|
|
#define ABSTRACT_TYPE(Class, Base)
|
|
|
|
|
#define DEPENDENT_TYPE(Class, Base)
|
|
|
|
|
#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
|
|
|
|
|
#include "clang/AST/TypeNodes.def"
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-15 05:25:05 +08:00
|
|
|
|
/// \brief Mark the template parameters that are used by this
|
2009-06-13 08:26:55 +08:00
|
|
|
|
/// template argument.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
static void
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(Sema &SemaRef,
|
|
|
|
|
const TemplateArgument &TemplateArg,
|
|
|
|
|
bool OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
unsigned Depth,
|
2009-09-15 05:25:05 +08:00
|
|
|
|
llvm::SmallVectorImpl<bool> &Used) {
|
2009-06-13 08:26:55 +08:00
|
|
|
|
switch (TemplateArg.getKind()) {
|
|
|
|
|
case TemplateArgument::Null:
|
|
|
|
|
case TemplateArgument::Integral:
|
2009-11-11 09:00:40 +08:00
|
|
|
|
case TemplateArgument::Declaration:
|
2009-06-13 08:26:55 +08:00
|
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
2009-06-13 08:26:55 +08:00
|
|
|
|
case TemplateArgument::Type:
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, TemplateArg.getAsType(), OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
Depth, Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2009-11-11 09:00:40 +08:00
|
|
|
|
case TemplateArgument::Template:
|
|
|
|
|
MarkUsedTemplateParameters(SemaRef, TemplateArg.getAsTemplate(),
|
|
|
|
|
OnlyDeduced, Depth, Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TemplateArgument::Expression:
|
2009-09-15 05:25:05 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, TemplateArg.getAsExpr(), OnlyDeduced,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
Depth, Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
break;
|
2009-09-15 05:25:05 +08:00
|
|
|
|
|
2009-06-16 01:04:53 +08:00
|
|
|
|
case TemplateArgument::Pack:
|
2009-09-15 05:25:05 +08:00
|
|
|
|
for (TemplateArgument::pack_iterator P = TemplateArg.pack_begin(),
|
|
|
|
|
PEnd = TemplateArg.pack_end();
|
|
|
|
|
P != PEnd; ++P)
|
2009-10-29 08:04:11 +08:00
|
|
|
|
MarkUsedTemplateParameters(SemaRef, *P, OnlyDeduced, Depth, Used);
|
2009-06-16 01:04:53 +08:00
|
|
|
|
break;
|
2009-06-13 08:26:55 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// \brief Mark the template parameters can be deduced by the given
|
|
|
|
|
/// template argument list.
|
|
|
|
|
///
|
|
|
|
|
/// \param TemplateArgs the template argument list from which template
|
|
|
|
|
/// parameters will be deduced.
|
|
|
|
|
///
|
|
|
|
|
/// \param Deduced a bit vector whose elements will be set to \c true
|
|
|
|
|
/// to indicate when the corresponding template parameter will be
|
|
|
|
|
/// deduced.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
void
|
2009-09-15 05:25:05 +08:00
|
|
|
|
Sema::MarkUsedTemplateParameters(const TemplateArgumentList &TemplateArgs,
|
2009-10-29 08:04:11 +08:00
|
|
|
|
bool OnlyDeduced, unsigned Depth,
|
2009-09-15 05:25:05 +08:00
|
|
|
|
llvm::SmallVectorImpl<bool> &Used) {
|
2009-06-13 08:26:55 +08:00
|
|
|
|
for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
|
2009-10-29 08:04:11 +08:00
|
|
|
|
::MarkUsedTemplateParameters(*this, TemplateArgs[I], OnlyDeduced,
|
|
|
|
|
Depth, Used);
|
2009-06-13 08:26:55 +08:00
|
|
|
|
}
|
2009-09-19 07:21:38 +08:00
|
|
|
|
|
|
|
|
|
/// \brief Marks all of the template parameters that will be deduced by a
|
|
|
|
|
/// call to the given function template.
|
2010-03-28 10:42:43 +08:00
|
|
|
|
void
|
|
|
|
|
Sema::MarkDeducedTemplateParameters(FunctionTemplateDecl *FunctionTemplate,
|
|
|
|
|
llvm::SmallVectorImpl<bool> &Deduced) {
|
2009-09-19 07:21:38 +08:00
|
|
|
|
TemplateParameterList *TemplateParams
|
|
|
|
|
= FunctionTemplate->getTemplateParameters();
|
|
|
|
|
Deduced.clear();
|
|
|
|
|
Deduced.resize(TemplateParams->size());
|
|
|
|
|
|
|
|
|
|
FunctionDecl *Function = FunctionTemplate->getTemplatedDecl();
|
|
|
|
|
for (unsigned I = 0, N = Function->getNumParams(); I != N; ++I)
|
|
|
|
|
::MarkUsedTemplateParameters(*this, Function->getParamDecl(I)->getType(),
|
2009-10-29 08:04:11 +08:00
|
|
|
|
true, TemplateParams->getDepth(), Deduced);
|
2009-09-19 07:21:38 +08:00
|
|
|
|
}
|