2009-02-28 03:31:52 +08:00
|
|
|
//===------- SemaTemplateInstantiate.cpp - C++ Template Instantiation ------===/
|
|
|
|
//
|
|
|
|
// 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 instantiation.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===/
|
|
|
|
|
|
|
|
#include "Sema.h"
|
2009-08-05 00:50:30 +08:00
|
|
|
#include "TreeTransform.h"
|
2009-11-22 09:44:31 +08:00
|
|
|
#include "Lookup.h"
|
2009-05-27 04:50:29 +08:00
|
|
|
#include "clang/AST/ASTConsumer.h"
|
2009-02-28 03:31:52 +08:00
|
|
|
#include "clang/AST/ASTContext.h"
|
|
|
|
#include "clang/AST/Expr.h"
|
|
|
|
#include "clang/AST/DeclTemplate.h"
|
|
|
|
#include "clang/Parse/DeclSpec.h"
|
|
|
|
#include "clang/Basic/LangOptions.h"
|
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
|
2009-03-11 02:03:33 +08:00
|
|
|
//===----------------------------------------------------------------------===/
|
|
|
|
// Template Instantiation Support
|
|
|
|
//===----------------------------------------------------------------------===/
|
|
|
|
|
2009-08-29 04:31:08 +08:00
|
|
|
/// \brief Retrieve the template argument list(s) that should be used to
|
|
|
|
/// instantiate the definition of the given declaration.
|
2009-11-10 03:17:50 +08:00
|
|
|
///
|
|
|
|
/// \param D the declaration for which we are computing template instantiation
|
|
|
|
/// arguments.
|
|
|
|
///
|
|
|
|
/// \param Innermost if non-NULL, the innermost template argument list.
|
2010-02-05 15:33:43 +08:00
|
|
|
///
|
|
|
|
/// \param RelativeToPrimary true if we should get the template
|
|
|
|
/// arguments relative to the primary template, even when we're
|
|
|
|
/// dealing with a specialization. This is only relevant for function
|
|
|
|
/// template specializations.
|
2010-05-04 07:29:10 +08:00
|
|
|
///
|
|
|
|
/// \param Pattern If non-NULL, indicates the pattern from which we will be
|
|
|
|
/// instantiating the definition of the given declaration, \p D. This is
|
|
|
|
/// used to determine the proper set of template instantiation arguments for
|
|
|
|
/// friend function template specializations.
|
2009-08-29 01:37:35 +08:00
|
|
|
MultiLevelTemplateArgumentList
|
2009-11-10 03:17:50 +08:00
|
|
|
Sema::getTemplateInstantiationArgs(NamedDecl *D,
|
2010-02-05 15:33:43 +08:00
|
|
|
const TemplateArgumentList *Innermost,
|
2010-05-04 07:29:10 +08:00
|
|
|
bool RelativeToPrimary,
|
|
|
|
const FunctionDecl *Pattern) {
|
2009-08-29 01:37:35 +08:00
|
|
|
// Accumulate the set of template argument lists in this structure.
|
|
|
|
MultiLevelTemplateArgumentList Result;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-11-10 03:17:50 +08:00
|
|
|
if (Innermost)
|
|
|
|
Result.addOuterTemplateArguments(Innermost);
|
|
|
|
|
2009-08-29 01:37:35 +08:00
|
|
|
DeclContext *Ctx = dyn_cast<DeclContext>(D);
|
|
|
|
if (!Ctx)
|
|
|
|
Ctx = D->getDeclContext();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-29 11:16:09 +08:00
|
|
|
while (!Ctx->isFileContext()) {
|
2009-08-29 01:37:35 +08:00
|
|
|
// Add template arguments from a class template instantiation.
|
2009-09-09 23:08:12 +08:00
|
|
|
if (ClassTemplateSpecializationDecl *Spec
|
2009-08-29 01:37:35 +08:00
|
|
|
= dyn_cast<ClassTemplateSpecializationDecl>(Ctx)) {
|
|
|
|
// We're done when we hit an explicit specialization.
|
|
|
|
if (Spec->getSpecializationKind() == TSK_ExplicitSpecialization)
|
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-29 01:37:35 +08:00
|
|
|
Result.addOuterTemplateArguments(&Spec->getTemplateInstantiationArgs());
|
2009-10-14 00:30:37 +08:00
|
|
|
|
|
|
|
// If this class template specialization was instantiated from a
|
|
|
|
// specialized member that is a class template, we're done.
|
|
|
|
assert(Spec->getSpecializedTemplate() && "No class template?");
|
|
|
|
if (Spec->getSpecializedTemplate()->isMemberSpecialization())
|
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
}
|
2009-08-29 01:37:35 +08:00
|
|
|
// Add template arguments from a function template specialization.
|
2009-08-29 11:16:09 +08:00
|
|
|
else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Ctx)) {
|
2010-02-05 15:33:43 +08:00
|
|
|
if (!RelativeToPrimary &&
|
|
|
|
Function->getTemplateSpecializationKind()
|
|
|
|
== TSK_ExplicitSpecialization)
|
2009-10-14 00:30:37 +08:00
|
|
|
break;
|
|
|
|
|
2009-08-29 01:37:35 +08:00
|
|
|
if (const TemplateArgumentList *TemplateArgs
|
2009-10-14 00:30:37 +08:00
|
|
|
= Function->getTemplateSpecializationArgs()) {
|
|
|
|
// Add the template arguments for this specialization.
|
2009-08-29 01:37:35 +08:00
|
|
|
Result.addOuterTemplateArguments(TemplateArgs);
|
2009-08-29 11:16:09 +08:00
|
|
|
|
2009-10-14 00:30:37 +08:00
|
|
|
// If this function was instantiated from a specialized member that is
|
|
|
|
// a function template, we're done.
|
|
|
|
assert(Function->getPrimaryTemplate() && "No function template?");
|
|
|
|
if (Function->getPrimaryTemplate()->isMemberSpecialization())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-08-29 11:16:09 +08:00
|
|
|
// If this is a friend declaration and it declares an entity at
|
|
|
|
// namespace scope, take arguments from its lexical parent
|
2010-05-04 07:29:10 +08:00
|
|
|
// instead of its semantic parent, unless of course the pattern we're
|
|
|
|
// instantiating actually comes from the file's context!
|
2009-08-29 11:16:09 +08:00
|
|
|
if (Function->getFriendObjectKind() &&
|
2010-05-04 07:29:10 +08:00
|
|
|
Function->getDeclContext()->isFileContext() &&
|
|
|
|
(!Pattern || !Pattern->getLexicalDeclContext()->isFileContext())) {
|
2009-08-29 11:16:09 +08:00
|
|
|
Ctx = Function->getLexicalDeclContext();
|
2010-02-05 15:33:43 +08:00
|
|
|
RelativeToPrimary = false;
|
2009-08-29 11:16:09 +08:00
|
|
|
continue;
|
|
|
|
}
|
2009-08-29 01:37:35 +08:00
|
|
|
}
|
2009-08-29 11:16:09 +08:00
|
|
|
|
|
|
|
Ctx = Ctx->getParent();
|
2010-02-05 15:33:43 +08:00
|
|
|
RelativeToPrimary = false;
|
2009-05-15 07:26:13 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-29 01:37:35 +08:00
|
|
|
return Result;
|
2009-05-15 07:26:13 +08:00
|
|
|
}
|
|
|
|
|
2009-11-12 05:54:23 +08:00
|
|
|
bool Sema::ActiveTemplateInstantiation::isInstantiationRecord() const {
|
|
|
|
switch (Kind) {
|
|
|
|
case TemplateInstantiation:
|
|
|
|
case DefaultTemplateArgumentInstantiation:
|
|
|
|
case DefaultFunctionArgumentInstantiation:
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case ExplicitTemplateArgumentSubstitution:
|
|
|
|
case DeducedTemplateArgumentSubstitution:
|
|
|
|
case PriorTemplateArgumentSubstitution:
|
|
|
|
case DefaultTemplateArgumentChecking:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-03-10 08:06:19 +08:00
|
|
|
Sema::InstantiatingTemplate::
|
|
|
|
InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
|
2009-05-19 01:01:57 +08:00
|
|
|
Decl *Entity,
|
2009-03-10 08:06:19 +08:00
|
|
|
SourceRange InstantiationRange)
|
|
|
|
: SemaRef(SemaRef) {
|
2009-03-11 04:44:00 +08:00
|
|
|
|
|
|
|
Invalid = CheckInstantiationDepth(PointOfInstantiation,
|
|
|
|
InstantiationRange);
|
|
|
|
if (!Invalid) {
|
|
|
|
ActiveTemplateInstantiation Inst;
|
|
|
|
Inst.Kind = ActiveTemplateInstantiation::TemplateInstantiation;
|
|
|
|
Inst.PointOfInstantiation = PointOfInstantiation;
|
|
|
|
Inst.Entity = reinterpret_cast<uintptr_t>(Entity);
|
2009-03-13 02:36:18 +08:00
|
|
|
Inst.TemplateArgs = 0;
|
|
|
|
Inst.NumTemplateArgs = 0;
|
2009-03-11 04:44:00 +08:00
|
|
|
Inst.InstantiationRange = InstantiationRange;
|
|
|
|
SemaRef.ActiveTemplateInstantiations.push_back(Inst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef,
|
2009-03-11 04:44:00 +08:00
|
|
|
SourceLocation PointOfInstantiation,
|
|
|
|
TemplateDecl *Template,
|
|
|
|
const TemplateArgument *TemplateArgs,
|
|
|
|
unsigned NumTemplateArgs,
|
|
|
|
SourceRange InstantiationRange)
|
|
|
|
: SemaRef(SemaRef) {
|
|
|
|
|
|
|
|
Invalid = CheckInstantiationDepth(PointOfInstantiation,
|
|
|
|
InstantiationRange);
|
|
|
|
if (!Invalid) {
|
2009-03-10 08:06:19 +08:00
|
|
|
ActiveTemplateInstantiation Inst;
|
2009-09-09 23:08:12 +08:00
|
|
|
Inst.Kind
|
2009-03-11 04:44:00 +08:00
|
|
|
= ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation;
|
2009-03-10 08:06:19 +08:00
|
|
|
Inst.PointOfInstantiation = PointOfInstantiation;
|
2009-03-11 04:44:00 +08:00
|
|
|
Inst.Entity = reinterpret_cast<uintptr_t>(Template);
|
|
|
|
Inst.TemplateArgs = TemplateArgs;
|
|
|
|
Inst.NumTemplateArgs = NumTemplateArgs;
|
2009-03-10 08:06:19 +08:00
|
|
|
Inst.InstantiationRange = InstantiationRange;
|
|
|
|
SemaRef.ActiveTemplateInstantiations.push_back(Inst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef,
|
2009-07-02 06:01:06 +08:00
|
|
|
SourceLocation PointOfInstantiation,
|
|
|
|
FunctionTemplateDecl *FunctionTemplate,
|
|
|
|
const TemplateArgument *TemplateArgs,
|
|
|
|
unsigned NumTemplateArgs,
|
|
|
|
ActiveTemplateInstantiation::InstantiationKind Kind,
|
|
|
|
SourceRange InstantiationRange)
|
|
|
|
: SemaRef(SemaRef) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-02 06:01:06 +08:00
|
|
|
Invalid = CheckInstantiationDepth(PointOfInstantiation,
|
|
|
|
InstantiationRange);
|
|
|
|
if (!Invalid) {
|
|
|
|
ActiveTemplateInstantiation Inst;
|
|
|
|
Inst.Kind = Kind;
|
|
|
|
Inst.PointOfInstantiation = PointOfInstantiation;
|
|
|
|
Inst.Entity = reinterpret_cast<uintptr_t>(FunctionTemplate);
|
|
|
|
Inst.TemplateArgs = TemplateArgs;
|
|
|
|
Inst.NumTemplateArgs = NumTemplateArgs;
|
|
|
|
Inst.InstantiationRange = InstantiationRange;
|
|
|
|
SemaRef.ActiveTemplateInstantiations.push_back(Inst);
|
2009-11-12 05:54:23 +08:00
|
|
|
|
|
|
|
if (!Inst.isInstantiationRecord())
|
|
|
|
++SemaRef.NonInstantiationEntries;
|
2009-07-02 06:01:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef,
|
2009-06-11 07:47:09 +08:00
|
|
|
SourceLocation PointOfInstantiation,
|
|
|
|
ClassTemplatePartialSpecializationDecl *PartialSpec,
|
|
|
|
const TemplateArgument *TemplateArgs,
|
|
|
|
unsigned NumTemplateArgs,
|
|
|
|
SourceRange InstantiationRange)
|
|
|
|
: SemaRef(SemaRef) {
|
|
|
|
|
2009-11-12 05:54:23 +08:00
|
|
|
Invalid = false;
|
|
|
|
|
|
|
|
ActiveTemplateInstantiation Inst;
|
|
|
|
Inst.Kind = ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution;
|
|
|
|
Inst.PointOfInstantiation = PointOfInstantiation;
|
|
|
|
Inst.Entity = reinterpret_cast<uintptr_t>(PartialSpec);
|
|
|
|
Inst.TemplateArgs = TemplateArgs;
|
|
|
|
Inst.NumTemplateArgs = NumTemplateArgs;
|
|
|
|
Inst.InstantiationRange = InstantiationRange;
|
|
|
|
SemaRef.ActiveTemplateInstantiations.push_back(Inst);
|
|
|
|
|
|
|
|
assert(!Inst.isInstantiationRecord());
|
|
|
|
++SemaRef.NonInstantiationEntries;
|
2009-06-11 07:47:09 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
Sema::InstantiatingTemplate::InstantiatingTemplate(Sema &SemaRef,
|
2009-11-12 03:13:48 +08:00
|
|
|
SourceLocation PointOfInstantiation,
|
2009-09-05 13:14:19 +08:00
|
|
|
ParmVarDecl *Param,
|
|
|
|
const TemplateArgument *TemplateArgs,
|
|
|
|
unsigned NumTemplateArgs,
|
|
|
|
SourceRange InstantiationRange)
|
|
|
|
: SemaRef(SemaRef) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-11-12 03:13:48 +08:00
|
|
|
Invalid = CheckInstantiationDepth(PointOfInstantiation, InstantiationRange);
|
2009-09-05 13:14:19 +08:00
|
|
|
|
|
|
|
if (!Invalid) {
|
|
|
|
ActiveTemplateInstantiation Inst;
|
|
|
|
Inst.Kind
|
|
|
|
= ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation;
|
2009-11-12 03:13:48 +08:00
|
|
|
Inst.PointOfInstantiation = PointOfInstantiation;
|
|
|
|
Inst.Entity = reinterpret_cast<uintptr_t>(Param);
|
|
|
|
Inst.TemplateArgs = TemplateArgs;
|
|
|
|
Inst.NumTemplateArgs = NumTemplateArgs;
|
|
|
|
Inst.InstantiationRange = InstantiationRange;
|
|
|
|
SemaRef.ActiveTemplateInstantiations.push_back(Inst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Sema::InstantiatingTemplate::
|
|
|
|
InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
|
|
|
|
TemplateDecl *Template,
|
|
|
|
NonTypeTemplateParmDecl *Param,
|
|
|
|
const TemplateArgument *TemplateArgs,
|
|
|
|
unsigned NumTemplateArgs,
|
|
|
|
SourceRange InstantiationRange) : SemaRef(SemaRef) {
|
2009-11-12 05:54:23 +08:00
|
|
|
Invalid = false;
|
2009-11-12 03:13:48 +08:00
|
|
|
|
2009-11-12 05:54:23 +08:00
|
|
|
ActiveTemplateInstantiation Inst;
|
|
|
|
Inst.Kind = ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution;
|
|
|
|
Inst.PointOfInstantiation = PointOfInstantiation;
|
|
|
|
Inst.Template = Template;
|
|
|
|
Inst.Entity = reinterpret_cast<uintptr_t>(Param);
|
|
|
|
Inst.TemplateArgs = TemplateArgs;
|
|
|
|
Inst.NumTemplateArgs = NumTemplateArgs;
|
|
|
|
Inst.InstantiationRange = InstantiationRange;
|
|
|
|
SemaRef.ActiveTemplateInstantiations.push_back(Inst);
|
|
|
|
|
|
|
|
assert(!Inst.isInstantiationRecord());
|
|
|
|
++SemaRef.NonInstantiationEntries;
|
2009-11-12 03:13:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Sema::InstantiatingTemplate::
|
|
|
|
InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
|
|
|
|
TemplateDecl *Template,
|
|
|
|
TemplateTemplateParmDecl *Param,
|
|
|
|
const TemplateArgument *TemplateArgs,
|
|
|
|
unsigned NumTemplateArgs,
|
|
|
|
SourceRange InstantiationRange) : SemaRef(SemaRef) {
|
2009-11-12 05:54:23 +08:00
|
|
|
Invalid = false;
|
|
|
|
ActiveTemplateInstantiation Inst;
|
|
|
|
Inst.Kind = ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution;
|
|
|
|
Inst.PointOfInstantiation = PointOfInstantiation;
|
|
|
|
Inst.Template = Template;
|
|
|
|
Inst.Entity = reinterpret_cast<uintptr_t>(Param);
|
|
|
|
Inst.TemplateArgs = TemplateArgs;
|
|
|
|
Inst.NumTemplateArgs = NumTemplateArgs;
|
|
|
|
Inst.InstantiationRange = InstantiationRange;
|
|
|
|
SemaRef.ActiveTemplateInstantiations.push_back(Inst);
|
2009-11-12 03:13:48 +08:00
|
|
|
|
2009-11-12 05:54:23 +08:00
|
|
|
assert(!Inst.isInstantiationRecord());
|
|
|
|
++SemaRef.NonInstantiationEntries;
|
|
|
|
}
|
|
|
|
|
|
|
|
Sema::InstantiatingTemplate::
|
|
|
|
InstantiatingTemplate(Sema &SemaRef, SourceLocation PointOfInstantiation,
|
|
|
|
TemplateDecl *Template,
|
|
|
|
NamedDecl *Param,
|
|
|
|
const TemplateArgument *TemplateArgs,
|
|
|
|
unsigned NumTemplateArgs,
|
|
|
|
SourceRange InstantiationRange) : SemaRef(SemaRef) {
|
|
|
|
Invalid = false;
|
|
|
|
|
|
|
|
ActiveTemplateInstantiation Inst;
|
|
|
|
Inst.Kind = ActiveTemplateInstantiation::DefaultTemplateArgumentChecking;
|
|
|
|
Inst.PointOfInstantiation = PointOfInstantiation;
|
|
|
|
Inst.Template = Template;
|
|
|
|
Inst.Entity = reinterpret_cast<uintptr_t>(Param);
|
|
|
|
Inst.TemplateArgs = TemplateArgs;
|
|
|
|
Inst.NumTemplateArgs = NumTemplateArgs;
|
|
|
|
Inst.InstantiationRange = InstantiationRange;
|
|
|
|
SemaRef.ActiveTemplateInstantiations.push_back(Inst);
|
|
|
|
|
|
|
|
assert(!Inst.isInstantiationRecord());
|
|
|
|
++SemaRef.NonInstantiationEntries;
|
2009-09-05 13:14:19 +08:00
|
|
|
}
|
|
|
|
|
2009-05-19 01:01:57 +08:00
|
|
|
void Sema::InstantiatingTemplate::Clear() {
|
|
|
|
if (!Invalid) {
|
2009-11-12 05:54:23 +08:00
|
|
|
if (!SemaRef.ActiveTemplateInstantiations.back().isInstantiationRecord()) {
|
|
|
|
assert(SemaRef.NonInstantiationEntries > 0);
|
|
|
|
--SemaRef.NonInstantiationEntries;
|
|
|
|
}
|
|
|
|
|
2009-03-10 08:06:19 +08:00
|
|
|
SemaRef.ActiveTemplateInstantiations.pop_back();
|
2009-05-19 01:01:57 +08:00
|
|
|
Invalid = true;
|
|
|
|
}
|
2009-03-10 08:06:19 +08:00
|
|
|
}
|
|
|
|
|
2009-03-11 04:44:00 +08:00
|
|
|
bool Sema::InstantiatingTemplate::CheckInstantiationDepth(
|
|
|
|
SourceLocation PointOfInstantiation,
|
|
|
|
SourceRange InstantiationRange) {
|
2009-11-12 05:54:23 +08:00
|
|
|
assert(SemaRef.NonInstantiationEntries <=
|
|
|
|
SemaRef.ActiveTemplateInstantiations.size());
|
|
|
|
if ((SemaRef.ActiveTemplateInstantiations.size() -
|
|
|
|
SemaRef.NonInstantiationEntries)
|
|
|
|
<= SemaRef.getLangOptions().InstantiationDepth)
|
2009-03-11 04:44:00 +08:00
|
|
|
return false;
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
SemaRef.Diag(PointOfInstantiation,
|
2009-03-11 04:44:00 +08:00
|
|
|
diag::err_template_recursion_depth_exceeded)
|
|
|
|
<< SemaRef.getLangOptions().InstantiationDepth
|
|
|
|
<< InstantiationRange;
|
|
|
|
SemaRef.Diag(PointOfInstantiation, diag::note_template_recursion_depth)
|
|
|
|
<< SemaRef.getLangOptions().InstantiationDepth;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-03-11 02:03:33 +08:00
|
|
|
/// \brief Prints the current instantiation stack through a series of
|
|
|
|
/// notes.
|
|
|
|
void Sema::PrintInstantiationStack() {
|
2010-04-20 15:18:24 +08:00
|
|
|
// Determine which template instantiations to skip, if any.
|
|
|
|
unsigned SkipStart = ActiveTemplateInstantiations.size(), SkipEnd = SkipStart;
|
|
|
|
unsigned Limit = Diags.getTemplateBacktraceLimit();
|
|
|
|
if (Limit && Limit < ActiveTemplateInstantiations.size()) {
|
|
|
|
SkipStart = Limit / 2 + Limit % 2;
|
|
|
|
SkipEnd = ActiveTemplateInstantiations.size() - Limit / 2;
|
|
|
|
}
|
|
|
|
|
2009-07-02 06:01:06 +08:00
|
|
|
// FIXME: In all of these cases, we need to show the template arguments
|
2010-04-20 15:18:24 +08:00
|
|
|
unsigned InstantiationIdx = 0;
|
2009-03-11 02:03:33 +08:00
|
|
|
for (llvm::SmallVector<ActiveTemplateInstantiation, 16>::reverse_iterator
|
|
|
|
Active = ActiveTemplateInstantiations.rbegin(),
|
|
|
|
ActiveEnd = ActiveTemplateInstantiations.rend();
|
|
|
|
Active != ActiveEnd;
|
2010-04-20 15:18:24 +08:00
|
|
|
++Active, ++InstantiationIdx) {
|
|
|
|
// Skip this instantiation?
|
|
|
|
if (InstantiationIdx >= SkipStart && InstantiationIdx < SkipEnd) {
|
|
|
|
if (InstantiationIdx == SkipStart) {
|
|
|
|
// Note that we're skipping instantiations.
|
|
|
|
Diags.Report(FullSourceLoc(Active->PointOfInstantiation, SourceMgr),
|
|
|
|
diag::note_instantiation_contexts_suppressed)
|
|
|
|
<< unsigned(ActiveTemplateInstantiations.size() - Limit);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-03-11 04:44:00 +08:00
|
|
|
switch (Active->Kind) {
|
|
|
|
case ActiveTemplateInstantiation::TemplateInstantiation: {
|
2009-05-19 01:01:57 +08:00
|
|
|
Decl *D = reinterpret_cast<Decl *>(Active->Entity);
|
|
|
|
if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
|
|
|
|
unsigned DiagID = diag::note_template_member_class_here;
|
|
|
|
if (isa<ClassTemplateSpecializationDecl>(Record))
|
|
|
|
DiagID = diag::note_template_class_instantiation_here;
|
2009-09-09 23:08:12 +08:00
|
|
|
Diags.Report(FullSourceLoc(Active->PointOfInstantiation, SourceMgr),
|
2009-05-19 01:01:57 +08:00
|
|
|
DiagID)
|
|
|
|
<< Context.getTypeDeclType(Record)
|
|
|
|
<< Active->InstantiationRange;
|
2009-07-25 04:34:43 +08:00
|
|
|
} else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
|
2009-06-26 08:10:03 +08:00
|
|
|
unsigned DiagID;
|
|
|
|
if (Function->getPrimaryTemplate())
|
|
|
|
DiagID = diag::note_function_template_spec_here;
|
|
|
|
else
|
|
|
|
DiagID = diag::note_template_member_function_here;
|
2009-09-09 23:08:12 +08:00
|
|
|
Diags.Report(FullSourceLoc(Active->PointOfInstantiation, SourceMgr),
|
2009-05-19 01:01:57 +08:00
|
|
|
DiagID)
|
|
|
|
<< Function
|
|
|
|
<< Active->InstantiationRange;
|
2009-07-25 04:34:43 +08:00
|
|
|
} else {
|
|
|
|
Diags.Report(FullSourceLoc(Active->PointOfInstantiation, SourceMgr),
|
|
|
|
diag::note_template_static_data_member_def_here)
|
|
|
|
<< cast<VarDecl>(D)
|
|
|
|
<< Active->InstantiationRange;
|
2009-05-19 01:01:57 +08:00
|
|
|
}
|
2009-03-11 04:44:00 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation: {
|
|
|
|
TemplateDecl *Template = cast<TemplateDecl>((Decl *)Active->Entity);
|
|
|
|
std::string TemplateArgsStr
|
2009-03-31 06:58:21 +08:00
|
|
|
= TemplateSpecializationType::PrintTemplateArgumentList(
|
2009-09-09 23:08:12 +08:00
|
|
|
Active->TemplateArgs,
|
2009-05-30 04:38:28 +08:00
|
|
|
Active->NumTemplateArgs,
|
|
|
|
Context.PrintingPolicy);
|
2009-03-11 04:44:00 +08:00
|
|
|
Diags.Report(FullSourceLoc(Active->PointOfInstantiation, SourceMgr),
|
|
|
|
diag::note_default_arg_instantiation_here)
|
|
|
|
<< (Template->getNameAsString() + TemplateArgsStr)
|
|
|
|
<< Active->InstantiationRange;
|
|
|
|
break;
|
|
|
|
}
|
2009-06-11 07:47:09 +08:00
|
|
|
|
2009-07-02 06:01:06 +08:00
|
|
|
case ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution: {
|
2009-09-09 23:08:12 +08:00
|
|
|
FunctionTemplateDecl *FnTmpl
|
2009-07-02 06:01:06 +08:00
|
|
|
= cast<FunctionTemplateDecl>((Decl *)Active->Entity);
|
2009-06-11 07:47:09 +08:00
|
|
|
Diags.Report(FullSourceLoc(Active->PointOfInstantiation, SourceMgr),
|
2009-07-02 06:01:06 +08:00
|
|
|
diag::note_explicit_template_arg_substitution_here)
|
2010-03-31 04:35:20 +08:00
|
|
|
<< FnTmpl
|
|
|
|
<< getTemplateArgumentBindingsText(FnTmpl->getTemplateParameters(),
|
|
|
|
Active->TemplateArgs,
|
|
|
|
Active->NumTemplateArgs)
|
|
|
|
<< Active->InstantiationRange;
|
2009-06-11 07:47:09 +08:00
|
|
|
break;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-02 06:01:06 +08:00
|
|
|
case ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution:
|
|
|
|
if (ClassTemplatePartialSpecializationDecl *PartialSpec
|
|
|
|
= dyn_cast<ClassTemplatePartialSpecializationDecl>(
|
|
|
|
(Decl *)Active->Entity)) {
|
|
|
|
Diags.Report(FullSourceLoc(Active->PointOfInstantiation, SourceMgr),
|
|
|
|
diag::note_partial_spec_deduct_instantiation_here)
|
|
|
|
<< Context.getTypeDeclType(PartialSpec)
|
2010-03-31 04:35:20 +08:00
|
|
|
<< getTemplateArgumentBindingsText(
|
|
|
|
PartialSpec->getTemplateParameters(),
|
|
|
|
Active->TemplateArgs,
|
|
|
|
Active->NumTemplateArgs)
|
2009-07-02 06:01:06 +08:00
|
|
|
<< Active->InstantiationRange;
|
|
|
|
} else {
|
|
|
|
FunctionTemplateDecl *FnTmpl
|
|
|
|
= cast<FunctionTemplateDecl>((Decl *)Active->Entity);
|
|
|
|
Diags.Report(FullSourceLoc(Active->PointOfInstantiation, SourceMgr),
|
|
|
|
diag::note_function_template_deduction_instantiation_here)
|
2010-03-31 04:35:20 +08:00
|
|
|
<< FnTmpl
|
|
|
|
<< getTemplateArgumentBindingsText(FnTmpl->getTemplateParameters(),
|
|
|
|
Active->TemplateArgs,
|
|
|
|
Active->NumTemplateArgs)
|
|
|
|
<< Active->InstantiationRange;
|
2009-07-02 06:01:06 +08:00
|
|
|
}
|
|
|
|
break;
|
2009-06-11 07:47:09 +08:00
|
|
|
|
2009-09-05 13:14:19 +08:00
|
|
|
case ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation: {
|
|
|
|
ParmVarDecl *Param = cast<ParmVarDecl>((Decl *)Active->Entity);
|
|
|
|
FunctionDecl *FD = cast<FunctionDecl>(Param->getDeclContext());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-09-05 13:14:19 +08:00
|
|
|
std::string TemplateArgsStr
|
|
|
|
= TemplateSpecializationType::PrintTemplateArgumentList(
|
2009-09-09 23:08:12 +08:00
|
|
|
Active->TemplateArgs,
|
2009-09-05 13:14:19 +08:00
|
|
|
Active->NumTemplateArgs,
|
|
|
|
Context.PrintingPolicy);
|
|
|
|
Diags.Report(FullSourceLoc(Active->PointOfInstantiation, SourceMgr),
|
|
|
|
diag::note_default_function_arg_instantiation_here)
|
2009-09-05 13:38:54 +08:00
|
|
|
<< (FD->getNameAsString() + TemplateArgsStr)
|
2009-09-05 13:14:19 +08:00
|
|
|
<< Active->InstantiationRange;
|
|
|
|
break;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-11-12 03:13:48 +08:00
|
|
|
case ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution: {
|
|
|
|
NamedDecl *Parm = cast<NamedDecl>((Decl *)Active->Entity);
|
|
|
|
std::string Name;
|
|
|
|
if (!Parm->getName().empty())
|
|
|
|
Name = std::string(" '") + Parm->getName().str() + "'";
|
|
|
|
|
|
|
|
Diags.Report(FullSourceLoc(Active->PointOfInstantiation, SourceMgr),
|
|
|
|
diag::note_prior_template_arg_substitution)
|
|
|
|
<< isa<TemplateTemplateParmDecl>(Parm)
|
|
|
|
<< Name
|
|
|
|
<< getTemplateArgumentBindingsText(
|
|
|
|
Active->Template->getTemplateParameters(),
|
|
|
|
Active->TemplateArgs,
|
|
|
|
Active->NumTemplateArgs)
|
|
|
|
<< Active->InstantiationRange;
|
|
|
|
break;
|
|
|
|
}
|
2009-11-12 05:54:23 +08:00
|
|
|
|
|
|
|
case ActiveTemplateInstantiation::DefaultTemplateArgumentChecking: {
|
|
|
|
Diags.Report(FullSourceLoc(Active->PointOfInstantiation, SourceMgr),
|
|
|
|
diag::note_template_default_arg_checking)
|
|
|
|
<< getTemplateArgumentBindingsText(
|
|
|
|
Active->Template->getTemplateParameters(),
|
|
|
|
Active->TemplateArgs,
|
|
|
|
Active->NumTemplateArgs)
|
|
|
|
<< Active->InstantiationRange;
|
|
|
|
break;
|
|
|
|
}
|
2009-03-11 04:44:00 +08:00
|
|
|
}
|
2009-03-11 02:03:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-14 15:33:30 +08:00
|
|
|
bool Sema::isSFINAEContext() const {
|
|
|
|
using llvm::SmallVector;
|
|
|
|
for (SmallVector<ActiveTemplateInstantiation, 16>::const_reverse_iterator
|
|
|
|
Active = ActiveTemplateInstantiations.rbegin(),
|
|
|
|
ActiveEnd = ActiveTemplateInstantiations.rend();
|
|
|
|
Active != ActiveEnd;
|
2009-11-12 05:54:23 +08:00
|
|
|
++Active)
|
|
|
|
{
|
2009-06-14 15:33:30 +08:00
|
|
|
switch(Active->Kind) {
|
2009-07-02 06:01:06 +08:00
|
|
|
case ActiveTemplateInstantiation::TemplateInstantiation:
|
2009-09-05 13:14:19 +08:00
|
|
|
case ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation:
|
2009-07-02 06:01:06 +08:00
|
|
|
// This is a template instantiation, so there is no SFINAE.
|
|
|
|
return false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-14 15:33:30 +08:00
|
|
|
case ActiveTemplateInstantiation::DefaultTemplateArgumentInstantiation:
|
2009-11-12 03:13:48 +08:00
|
|
|
case ActiveTemplateInstantiation::PriorTemplateArgumentSubstitution:
|
2009-11-12 05:54:23 +08:00
|
|
|
case ActiveTemplateInstantiation::DefaultTemplateArgumentChecking:
|
2009-11-12 03:13:48 +08:00
|
|
|
// A default template argument instantiation and substitution into
|
|
|
|
// template parameters with arguments for prior parameters may or may
|
|
|
|
// not be a SFINAE context; look further up the stack.
|
2009-06-14 15:33:30 +08:00
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-02 06:01:06 +08:00
|
|
|
case ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution:
|
|
|
|
case ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution:
|
|
|
|
// We're either substitution explicitly-specified template arguments
|
|
|
|
// or deduced template arguments, so SFINAE applies.
|
|
|
|
return true;
|
2009-06-14 15:33:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-02-28 03:31:52 +08:00
|
|
|
//===----------------------------------------------------------------------===/
|
|
|
|
// Template Instantiation for Types
|
|
|
|
//===----------------------------------------------------------------------===/
|
2009-02-28 08:25:32 +08:00
|
|
|
namespace {
|
2010-05-01 02:55:50 +08:00
|
|
|
class TemplateInstantiator : public TreeTransform<TemplateInstantiator> {
|
2009-08-29 04:31:08 +08:00
|
|
|
const MultiLevelTemplateArgumentList &TemplateArgs;
|
2009-02-28 08:25:32 +08:00
|
|
|
SourceLocation Loc;
|
|
|
|
DeclarationName Entity;
|
|
|
|
|
|
|
|
public:
|
2009-08-20 15:17:43 +08:00
|
|
|
typedef TreeTransform<TemplateInstantiator> inherited;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
TemplateInstantiator(Sema &SemaRef,
|
2009-08-29 04:31:08 +08:00
|
|
|
const MultiLevelTemplateArgumentList &TemplateArgs,
|
2009-08-05 00:50:30 +08:00
|
|
|
SourceLocation Loc,
|
2009-09-09 23:08:12 +08:00
|
|
|
DeclarationName Entity)
|
|
|
|
: inherited(SemaRef), TemplateArgs(TemplateArgs), Loc(Loc),
|
2009-08-20 15:17:43 +08:00
|
|
|
Entity(Entity) { }
|
2009-08-05 00:50:30 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
/// \brief Determine whether the given type \p T has already been
|
2009-08-05 00:50:30 +08:00
|
|
|
/// transformed.
|
|
|
|
///
|
|
|
|
/// For the purposes of template instantiation, a type has already been
|
|
|
|
/// transformed if it is NULL or if it is not dependent.
|
2010-05-08 07:12:07 +08:00
|
|
|
bool AlreadyTransformed(QualType T);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-05 00:50:30 +08:00
|
|
|
/// \brief Returns the location of the entity being instantiated, if known.
|
|
|
|
SourceLocation getBaseLocation() { return Loc; }
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-05 00:50:30 +08:00
|
|
|
/// \brief Returns the name of the entity being instantiated, if any.
|
|
|
|
DeclarationName getBaseEntity() { return Entity; }
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-10-27 14:26:26 +08:00
|
|
|
/// \brief Sets the "base" location and entity when that
|
|
|
|
/// information is known based on another transformation.
|
|
|
|
void setBase(SourceLocation Loc, DeclarationName Entity) {
|
|
|
|
this->Loc = Loc;
|
|
|
|
this->Entity = Entity;
|
|
|
|
}
|
|
|
|
|
2009-08-05 00:50:30 +08:00
|
|
|
/// \brief Transform the given declaration by instantiating a reference to
|
|
|
|
/// this declaration.
|
2010-03-01 23:56:25 +08:00
|
|
|
Decl *TransformDecl(SourceLocation Loc, Decl *D);
|
2009-08-11 13:31:07 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
/// \brief Transform the definition of the given declaration by
|
2009-08-20 15:17:43 +08:00
|
|
|
/// instantiating it.
|
2010-03-02 01:25:41 +08:00
|
|
|
Decl *TransformDefinition(SourceLocation Loc, Decl *D);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-10-20 13:58:46 +08:00
|
|
|
/// \bried Transform the first qualifier within a scope by instantiating the
|
|
|
|
/// declaration.
|
|
|
|
NamedDecl *TransformFirstQualifierInScope(NamedDecl *D, SourceLocation Loc);
|
|
|
|
|
2009-08-20 15:17:43 +08:00
|
|
|
/// \brief Rebuild the exception declaration and register the declaration
|
|
|
|
/// as an instantiated local.
|
2009-09-09 23:08:12 +08:00
|
|
|
VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl, QualType T,
|
2009-12-07 10:54:59 +08:00
|
|
|
TypeSourceInfo *Declarator,
|
2009-08-20 15:17:43 +08:00
|
|
|
IdentifierInfo *Name,
|
|
|
|
SourceLocation Loc, SourceRange TypeRange);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-04-27 01:57:08 +08:00
|
|
|
/// \brief Rebuild the Objective-C exception declaration and register the
|
|
|
|
/// declaration as an instantiated local.
|
|
|
|
VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
|
|
|
|
TypeSourceInfo *TSInfo, QualType T);
|
|
|
|
|
2009-09-11 12:59:25 +08:00
|
|
|
/// \brief Check for tag mismatches when instantiating an
|
|
|
|
/// elaborated type.
|
2010-05-12 05:36:43 +08:00
|
|
|
QualType RebuildElaboratedType(ElaboratedTypeKeyword Keyword,
|
|
|
|
NestedNameSpecifier *NNS, QualType T);
|
2009-09-11 12:59:25 +08:00
|
|
|
|
2009-12-08 17:21:05 +08:00
|
|
|
Sema::OwningExprResult TransformPredefinedExpr(PredefinedExpr *E);
|
|
|
|
Sema::OwningExprResult TransformDeclRefExpr(DeclRefExpr *E);
|
|
|
|
Sema::OwningExprResult TransformCXXDefaultArgExpr(CXXDefaultArgExpr *E);
|
2010-02-06 16:42:39 +08:00
|
|
|
Sema::OwningExprResult TransformTemplateParmRefExpr(DeclRefExpr *E,
|
|
|
|
NonTypeTemplateParmDecl *D);
|
2009-11-08 21:56:19 +08:00
|
|
|
|
2010-05-01 02:55:50 +08:00
|
|
|
QualType TransformFunctionProtoType(TypeLocBuilder &TLB,
|
|
|
|
FunctionProtoTypeLoc TL,
|
|
|
|
QualType ObjectType);
|
2010-03-11 17:03:00 +08:00
|
|
|
ParmVarDecl *TransformFunctionTypeParam(ParmVarDecl *OldParm);
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
/// \brief Transforms a template type parameter type by performing
|
2009-08-05 00:50:30 +08:00
|
|
|
/// substitution of the corresponding template type argument.
|
2009-10-21 08:40:46 +08:00
|
|
|
QualType TransformTemplateTypeParmType(TypeLocBuilder &TLB,
|
2010-02-17 03:09:40 +08:00
|
|
|
TemplateTypeParmTypeLoc TL,
|
|
|
|
QualType ObjectType);
|
2009-05-14 02:28:20 +08:00
|
|
|
};
|
2009-02-28 03:31:52 +08:00
|
|
|
}
|
|
|
|
|
2010-05-08 07:12:07 +08:00
|
|
|
bool TemplateInstantiator::AlreadyTransformed(QualType T) {
|
|
|
|
if (T.isNull())
|
|
|
|
return true;
|
|
|
|
|
2010-05-25 01:22:01 +08:00
|
|
|
if (T->isDependentType() || T->isVariablyModifiedType())
|
2010-05-08 07:12:07 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
getSema().MarkDeclarationsReferencedInType(Loc, T);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-03-01 23:56:25 +08:00
|
|
|
Decl *TemplateInstantiator::TransformDecl(SourceLocation Loc, Decl *D) {
|
2009-09-04 05:38:09 +08:00
|
|
|
if (!D)
|
|
|
|
return 0;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-09-04 05:38:09 +08:00
|
|
|
if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(D)) {
|
2009-08-29 04:31:08 +08:00
|
|
|
if (TTP->getDepth() < TemplateArgs.getNumLevels()) {
|
2010-02-06 03:54:12 +08:00
|
|
|
// If the corresponding template argument is NULL or non-existent, it's
|
|
|
|
// because we are performing instantiation from explicitly-specified
|
|
|
|
// template arguments in a function template, but there were some
|
|
|
|
// arguments left unspecified.
|
|
|
|
if (!TemplateArgs.hasTemplateArgument(TTP->getDepth(),
|
|
|
|
TTP->getPosition()))
|
|
|
|
return D;
|
|
|
|
|
2009-11-11 09:00:40 +08:00
|
|
|
TemplateName Template
|
|
|
|
= TemplateArgs(TTP->getDepth(), TTP->getPosition()).getAsTemplate();
|
|
|
|
assert(!Template.isNull() && Template.getAsTemplateDecl() &&
|
2009-08-29 04:31:08 +08:00
|
|
|
"Wrong kind of template template argument");
|
2009-11-11 09:00:40 +08:00
|
|
|
return Template.getAsTemplateDecl();
|
2009-08-29 04:31:08 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-11-11 09:00:40 +08:00
|
|
|
// Fall through to find the instantiated declaration for this template
|
|
|
|
// template parameter.
|
2009-08-06 14:41:21 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-03-01 23:56:25 +08:00
|
|
|
return SemaRef.FindInstantiatedDecl(Loc, cast<NamedDecl>(D), TemplateArgs);
|
2009-02-28 03:31:52 +08:00
|
|
|
}
|
|
|
|
|
2010-03-02 01:25:41 +08:00
|
|
|
Decl *TemplateInstantiator::TransformDefinition(SourceLocation Loc, Decl *D) {
|
2009-08-26 06:02:44 +08:00
|
|
|
Decl *Inst = getSema().SubstDecl(D, getSema().CurContext, TemplateArgs);
|
2009-08-20 15:17:43 +08:00
|
|
|
if (!Inst)
|
|
|
|
return 0;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-20 15:17:43 +08:00
|
|
|
getSema().CurrentInstantiationScope->InstantiatedLocal(D, Inst);
|
|
|
|
return Inst;
|
|
|
|
}
|
|
|
|
|
2009-10-20 13:58:46 +08:00
|
|
|
NamedDecl *
|
|
|
|
TemplateInstantiator::TransformFirstQualifierInScope(NamedDecl *D,
|
|
|
|
SourceLocation Loc) {
|
|
|
|
// If the first part of the nested-name-specifier was a template type
|
|
|
|
// parameter, instantiate that type parameter down to a tag type.
|
|
|
|
if (TemplateTypeParmDecl *TTPD = dyn_cast_or_null<TemplateTypeParmDecl>(D)) {
|
|
|
|
const TemplateTypeParmType *TTP
|
|
|
|
= cast<TemplateTypeParmType>(getSema().Context.getTypeDeclType(TTPD));
|
|
|
|
if (TTP->getDepth() < TemplateArgs.getNumLevels()) {
|
|
|
|
QualType T = TemplateArgs(TTP->getDepth(), TTP->getIndex()).getAsType();
|
|
|
|
if (T.isNull())
|
2010-03-01 23:56:25 +08:00
|
|
|
return cast_or_null<NamedDecl>(TransformDecl(Loc, D));
|
2009-10-20 13:58:46 +08:00
|
|
|
|
|
|
|
if (const TagType *Tag = T->getAs<TagType>())
|
|
|
|
return Tag->getDecl();
|
|
|
|
|
|
|
|
// The resulting type is not a tag; complain.
|
|
|
|
getSema().Diag(Loc, diag::err_nested_name_spec_non_tag) << T;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-01 23:56:25 +08:00
|
|
|
return cast_or_null<NamedDecl>(TransformDecl(Loc, D));
|
2009-10-20 13:58:46 +08:00
|
|
|
}
|
|
|
|
|
2009-08-20 15:17:43 +08:00
|
|
|
VarDecl *
|
|
|
|
TemplateInstantiator::RebuildExceptionDecl(VarDecl *ExceptionDecl,
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType T,
|
2009-12-07 10:54:59 +08:00
|
|
|
TypeSourceInfo *Declarator,
|
2009-08-20 15:17:43 +08:00
|
|
|
IdentifierInfo *Name,
|
2009-09-09 23:08:12 +08:00
|
|
|
SourceLocation Loc,
|
2009-08-20 15:17:43 +08:00
|
|
|
SourceRange TypeRange) {
|
|
|
|
VarDecl *Var = inherited::RebuildExceptionDecl(ExceptionDecl, T, Declarator,
|
|
|
|
Name, Loc, TypeRange);
|
2010-04-27 01:57:08 +08:00
|
|
|
if (Var)
|
|
|
|
getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
|
|
|
|
return Var;
|
|
|
|
}
|
|
|
|
|
|
|
|
VarDecl *TemplateInstantiator::RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
|
|
|
|
TypeSourceInfo *TSInfo,
|
|
|
|
QualType T) {
|
|
|
|
VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T);
|
|
|
|
if (Var)
|
2009-08-20 15:17:43 +08:00
|
|
|
getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
|
|
|
|
return Var;
|
|
|
|
}
|
|
|
|
|
2009-09-11 12:59:25 +08:00
|
|
|
QualType
|
2010-05-12 05:36:43 +08:00
|
|
|
TemplateInstantiator::RebuildElaboratedType(ElaboratedTypeKeyword Keyword,
|
|
|
|
NestedNameSpecifier *NNS,
|
|
|
|
QualType T) {
|
2009-09-11 12:59:25 +08:00
|
|
|
if (const TagType *TT = T->getAs<TagType>()) {
|
|
|
|
TagDecl* TD = TT->getDecl();
|
|
|
|
|
|
|
|
// FIXME: this location is very wrong; we really need typelocs.
|
|
|
|
SourceLocation TagLocation = TD->getTagKeywordLoc();
|
|
|
|
|
|
|
|
// FIXME: type might be anonymous.
|
|
|
|
IdentifierInfo *Id = TD->getIdentifier();
|
|
|
|
|
|
|
|
// TODO: should we even warn on struct/class mismatches for this? Seems
|
|
|
|
// like it's likely to produce a lot of spurious errors.
|
2010-05-12 05:36:43 +08:00
|
|
|
if (Keyword != ETK_None && Keyword != ETK_Typename) {
|
|
|
|
TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForKeyword(Keyword);
|
|
|
|
if (!SemaRef.isAcceptableTagRedeclaration(TD, Kind, TagLocation, *Id)) {
|
|
|
|
SemaRef.Diag(TagLocation, diag::err_use_with_wrong_tag)
|
|
|
|
<< Id
|
|
|
|
<< FixItHint::CreateReplacement(SourceRange(TagLocation),
|
|
|
|
TD->getKindName());
|
|
|
|
SemaRef.Diag(TD->getLocation(), diag::note_previous_use);
|
|
|
|
}
|
2009-09-11 12:59:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-12 05:36:43 +08:00
|
|
|
return TreeTransform<TemplateInstantiator>::RebuildElaboratedType(Keyword,
|
|
|
|
NNS, T);
|
2009-09-11 12:59:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Sema::OwningExprResult
|
2009-12-08 17:21:05 +08:00
|
|
|
TemplateInstantiator::TransformPredefinedExpr(PredefinedExpr *E) {
|
2009-09-11 09:22:35 +08:00
|
|
|
if (!E->isTypeDependent())
|
|
|
|
return SemaRef.Owned(E->Retain());
|
|
|
|
|
|
|
|
FunctionDecl *currentDecl = getSema().getCurFunctionDecl();
|
|
|
|
assert(currentDecl && "Must have current function declaration when "
|
|
|
|
"instantiating.");
|
|
|
|
|
|
|
|
PredefinedExpr::IdentType IT = E->getIdentType();
|
|
|
|
|
2010-02-12 02:20:28 +08:00
|
|
|
unsigned Length = PredefinedExpr::ComputeName(IT, currentDecl).length();
|
2009-09-11 09:22:35 +08:00
|
|
|
|
|
|
|
llvm::APInt LengthI(32, Length + 1);
|
2009-09-25 03:53:00 +08:00
|
|
|
QualType ResTy = getSema().Context.CharTy.withConst();
|
2009-09-11 09:22:35 +08:00
|
|
|
ResTy = getSema().Context.getConstantArrayType(ResTy, LengthI,
|
|
|
|
ArrayType::Normal, 0);
|
|
|
|
PredefinedExpr *PE =
|
|
|
|
new (getSema().Context) PredefinedExpr(E->getLocation(), ResTy, IT);
|
|
|
|
return getSema().Owned(PE);
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
Sema::OwningExprResult
|
2010-02-06 16:42:39 +08:00
|
|
|
TemplateInstantiator::TransformTemplateParmRefExpr(DeclRefExpr *E,
|
2010-02-09 07:41:45 +08:00
|
|
|
NonTypeTemplateParmDecl *NTTP) {
|
2010-02-06 16:42:39 +08:00
|
|
|
// If the corresponding template argument is NULL or non-existent, it's
|
|
|
|
// because we are performing instantiation from explicitly-specified
|
|
|
|
// template arguments in a function template, but there were some
|
|
|
|
// arguments left unspecified.
|
|
|
|
if (!TemplateArgs.hasTemplateArgument(NTTP->getDepth(),
|
|
|
|
NTTP->getPosition()))
|
|
|
|
return SemaRef.Owned(E->Retain());
|
2009-11-01 01:21:17 +08:00
|
|
|
|
2010-02-06 16:42:39 +08:00
|
|
|
const TemplateArgument &Arg = TemplateArgs(NTTP->getDepth(),
|
|
|
|
NTTP->getPosition());
|
2009-11-01 01:21:17 +08:00
|
|
|
|
2010-02-06 16:42:39 +08:00
|
|
|
// The template argument itself might be an expression, in which
|
|
|
|
// case we just return that expression.
|
|
|
|
if (Arg.getKind() == TemplateArgument::Expression)
|
|
|
|
return SemaRef.Owned(Arg.getAsExpr()->Retain());
|
2009-11-01 01:21:17 +08:00
|
|
|
|
2010-02-06 16:42:39 +08:00
|
|
|
if (Arg.getKind() == TemplateArgument::Declaration) {
|
|
|
|
ValueDecl *VD = cast<ValueDecl>(Arg.getAsDecl());
|
2009-11-01 01:21:17 +08:00
|
|
|
|
2010-02-06 18:23:53 +08:00
|
|
|
// Find the instantiation of the template argument. This is
|
|
|
|
// required for nested templates.
|
2010-02-06 16:42:39 +08:00
|
|
|
VD = cast_or_null<ValueDecl>(
|
2010-03-01 23:56:25 +08:00
|
|
|
getSema().FindInstantiatedDecl(E->getLocation(),
|
|
|
|
VD, TemplateArgs));
|
2010-02-06 16:42:39 +08:00
|
|
|
if (!VD)
|
|
|
|
return SemaRef.ExprError();
|
|
|
|
|
2010-02-06 18:23:53 +08:00
|
|
|
// Derive the type we want the substituted decl to have. This had
|
|
|
|
// better be non-dependent, or these checks will have serious problems.
|
|
|
|
QualType TargetType = SemaRef.SubstType(NTTP->getType(), TemplateArgs,
|
2010-02-09 07:41:45 +08:00
|
|
|
E->getLocation(),
|
|
|
|
DeclarationName());
|
2010-02-06 18:23:53 +08:00
|
|
|
assert(!TargetType.isNull() && "type substitution failed for param type");
|
|
|
|
assert(!TargetType->isDependentType() && "param type still dependent");
|
2010-03-28 10:42:43 +08:00
|
|
|
return SemaRef.BuildExpressionFromDeclTemplateArgument(Arg,
|
|
|
|
TargetType,
|
|
|
|
E->getLocation());
|
2010-02-06 16:42:39 +08:00
|
|
|
}
|
|
|
|
|
2010-03-28 10:42:43 +08:00
|
|
|
return SemaRef.BuildExpressionFromIntegralTemplateArgument(Arg,
|
|
|
|
E->getSourceRange().getBegin());
|
2010-02-06 16:42:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Sema::OwningExprResult
|
|
|
|
TemplateInstantiator::TransformDeclRefExpr(DeclRefExpr *E) {
|
|
|
|
NamedDecl *D = E->getDecl();
|
|
|
|
if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D)) {
|
|
|
|
if (NTTP->getDepth() < TemplateArgs.getNumLevels())
|
|
|
|
return TransformTemplateParmRefExpr(E, NTTP);
|
2009-11-01 01:21:17 +08:00
|
|
|
|
|
|
|
// We have a non-type template parameter that isn't fully substituted;
|
|
|
|
// FindInstantiatedDecl will find it in the local instantiation scope.
|
2009-08-11 13:31:07 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-12-08 17:21:05 +08:00
|
|
|
return TreeTransform<TemplateInstantiator>::TransformDeclRefExpr(E);
|
2009-08-11 13:31:07 +08:00
|
|
|
}
|
|
|
|
|
2009-11-08 21:56:19 +08:00
|
|
|
Sema::OwningExprResult TemplateInstantiator::TransformCXXDefaultArgExpr(
|
2009-12-08 17:21:05 +08:00
|
|
|
CXXDefaultArgExpr *E) {
|
2009-11-08 21:56:19 +08:00
|
|
|
assert(!cast<FunctionDecl>(E->getParam()->getDeclContext())->
|
|
|
|
getDescribedFunctionTemplate() &&
|
|
|
|
"Default arg expressions are never formed in dependent cases.");
|
2009-12-24 07:03:06 +08:00
|
|
|
return SemaRef.BuildCXXDefaultArgExpr(E->getUsedLocation(),
|
|
|
|
cast<FunctionDecl>(E->getParam()->getDeclContext()),
|
|
|
|
E->getParam());
|
2009-11-08 21:56:19 +08:00
|
|
|
}
|
|
|
|
|
2010-05-01 02:55:50 +08:00
|
|
|
QualType TemplateInstantiator::TransformFunctionProtoType(TypeLocBuilder &TLB,
|
|
|
|
FunctionProtoTypeLoc TL,
|
|
|
|
QualType ObjectType) {
|
|
|
|
// We need a local instantiation scope for this function prototype.
|
|
|
|
Sema::LocalInstantiationScope Scope(SemaRef, /*CombineWithOuterScope=*/true);
|
|
|
|
return inherited::TransformFunctionProtoType(TLB, TL, ObjectType);
|
2010-03-11 17:03:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ParmVarDecl *
|
|
|
|
TemplateInstantiator::TransformFunctionTypeParam(ParmVarDecl *OldParm) {
|
Be sure to instantiate the parameters of a function, even when the
function's type is (strictly speaking) non-dependent. This ensures
that, e.g., default function arguments get instantiated properly.
And, since I couldn't resist, collapse the two implementations of
function-parameter instantiation into calls to a single, new function
(Sema::SubstParmVarDecl), since the two had nearly identical code (and
each had bugs the other didn't!). More importantly, factored out the
semantic analysis of a parameter declaration into
Sema::CheckParameter, which is called both by
Sema::ActOnParamDeclarator (when parameters are parsed) and when a
parameter is instantiated. Previously, we were missing some
Objective-C and address-space checks on instantiated function
parameters.
Fixes PR6733.
llvm-svn: 101029
2010-04-12 15:48:19 +08:00
|
|
|
return SemaRef.SubstParmVarDecl(OldParm, TemplateArgs);
|
2010-03-11 17:03:00 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType
|
2009-10-21 08:40:46 +08:00
|
|
|
TemplateInstantiator::TransformTemplateTypeParmType(TypeLocBuilder &TLB,
|
2010-02-17 03:09:40 +08:00
|
|
|
TemplateTypeParmTypeLoc TL,
|
|
|
|
QualType ObjectType) {
|
2009-10-21 08:40:46 +08:00
|
|
|
TemplateTypeParmType *T = TL.getTypePtr();
|
2009-08-29 04:31:08 +08:00
|
|
|
if (T->getDepth() < TemplateArgs.getNumLevels()) {
|
2009-02-28 03:31:52 +08:00
|
|
|
// Replace the template type parameter with its corresponding
|
|
|
|
// template argument.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
// If the corresponding template argument is NULL or doesn't exist, it's
|
|
|
|
// because we are performing instantiation from explicitly-specified
|
|
|
|
// template arguments in a function template class, but there were some
|
2009-07-01 08:28:38 +08:00
|
|
|
// arguments left unspecified.
|
2009-10-21 08:40:46 +08:00
|
|
|
if (!TemplateArgs.hasTemplateArgument(T->getDepth(), T->getIndex())) {
|
|
|
|
TemplateTypeParmTypeLoc NewTL
|
|
|
|
= TLB.push<TemplateTypeParmTypeLoc>(TL.getType());
|
|
|
|
NewTL.setNameLoc(TL.getNameLoc());
|
|
|
|
return TL.getType();
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
assert(TemplateArgs(T->getDepth(), T->getIndex()).getKind()
|
2009-08-29 04:31:08 +08:00
|
|
|
== TemplateArgument::Type &&
|
2009-02-28 03:31:52 +08:00
|
|
|
"Template argument kind mismatch");
|
2009-08-29 04:31:08 +08:00
|
|
|
|
2009-10-18 17:09:24 +08:00
|
|
|
QualType Replacement
|
|
|
|
= TemplateArgs(T->getDepth(), T->getIndex()).getAsType();
|
|
|
|
|
|
|
|
// TODO: only do this uniquing once, at the start of instantiation.
|
2009-10-21 08:40:46 +08:00
|
|
|
QualType Result
|
|
|
|
= getSema().Context.getSubstTemplateTypeParmType(T, Replacement);
|
|
|
|
SubstTemplateTypeParmTypeLoc NewTL
|
|
|
|
= TLB.push<SubstTemplateTypeParmTypeLoc>(Result);
|
|
|
|
NewTL.setNameLoc(TL.getNameLoc());
|
|
|
|
return Result;
|
2009-09-09 23:08:12 +08:00
|
|
|
}
|
2009-02-28 03:31:52 +08:00
|
|
|
|
|
|
|
// The template type parameter comes from an inner template (e.g.,
|
|
|
|
// the template parameter list of a member template inside the
|
|
|
|
// template we are instantiating). Create a new template type
|
|
|
|
// parameter with the template "level" reduced by one.
|
2009-10-21 08:40:46 +08:00
|
|
|
QualType Result
|
|
|
|
= getSema().Context.getTemplateTypeParmType(T->getDepth()
|
|
|
|
- TemplateArgs.getNumLevels(),
|
|
|
|
T->getIndex(),
|
|
|
|
T->isParameterPack(),
|
2010-06-16 23:23:05 +08:00
|
|
|
T->getName());
|
2009-10-21 08:40:46 +08:00
|
|
|
TemplateTypeParmTypeLoc NewTL = TLB.push<TemplateTypeParmTypeLoc>(Result);
|
|
|
|
NewTL.setNameLoc(TL.getNameLoc());
|
|
|
|
return Result;
|
2009-02-28 08:25:32 +08:00
|
|
|
}
|
2009-02-28 03:31:52 +08:00
|
|
|
|
2009-08-26 06:02:44 +08:00
|
|
|
/// \brief Perform substitution on the type T with a given set of template
|
|
|
|
/// arguments.
|
2009-02-28 03:31:52 +08:00
|
|
|
///
|
|
|
|
/// This routine substitutes the given template arguments into the
|
|
|
|
/// type T and produces the instantiated type.
|
|
|
|
///
|
|
|
|
/// \param T the type into which the template arguments will be
|
|
|
|
/// substituted. If this type is not dependent, it will be returned
|
|
|
|
/// immediately.
|
|
|
|
///
|
|
|
|
/// \param TemplateArgs the template arguments that will be
|
|
|
|
/// substituted for the top-level template parameters within T.
|
|
|
|
///
|
|
|
|
/// \param Loc the location in the source code where this substitution
|
|
|
|
/// is being performed. It will typically be the location of the
|
|
|
|
/// declarator (if we're instantiating the type of some declaration)
|
|
|
|
/// or the location of the type in the source code (if, e.g., we're
|
|
|
|
/// instantiating the type of a cast expression).
|
|
|
|
///
|
|
|
|
/// \param Entity the name of the entity associated with a declaration
|
|
|
|
/// being instantiated (if any). May be empty to indicate that there
|
|
|
|
/// is no such entity (if, e.g., this is a type that occurs as part of
|
|
|
|
/// a cast expression) or that the entity has no name (e.g., an
|
|
|
|
/// unnamed function parameter).
|
|
|
|
///
|
|
|
|
/// \returns If the instantiation succeeds, the instantiated
|
|
|
|
/// type. Otherwise, produces diagnostics and returns a NULL type.
|
2009-12-07 10:54:59 +08:00
|
|
|
TypeSourceInfo *Sema::SubstType(TypeSourceInfo *T,
|
2009-10-21 08:58:09 +08:00
|
|
|
const MultiLevelTemplateArgumentList &Args,
|
|
|
|
SourceLocation Loc,
|
|
|
|
DeclarationName Entity) {
|
|
|
|
assert(!ActiveTemplateInstantiations.empty() &&
|
|
|
|
"Cannot perform an instantiation without some context on the "
|
|
|
|
"instantiation stack");
|
|
|
|
|
2010-05-25 01:22:01 +08:00
|
|
|
if (!T->getType()->isDependentType() &&
|
|
|
|
!T->getType()->isVariablyModifiedType())
|
2009-10-21 08:58:09 +08:00
|
|
|
return T;
|
|
|
|
|
|
|
|
TemplateInstantiator Instantiator(*this, Args, Loc, Entity);
|
|
|
|
return Instantiator.TransformType(T);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Deprecated form of the above.
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType Sema::SubstType(QualType T,
|
2009-08-29 04:31:08 +08:00
|
|
|
const MultiLevelTemplateArgumentList &TemplateArgs,
|
2009-08-26 06:02:44 +08:00
|
|
|
SourceLocation Loc, DeclarationName Entity) {
|
2009-03-11 04:44:00 +08:00
|
|
|
assert(!ActiveTemplateInstantiations.empty() &&
|
|
|
|
"Cannot perform an instantiation without some context on the "
|
|
|
|
"instantiation stack");
|
|
|
|
|
2010-05-25 01:22:01 +08:00
|
|
|
// If T is not a dependent type or a variably-modified type, there
|
|
|
|
// is nothing to do.
|
|
|
|
if (!T->isDependentType() && !T->isVariablyModifiedType())
|
2009-02-28 03:31:52 +08:00
|
|
|
return T;
|
|
|
|
|
2009-08-05 00:50:30 +08:00
|
|
|
TemplateInstantiator Instantiator(*this, TemplateArgs, Loc, Entity);
|
|
|
|
return Instantiator.TransformType(T);
|
2009-02-28 03:31:52 +08:00
|
|
|
}
|
2009-03-03 12:44:36 +08:00
|
|
|
|
2010-04-10 01:38:44 +08:00
|
|
|
static bool NeedsInstantiationAsFunctionType(TypeSourceInfo *T) {
|
2010-05-25 01:22:01 +08:00
|
|
|
if (T->getType()->isDependentType() || T->getType()->isVariablyModifiedType())
|
2010-04-10 01:38:44 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
TypeLoc TL = T->getTypeLoc();
|
|
|
|
if (!isa<FunctionProtoTypeLoc>(TL))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
FunctionProtoTypeLoc FP = cast<FunctionProtoTypeLoc>(TL);
|
|
|
|
for (unsigned I = 0, E = FP.getNumArgs(); I != E; ++I) {
|
|
|
|
ParmVarDecl *P = FP.getArg(I);
|
|
|
|
|
|
|
|
// TODO: currently we always rebuild expressions. When we
|
|
|
|
// properly get lazier about this, we should use the same
|
|
|
|
// logic to avoid rebuilding prototypes here.
|
|
|
|
if (P->hasInit())
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A form of SubstType intended specifically for instantiating the
|
|
|
|
/// type of a FunctionDecl. Its purpose is solely to force the
|
|
|
|
/// instantiation of default-argument expressions.
|
|
|
|
TypeSourceInfo *Sema::SubstFunctionDeclType(TypeSourceInfo *T,
|
|
|
|
const MultiLevelTemplateArgumentList &Args,
|
|
|
|
SourceLocation Loc,
|
|
|
|
DeclarationName Entity) {
|
|
|
|
assert(!ActiveTemplateInstantiations.empty() &&
|
|
|
|
"Cannot perform an instantiation without some context on the "
|
|
|
|
"instantiation stack");
|
|
|
|
|
|
|
|
if (!NeedsInstantiationAsFunctionType(T))
|
|
|
|
return T;
|
|
|
|
|
|
|
|
TemplateInstantiator Instantiator(*this, Args, Loc, Entity);
|
|
|
|
|
|
|
|
TypeLocBuilder TLB;
|
|
|
|
|
|
|
|
TypeLoc TL = T->getTypeLoc();
|
|
|
|
TLB.reserve(TL.getFullDataSize());
|
|
|
|
|
|
|
|
QualType Result = Instantiator.TransformType(TLB, TL, QualType());
|
|
|
|
if (Result.isNull())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return TLB.getTypeSourceInfo(Context, Result);
|
|
|
|
}
|
|
|
|
|
Be sure to instantiate the parameters of a function, even when the
function's type is (strictly speaking) non-dependent. This ensures
that, e.g., default function arguments get instantiated properly.
And, since I couldn't resist, collapse the two implementations of
function-parameter instantiation into calls to a single, new function
(Sema::SubstParmVarDecl), since the two had nearly identical code (and
each had bugs the other didn't!). More importantly, factored out the
semantic analysis of a parameter declaration into
Sema::CheckParameter, which is called both by
Sema::ActOnParamDeclarator (when parameters are parsed) and when a
parameter is instantiated. Previously, we were missing some
Objective-C and address-space checks on instantiated function
parameters.
Fixes PR6733.
llvm-svn: 101029
2010-04-12 15:48:19 +08:00
|
|
|
ParmVarDecl *Sema::SubstParmVarDecl(ParmVarDecl *OldParm,
|
|
|
|
const MultiLevelTemplateArgumentList &TemplateArgs) {
|
|
|
|
TypeSourceInfo *OldDI = OldParm->getTypeSourceInfo();
|
|
|
|
TypeSourceInfo *NewDI = SubstType(OldDI, TemplateArgs, OldParm->getLocation(),
|
|
|
|
OldParm->getDeclName());
|
|
|
|
if (!NewDI)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (NewDI->getType()->isVoidType()) {
|
|
|
|
Diag(OldParm->getLocation(), diag::err_param_with_void_type);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ParmVarDecl *NewParm = CheckParameter(Context.getTranslationUnitDecl(),
|
|
|
|
NewDI, NewDI->getType(),
|
|
|
|
OldParm->getIdentifier(),
|
|
|
|
OldParm->getLocation(),
|
2010-04-20 06:54:31 +08:00
|
|
|
OldParm->getStorageClass(),
|
|
|
|
OldParm->getStorageClassAsWritten());
|
Be sure to instantiate the parameters of a function, even when the
function's type is (strictly speaking) non-dependent. This ensures
that, e.g., default function arguments get instantiated properly.
And, since I couldn't resist, collapse the two implementations of
function-parameter instantiation into calls to a single, new function
(Sema::SubstParmVarDecl), since the two had nearly identical code (and
each had bugs the other didn't!). More importantly, factored out the
semantic analysis of a parameter declaration into
Sema::CheckParameter, which is called both by
Sema::ActOnParamDeclarator (when parameters are parsed) and when a
parameter is instantiated. Previously, we were missing some
Objective-C and address-space checks on instantiated function
parameters.
Fixes PR6733.
llvm-svn: 101029
2010-04-12 15:48:19 +08:00
|
|
|
if (!NewParm)
|
|
|
|
return 0;
|
2010-05-20 01:02:24 +08:00
|
|
|
|
Be sure to instantiate the parameters of a function, even when the
function's type is (strictly speaking) non-dependent. This ensures
that, e.g., default function arguments get instantiated properly.
And, since I couldn't resist, collapse the two implementations of
function-parameter instantiation into calls to a single, new function
(Sema::SubstParmVarDecl), since the two had nearly identical code (and
each had bugs the other didn't!). More importantly, factored out the
semantic analysis of a parameter declaration into
Sema::CheckParameter, which is called both by
Sema::ActOnParamDeclarator (when parameters are parsed) and when a
parameter is instantiated. Previously, we were missing some
Objective-C and address-space checks on instantiated function
parameters.
Fixes PR6733.
llvm-svn: 101029
2010-04-12 15:48:19 +08:00
|
|
|
// Mark the (new) default argument as uninstantiated (if any).
|
|
|
|
if (OldParm->hasUninstantiatedDefaultArg()) {
|
|
|
|
Expr *Arg = OldParm->getUninstantiatedDefaultArg();
|
|
|
|
NewParm->setUninstantiatedDefaultArg(Arg);
|
|
|
|
} else if (Expr *Arg = OldParm->getDefaultArg())
|
|
|
|
NewParm->setUninstantiatedDefaultArg(Arg);
|
|
|
|
|
|
|
|
NewParm->setHasInheritedDefaultArg(OldParm->hasInheritedDefaultArg());
|
|
|
|
|
|
|
|
CurrentInstantiationScope->InstantiatedLocal(OldParm, NewParm);
|
|
|
|
return NewParm;
|
|
|
|
}
|
|
|
|
|
2009-08-26 06:02:44 +08:00
|
|
|
/// \brief Perform substitution on the base class specifiers of the
|
|
|
|
/// given class template specialization.
|
2009-03-03 12:44:36 +08:00
|
|
|
///
|
|
|
|
/// Produces a diagnostic and returns true on error, returns false and
|
|
|
|
/// attaches the instantiated base classes to the class template
|
|
|
|
/// specialization if successful.
|
2009-09-09 23:08:12 +08:00
|
|
|
bool
|
2009-08-26 06:02:44 +08:00
|
|
|
Sema::SubstBaseSpecifiers(CXXRecordDecl *Instantiation,
|
|
|
|
CXXRecordDecl *Pattern,
|
2009-08-29 04:31:08 +08:00
|
|
|
const MultiLevelTemplateArgumentList &TemplateArgs) {
|
2009-03-03 12:44:36 +08:00
|
|
|
bool Invalid = false;
|
2009-05-30 02:27:38 +08:00
|
|
|
llvm::SmallVector<CXXBaseSpecifier*, 4> InstantiatedBases;
|
2009-09-09 23:08:12 +08:00
|
|
|
for (ClassTemplateSpecializationDecl::base_class_iterator
|
2009-03-26 05:17:03 +08:00
|
|
|
Base = Pattern->bases_begin(), BaseEnd = Pattern->bases_end();
|
2009-03-11 02:52:44 +08:00
|
|
|
Base != BaseEnd; ++Base) {
|
2009-03-03 12:44:36 +08:00
|
|
|
if (!Base->getType()->isDependentType()) {
|
2009-12-04 01:49:57 +08:00
|
|
|
const CXXRecordDecl *BaseDecl =
|
|
|
|
cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
|
|
|
|
|
|
|
|
// Make sure to set the attributes from the base.
|
|
|
|
SetClassDeclAttributesFromBase(Instantiation, BaseDecl,
|
|
|
|
Base->isVirtual());
|
|
|
|
|
2009-07-23 01:41:53 +08:00
|
|
|
InstantiatedBases.push_back(new (Context) CXXBaseSpecifier(*Base));
|
2009-03-03 12:44:36 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType BaseType = SubstType(Base->getType(),
|
|
|
|
TemplateArgs,
|
2009-08-26 06:02:44 +08:00
|
|
|
Base->getSourceRange().getBegin(),
|
|
|
|
DeclarationName());
|
2009-03-03 12:44:36 +08:00
|
|
|
if (BaseType.isNull()) {
|
|
|
|
Invalid = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CXXBaseSpecifier *InstantiatedBase
|
2009-03-26 05:17:03 +08:00
|
|
|
= CheckBaseSpecifier(Instantiation,
|
2009-03-03 12:44:36 +08:00
|
|
|
Base->getSourceRange(),
|
|
|
|
Base->isVirtual(),
|
|
|
|
Base->getAccessSpecifierAsWritten(),
|
|
|
|
BaseType,
|
|
|
|
/*FIXME: Not totally accurate */
|
|
|
|
Base->getSourceRange().getBegin()))
|
|
|
|
InstantiatedBases.push_back(InstantiatedBase);
|
|
|
|
else
|
|
|
|
Invalid = true;
|
|
|
|
}
|
|
|
|
|
2009-03-11 02:52:44 +08:00
|
|
|
if (!Invalid &&
|
2009-05-21 17:52:38 +08:00
|
|
|
AttachBaseSpecifiers(Instantiation, InstantiatedBases.data(),
|
2009-03-03 12:44:36 +08:00
|
|
|
InstantiatedBases.size()))
|
|
|
|
Invalid = true;
|
|
|
|
|
|
|
|
return Invalid;
|
|
|
|
}
|
|
|
|
|
2009-03-26 05:17:03 +08:00
|
|
|
/// \brief Instantiate the definition of a class from a given pattern.
|
|
|
|
///
|
|
|
|
/// \param PointOfInstantiation The point of instantiation within the
|
|
|
|
/// source code.
|
|
|
|
///
|
|
|
|
/// \param Instantiation is the declaration whose definition is being
|
|
|
|
/// instantiated. This will be either a class template specialization
|
|
|
|
/// or a member class of a class template specialization.
|
|
|
|
///
|
|
|
|
/// \param Pattern is the pattern from which the instantiation
|
|
|
|
/// occurs. This will be either the declaration of a class template or
|
|
|
|
/// the declaration of a member class of a class template.
|
|
|
|
///
|
|
|
|
/// \param TemplateArgs The template arguments to be substituted into
|
|
|
|
/// the pattern.
|
|
|
|
///
|
2009-09-05 06:48:11 +08:00
|
|
|
/// \param TSK the kind of implicit or explicit instantiation to perform.
|
2009-08-24 23:23:48 +08:00
|
|
|
///
|
|
|
|
/// \param Complain whether to complain if the class cannot be instantiated due
|
|
|
|
/// to the lack of a definition.
|
|
|
|
///
|
2009-03-26 05:17:03 +08:00
|
|
|
/// \returns true if an error occurred, false otherwise.
|
|
|
|
bool
|
|
|
|
Sema::InstantiateClass(SourceLocation PointOfInstantiation,
|
|
|
|
CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern,
|
2009-08-29 04:31:08 +08:00
|
|
|
const MultiLevelTemplateArgumentList &TemplateArgs,
|
2009-09-05 06:48:11 +08:00
|
|
|
TemplateSpecializationKind TSK,
|
2009-08-24 23:23:48 +08:00
|
|
|
bool Complain) {
|
2009-03-26 05:17:03 +08:00
|
|
|
bool Invalid = false;
|
2009-08-20 09:44:21 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
CXXRecordDecl *PatternDef
|
2010-02-11 09:04:33 +08:00
|
|
|
= cast_or_null<CXXRecordDecl>(Pattern->getDefinition());
|
2009-03-26 05:17:03 +08:00
|
|
|
if (!PatternDef) {
|
2009-08-24 23:23:48 +08:00
|
|
|
if (!Complain) {
|
|
|
|
// Say nothing
|
|
|
|
} else if (Pattern == Instantiation->getInstantiatedFromMemberClass()) {
|
2009-03-26 05:17:03 +08:00
|
|
|
Diag(PointOfInstantiation,
|
|
|
|
diag::err_implicit_instantiate_member_undefined)
|
|
|
|
<< Context.getTypeDeclType(Instantiation);
|
|
|
|
Diag(Pattern->getLocation(), diag::note_member_of_template_here);
|
|
|
|
} else {
|
2009-05-13 08:25:59 +08:00
|
|
|
Diag(PointOfInstantiation, diag::err_template_instantiate_undefined)
|
2009-09-05 06:48:11 +08:00
|
|
|
<< (TSK != TSK_ImplicitInstantiation)
|
2009-03-26 05:17:03 +08:00
|
|
|
<< Context.getTypeDeclType(Instantiation);
|
|
|
|
Diag(Pattern->getLocation(), diag::note_template_decl_here);
|
|
|
|
}
|
2009-03-03 12:44:36 +08:00
|
|
|
return true;
|
|
|
|
}
|
2009-03-26 05:17:03 +08:00
|
|
|
Pattern = PatternDef;
|
2009-03-03 12:44:36 +08:00
|
|
|
|
2009-10-15 23:54:05 +08:00
|
|
|
// \brief Record the point of instantiation.
|
|
|
|
if (MemberSpecializationInfo *MSInfo
|
|
|
|
= Instantiation->getMemberSpecializationInfo()) {
|
|
|
|
MSInfo->setTemplateSpecializationKind(TSK);
|
|
|
|
MSInfo->setPointOfInstantiation(PointOfInstantiation);
|
2009-10-27 14:26:26 +08:00
|
|
|
} else if (ClassTemplateSpecializationDecl *Spec
|
|
|
|
= dyn_cast<ClassTemplateSpecializationDecl>(Instantiation)) {
|
|
|
|
Spec->setTemplateSpecializationKind(TSK);
|
|
|
|
Spec->setPointOfInstantiation(PointOfInstantiation);
|
2009-10-15 23:54:05 +08:00
|
|
|
}
|
|
|
|
|
2009-03-26 05:23:52 +08:00
|
|
|
InstantiatingTemplate Inst(*this, PointOfInstantiation, Instantiation);
|
2009-03-10 08:06:19 +08:00
|
|
|
if (Inst)
|
|
|
|
return true;
|
|
|
|
|
2009-03-03 12:44:36 +08:00
|
|
|
// Enter the scope of this instantiation. We don't use
|
|
|
|
// PushDeclContext because we don't have a scope.
|
2010-04-29 08:35:03 +08:00
|
|
|
ContextRAII SavedContext(*this, Instantiation);
|
2010-05-13 01:27:19 +08:00
|
|
|
EnterExpressionEvaluationContext EvalContext(*this,
|
|
|
|
Action::PotentiallyEvaluated);
|
2009-03-03 12:44:36 +08:00
|
|
|
|
2010-03-24 09:33:17 +08:00
|
|
|
// If this is an instantiation of a local class, merge this local
|
|
|
|
// instantiation scope with the enclosing scope. Otherwise, every
|
|
|
|
// instantiation of a class has its own local instantiation scope.
|
|
|
|
bool MergeWithParentScope = !Instantiation->isDefinedOutsideFunctionOrMethod();
|
|
|
|
Sema::LocalInstantiationScope Scope(*this, MergeWithParentScope);
|
|
|
|
|
2009-03-03 12:44:36 +08:00
|
|
|
// Start the definition of this instantiation.
|
2009-03-26 05:17:03 +08:00
|
|
|
Instantiation->startDefinition();
|
2010-05-06 08:28:52 +08:00
|
|
|
|
|
|
|
Instantiation->setTagKind(Pattern->getTagKind());
|
2009-03-03 12:44:36 +08:00
|
|
|
|
2009-08-26 06:02:44 +08:00
|
|
|
// Do substitution on the base class specifiers.
|
|
|
|
if (SubstBaseSpecifiers(Instantiation, Pattern, TemplateArgs))
|
2009-03-03 12:44:36 +08:00
|
|
|
Invalid = true;
|
|
|
|
|
2009-05-30 02:27:38 +08:00
|
|
|
llvm::SmallVector<DeclPtrTy, 4> Fields;
|
2009-06-30 10:36:12 +08:00
|
|
|
for (RecordDecl::decl_iterator Member = Pattern->decls_begin(),
|
2009-09-09 23:08:12 +08:00
|
|
|
MemberEnd = Pattern->decls_end();
|
2009-04-10 05:40:53 +08:00
|
|
|
Member != MemberEnd; ++Member) {
|
2009-08-26 06:02:44 +08:00
|
|
|
Decl *NewMember = SubstDecl(*Member, Instantiation, TemplateArgs);
|
2009-03-18 05:15:40 +08:00
|
|
|
if (NewMember) {
|
2009-12-07 08:22:08 +08:00
|
|
|
if (FieldDecl *Field = dyn_cast<FieldDecl>(NewMember))
|
2009-03-29 03:18:32 +08:00
|
|
|
Fields.push_back(DeclPtrTy::make(Field));
|
2009-12-07 08:22:08 +08:00
|
|
|
else if (NewMember->isInvalidDecl())
|
|
|
|
Invalid = true;
|
2009-03-18 05:15:40 +08:00
|
|
|
} else {
|
|
|
|
// FIXME: Eventually, a NULL return will mean that one of the
|
2009-05-16 15:39:55 +08:00
|
|
|
// instantiations was a semantic disaster, and we'll want to set Invalid =
|
|
|
|
// true. For now, we expect to skip some members that we can't yet handle.
|
2009-03-12 00:48:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-12 02:59:21 +08:00
|
|
|
// Finish checking fields.
|
2009-03-29 03:18:32 +08:00
|
|
|
ActOnFields(0, Instantiation->getLocation(), DeclPtrTy::make(Instantiation),
|
2009-05-21 17:52:38 +08:00
|
|
|
Fields.data(), Fields.size(), SourceLocation(), SourceLocation(),
|
2009-03-12 02:59:21 +08:00
|
|
|
0);
|
2010-07-03 01:43:08 +08:00
|
|
|
CheckCompletedCXXClass(Instantiation);
|
2009-10-15 04:14:33 +08:00
|
|
|
if (Instantiation->isInvalidDecl())
|
|
|
|
Invalid = true;
|
|
|
|
|
2009-03-03 12:44:36 +08:00
|
|
|
// Exit the scope of this instantiation.
|
2010-04-29 08:35:03 +08:00
|
|
|
SavedContext.pop();
|
2009-03-03 12:44:36 +08:00
|
|
|
|
Rework when and how vtables are emitted, by tracking where vtables are
"used" (e.g., we will refer to the vtable in the generated code) and
when they are defined (i.e., because we've seen the key function
definition). Previously, we were effectively tracking "potential
definitions" rather than uses, so we were a bit too eager about emitting
vtables for classes without key functions.
The new scheme:
- For every use of a vtable, Sema calls MarkVTableUsed() to indicate
the use. For example, this occurs when calling a virtual member
function of the class, defining a constructor of that class type,
dynamic_cast'ing from that type to a derived class, casting
to/through a virtual base class, etc.
- For every definition of a vtable, Sema calls MarkVTableUsed() to
indicate the definition. This happens at the end of the translation
unit for classes whose key function has been defined (so we can
delay computation of the key function; see PR6564), and will also
occur with explicit template instantiation definitions.
- For every vtable defined/used, we mark all of the virtual member
functions of that vtable as defined/used, unless we know that the key
function is in another translation unit. This instantiates virtual
member functions when needed.
- At the end of the translation unit, Sema tells CodeGen (via the
ASTConsumer) which vtables must be defined (CodeGen will define
them) and which may be used (for which CodeGen will define the
vtables lazily).
From a language perspective, both the old and the new schemes are
permissible: we're allowed to instantiate virtual member functions
whenever we want per the standard. However, all other C++ compilers
were more lazy than we were, and our eagerness was both a performance
issue (we instantiated too much) and a portability problem (we broke
Boost test cases, which now pass).
Notes:
(1) There's a ton of churn in the tests, because the order in which
vtables get emitted to IR has changed. I've tried to isolate some of
the larger tests from these issues.
(2) Some diagnostics related to
implicitly-instantiated/implicitly-defined virtual member functions
have moved to the point of first use/definition. It's better this
way.
(3) I could use a review of the places where we MarkVTableUsed, to
see if I missed any place where the language effectively requires a
vtable.
Fixes PR7114 and PR6564.
llvm-svn: 103718
2010-05-14 00:44:06 +08:00
|
|
|
if (!Invalid) {
|
2009-05-27 04:50:29 +08:00
|
|
|
Consumer.HandleTagDeclDefinition(Instantiation);
|
|
|
|
|
Rework when and how vtables are emitted, by tracking where vtables are
"used" (e.g., we will refer to the vtable in the generated code) and
when they are defined (i.e., because we've seen the key function
definition). Previously, we were effectively tracking "potential
definitions" rather than uses, so we were a bit too eager about emitting
vtables for classes without key functions.
The new scheme:
- For every use of a vtable, Sema calls MarkVTableUsed() to indicate
the use. For example, this occurs when calling a virtual member
function of the class, defining a constructor of that class type,
dynamic_cast'ing from that type to a derived class, casting
to/through a virtual base class, etc.
- For every definition of a vtable, Sema calls MarkVTableUsed() to
indicate the definition. This happens at the end of the translation
unit for classes whose key function has been defined (so we can
delay computation of the key function; see PR6564), and will also
occur with explicit template instantiation definitions.
- For every vtable defined/used, we mark all of the virtual member
functions of that vtable as defined/used, unless we know that the key
function is in another translation unit. This instantiates virtual
member functions when needed.
- At the end of the translation unit, Sema tells CodeGen (via the
ASTConsumer) which vtables must be defined (CodeGen will define
them) and which may be used (for which CodeGen will define the
vtables lazily).
From a language perspective, both the old and the new schemes are
permissible: we're allowed to instantiate virtual member functions
whenever we want per the standard. However, all other C++ compilers
were more lazy than we were, and our eagerness was both a performance
issue (we instantiated too much) and a portability problem (we broke
Boost test cases, which now pass).
Notes:
(1) There's a ton of churn in the tests, because the order in which
vtables get emitted to IR has changed. I've tried to isolate some of
the larger tests from these issues.
(2) Some diagnostics related to
implicitly-instantiated/implicitly-defined virtual member functions
have moved to the point of first use/definition. It's better this
way.
(3) I could use a review of the places where we MarkVTableUsed, to
see if I missed any place where the language effectively requires a
vtable.
Fixes PR7114 and PR6564.
llvm-svn: 103718
2010-05-14 00:44:06 +08:00
|
|
|
// Always emit the vtable for an explicit instantiation definition
|
|
|
|
// of a polymorphic class template specialization.
|
|
|
|
if (TSK == TSK_ExplicitInstantiationDefinition)
|
|
|
|
MarkVTableUsed(PointOfInstantiation, Instantiation, true);
|
|
|
|
}
|
|
|
|
|
2009-03-03 12:44:36 +08:00
|
|
|
return Invalid;
|
|
|
|
}
|
Introduce a new expression type, UnresolvedDeclRefExpr, that describes
dependent qualified-ids such as
Fibonacci<N - 1>::value
where N is a template parameter. These references are "unresolved"
because the name is dependent and, therefore, cannot be resolved to a
declaration node (as we would do for a DeclRefExpr or
QualifiedDeclRefExpr). UnresolvedDeclRefExprs instantiate to
DeclRefExprs, QualifiedDeclRefExprs, etc.
Also, be a bit more careful about keeping only a single set of
specializations for a class template, and instantiating from the
definition of that template rather than a previous declaration. In
general, we need a better solution for this for all TagDecls, because
it's too easy to accidentally look at a declaration that isn't the
definition.
We can now process a simple Fibonacci computation described as a
template metaprogram.
llvm-svn: 67308
2009-03-20 01:26:29 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
bool
|
2009-03-26 05:17:03 +08:00
|
|
|
Sema::InstantiateClassTemplateSpecialization(
|
2009-10-27 14:26:26 +08:00
|
|
|
SourceLocation PointOfInstantiation,
|
2009-03-26 05:17:03 +08:00
|
|
|
ClassTemplateSpecializationDecl *ClassTemplateSpec,
|
2009-09-05 06:48:11 +08:00
|
|
|
TemplateSpecializationKind TSK,
|
2009-08-24 23:23:48 +08:00
|
|
|
bool Complain) {
|
2009-03-26 05:17:03 +08:00
|
|
|
// Perform the actual instantiation on the canonical declaration.
|
|
|
|
ClassTemplateSpec = cast<ClassTemplateSpecializationDecl>(
|
2009-07-18 08:34:25 +08:00
|
|
|
ClassTemplateSpec->getCanonicalDecl());
|
2009-03-26 05:17:03 +08:00
|
|
|
|
2009-09-12 05:19:12 +08:00
|
|
|
// Check whether we have already instantiated or specialized this class
|
|
|
|
// template specialization.
|
|
|
|
if (ClassTemplateSpec->getSpecializationKind() != TSK_Undeclared) {
|
|
|
|
if (ClassTemplateSpec->getSpecializationKind() ==
|
|
|
|
TSK_ExplicitInstantiationDeclaration &&
|
|
|
|
TSK == TSK_ExplicitInstantiationDefinition) {
|
|
|
|
// An explicit instantiation definition follows an explicit instantiation
|
|
|
|
// declaration (C++0x [temp.explicit]p10); go ahead and perform the
|
|
|
|
// explicit instantiation.
|
|
|
|
ClassTemplateSpec->setSpecializationKind(TSK);
|
Rework when and how vtables are emitted, by tracking where vtables are
"used" (e.g., we will refer to the vtable in the generated code) and
when they are defined (i.e., because we've seen the key function
definition). Previously, we were effectively tracking "potential
definitions" rather than uses, so we were a bit too eager about emitting
vtables for classes without key functions.
The new scheme:
- For every use of a vtable, Sema calls MarkVTableUsed() to indicate
the use. For example, this occurs when calling a virtual member
function of the class, defining a constructor of that class type,
dynamic_cast'ing from that type to a derived class, casting
to/through a virtual base class, etc.
- For every definition of a vtable, Sema calls MarkVTableUsed() to
indicate the definition. This happens at the end of the translation
unit for classes whose key function has been defined (so we can
delay computation of the key function; see PR6564), and will also
occur with explicit template instantiation definitions.
- For every vtable defined/used, we mark all of the virtual member
functions of that vtable as defined/used, unless we know that the key
function is in another translation unit. This instantiates virtual
member functions when needed.
- At the end of the translation unit, Sema tells CodeGen (via the
ASTConsumer) which vtables must be defined (CodeGen will define
them) and which may be used (for which CodeGen will define the
vtables lazily).
From a language perspective, both the old and the new schemes are
permissible: we're allowed to instantiate virtual member functions
whenever we want per the standard. However, all other C++ compilers
were more lazy than we were, and our eagerness was both a performance
issue (we instantiated too much) and a portability problem (we broke
Boost test cases, which now pass).
Notes:
(1) There's a ton of churn in the tests, because the order in which
vtables get emitted to IR has changed. I've tried to isolate some of
the larger tests from these issues.
(2) Some diagnostics related to
implicitly-instantiated/implicitly-defined virtual member functions
have moved to the point of first use/definition. It's better this
way.
(3) I could use a review of the places where we MarkVTableUsed, to
see if I missed any place where the language effectively requires a
vtable.
Fixes PR7114 and PR6564.
llvm-svn: 103718
2010-05-14 00:44:06 +08:00
|
|
|
|
|
|
|
// If this is an explicit instantiation definition, mark the
|
|
|
|
// vtable as used.
|
|
|
|
if (TSK == TSK_ExplicitInstantiationDefinition)
|
|
|
|
MarkVTableUsed(PointOfInstantiation, ClassTemplateSpec, true);
|
|
|
|
|
2009-09-12 05:19:12 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We can only instantiate something that hasn't already been
|
|
|
|
// instantiated or specialized. Fail without any diagnostics: our
|
|
|
|
// caller will provide an error message.
|
2009-03-26 05:17:03 +08:00
|
|
|
return true;
|
2009-09-12 05:19:12 +08:00
|
|
|
}
|
2009-03-26 05:17:03 +08:00
|
|
|
|
2009-09-16 00:51:42 +08:00
|
|
|
if (ClassTemplateSpec->isInvalidDecl())
|
|
|
|
return true;
|
|
|
|
|
2009-03-26 05:17:03 +08:00
|
|
|
ClassTemplateDecl *Template = ClassTemplateSpec->getSpecializedTemplate();
|
2009-08-29 04:31:08 +08:00
|
|
|
CXXRecordDecl *Pattern = 0;
|
2009-05-31 17:31:02 +08:00
|
|
|
|
2009-06-13 06:31:52 +08:00
|
|
|
// C++ [temp.class.spec.match]p1:
|
|
|
|
// When a class template is used in a context that requires an
|
|
|
|
// instantiation of the class, it is necessary to determine
|
|
|
|
// whether the instantiation is to be generated using the primary
|
|
|
|
// template or one of the partial specializations. This is done by
|
|
|
|
// matching the template arguments of the class template
|
|
|
|
// specialization with the template argument lists of the partial
|
|
|
|
// specializations.
|
2009-06-05 08:53:49 +08:00
|
|
|
typedef std::pair<ClassTemplatePartialSpecializationDecl *,
|
|
|
|
TemplateArgumentList *> MatchResult;
|
|
|
|
llvm::SmallVector<MatchResult, 4> Matched;
|
2010-04-30 13:56:50 +08:00
|
|
|
llvm::SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
|
|
|
|
Template->getPartialSpecializations(PartialSpecs);
|
|
|
|
for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) {
|
|
|
|
ClassTemplatePartialSpecializationDecl *Partial = PartialSpecs[I];
|
2010-02-09 07:07:23 +08:00
|
|
|
TemplateDeductionInfo Info(Context, PointOfInstantiation);
|
2009-06-13 02:26:56 +08:00
|
|
|
if (TemplateDeductionResult Result
|
2010-04-30 13:56:50 +08:00
|
|
|
= DeduceTemplateArguments(Partial,
|
2009-06-13 02:26:56 +08:00
|
|
|
ClassTemplateSpec->getTemplateArgs(),
|
|
|
|
Info)) {
|
|
|
|
// FIXME: Store the failed-deduction information for use in
|
|
|
|
// diagnostics, later.
|
|
|
|
(void)Result;
|
|
|
|
} else {
|
2010-04-30 13:56:50 +08:00
|
|
|
Matched.push_back(std::make_pair(Partial, Info.take()));
|
2009-06-13 02:26:56 +08:00
|
|
|
}
|
2009-05-31 17:31:02 +08:00
|
|
|
}
|
|
|
|
|
2009-10-29 08:04:11 +08:00
|
|
|
if (Matched.size() >= 1) {
|
2009-09-16 00:23:51 +08:00
|
|
|
llvm::SmallVector<MatchResult, 4>::iterator Best = Matched.begin();
|
2009-10-29 08:04:11 +08:00
|
|
|
if (Matched.size() == 1) {
|
|
|
|
// -- If exactly one matching specialization is found, the
|
|
|
|
// instantiation is generated from that specialization.
|
|
|
|
// We don't need to do anything for this.
|
|
|
|
} else {
|
|
|
|
// -- If more than one matching specialization is found, the
|
|
|
|
// partial order rules (14.5.4.2) are used to determine
|
|
|
|
// whether one of the specializations is more specialized
|
|
|
|
// than the others. If none of the specializations is more
|
|
|
|
// specialized than all of the other matching
|
|
|
|
// specializations, then the use of the class template is
|
|
|
|
// ambiguous and the program is ill-formed.
|
|
|
|
for (llvm::SmallVector<MatchResult, 4>::iterator P = Best + 1,
|
|
|
|
PEnd = Matched.end();
|
|
|
|
P != PEnd; ++P) {
|
2010-02-09 07:07:23 +08:00
|
|
|
if (getMoreSpecializedPartialSpecialization(P->first, Best->first,
|
|
|
|
PointOfInstantiation)
|
2009-10-29 08:04:11 +08:00
|
|
|
== P->first)
|
|
|
|
Best = P;
|
2009-09-16 00:23:51 +08:00
|
|
|
}
|
|
|
|
|
2009-10-29 08:04:11 +08:00
|
|
|
// Determine if the best partial specialization is more specialized than
|
|
|
|
// the others.
|
|
|
|
bool Ambiguous = false;
|
2009-09-16 00:23:51 +08:00
|
|
|
for (llvm::SmallVector<MatchResult, 4>::iterator P = Matched.begin(),
|
|
|
|
PEnd = Matched.end();
|
2009-10-29 08:04:11 +08:00
|
|
|
P != PEnd; ++P) {
|
|
|
|
if (P != Best &&
|
2010-02-09 07:07:23 +08:00
|
|
|
getMoreSpecializedPartialSpecialization(P->first, Best->first,
|
|
|
|
PointOfInstantiation)
|
2009-10-29 08:04:11 +08:00
|
|
|
!= Best->first) {
|
|
|
|
Ambiguous = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Ambiguous) {
|
|
|
|
// Partial ordering did not produce a clear winner. Complain.
|
|
|
|
ClassTemplateSpec->setInvalidDecl();
|
|
|
|
Diag(PointOfInstantiation, diag::err_partial_spec_ordering_ambiguous)
|
|
|
|
<< ClassTemplateSpec;
|
|
|
|
|
|
|
|
// Print the matching partial specializations.
|
|
|
|
for (llvm::SmallVector<MatchResult, 4>::iterator P = Matched.begin(),
|
|
|
|
PEnd = Matched.end();
|
|
|
|
P != PEnd; ++P)
|
|
|
|
Diag(P->first->getLocation(), diag::note_partial_spec_match)
|
|
|
|
<< getTemplateArgumentBindingsText(P->first->getTemplateParameters(),
|
|
|
|
*P->second);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2009-09-16 00:23:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Instantiate using the best class template partial specialization.
|
2009-10-29 08:04:11 +08:00
|
|
|
ClassTemplatePartialSpecializationDecl *OrigPartialSpec = Best->first;
|
|
|
|
while (OrigPartialSpec->getInstantiatedFromMember()) {
|
|
|
|
// If we've found an explicit specialization of this class template,
|
|
|
|
// stop here and use that as the pattern.
|
|
|
|
if (OrigPartialSpec->isMemberSpecialization())
|
|
|
|
break;
|
|
|
|
|
|
|
|
OrigPartialSpec = OrigPartialSpec->getInstantiatedFromMember();
|
|
|
|
}
|
|
|
|
|
|
|
|
Pattern = OrigPartialSpec;
|
2009-09-16 00:23:51 +08:00
|
|
|
ClassTemplateSpec->setInstantiationOf(Best->first, Best->second);
|
2009-06-13 06:31:52 +08:00
|
|
|
} else {
|
|
|
|
// -- If no matches are found, the instantiation is generated
|
|
|
|
// from the primary template.
|
2009-08-29 04:31:08 +08:00
|
|
|
ClassTemplateDecl *OrigTemplate = Template;
|
2009-10-14 00:30:37 +08:00
|
|
|
while (OrigTemplate->getInstantiatedFromMemberTemplate()) {
|
|
|
|
// If we've found an explicit specialization of this class template,
|
|
|
|
// stop here and use that as the pattern.
|
|
|
|
if (OrigTemplate->isMemberSpecialization())
|
|
|
|
break;
|
|
|
|
|
2009-08-29 04:31:08 +08:00
|
|
|
OrigTemplate = OrigTemplate->getInstantiatedFromMemberTemplate();
|
2009-10-14 00:30:37 +08:00
|
|
|
}
|
|
|
|
|
2009-08-29 04:31:08 +08:00
|
|
|
Pattern = OrigTemplate->getTemplatedDecl();
|
2009-05-31 17:31:02 +08:00
|
|
|
}
|
2009-03-26 05:17:03 +08:00
|
|
|
|
2009-10-27 14:26:26 +08:00
|
|
|
bool Result = InstantiateClass(PointOfInstantiation, ClassTemplateSpec,
|
|
|
|
Pattern,
|
|
|
|
getTemplateInstantiationArgs(ClassTemplateSpec),
|
2009-09-05 06:48:11 +08:00
|
|
|
TSK,
|
2009-08-24 23:23:48 +08:00
|
|
|
Complain);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
for (unsigned I = 0, N = Matched.size(); I != N; ++I) {
|
|
|
|
// FIXME: Implement TemplateArgumentList::Destroy!
|
|
|
|
// if (Matched[I].first != Pattern)
|
|
|
|
// Matched[I].second->Destroy(Context);
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-05 08:53:49 +08:00
|
|
|
return Result;
|
2009-03-26 05:17:03 +08:00
|
|
|
}
|
|
|
|
|
2009-08-26 06:02:44 +08:00
|
|
|
/// \brief Instantiates the definitions of all of the member
|
|
|
|
/// of the given class, which is an instantiation of a class template
|
|
|
|
/// or a member class of a template.
|
2009-05-14 04:28:22 +08:00
|
|
|
void
|
|
|
|
Sema::InstantiateClassMembers(SourceLocation PointOfInstantiation,
|
2009-09-05 06:48:11 +08:00
|
|
|
CXXRecordDecl *Instantiation,
|
|
|
|
const MultiLevelTemplateArgumentList &TemplateArgs,
|
|
|
|
TemplateSpecializationKind TSK) {
|
2009-06-30 10:36:12 +08:00
|
|
|
for (DeclContext::decl_iterator D = Instantiation->decls_begin(),
|
|
|
|
DEnd = Instantiation->decls_end();
|
2009-05-14 04:28:22 +08:00
|
|
|
D != DEnd; ++D) {
|
2009-10-28 02:42:08 +08:00
|
|
|
bool SuppressNew = false;
|
2009-05-14 04:28:22 +08:00
|
|
|
if (FunctionDecl *Function = dyn_cast<FunctionDecl>(*D)) {
|
2009-10-28 02:42:08 +08:00
|
|
|
if (FunctionDecl *Pattern
|
|
|
|
= Function->getInstantiatedFromMemberFunction()) {
|
|
|
|
MemberSpecializationInfo *MSInfo
|
|
|
|
= Function->getMemberSpecializationInfo();
|
|
|
|
assert(MSInfo && "No member specialization information?");
|
2010-04-10 05:02:29 +08:00
|
|
|
if (MSInfo->getTemplateSpecializationKind()
|
|
|
|
== TSK_ExplicitSpecialization)
|
|
|
|
continue;
|
|
|
|
|
2009-10-28 02:42:08 +08:00
|
|
|
if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK,
|
|
|
|
Function,
|
|
|
|
MSInfo->getTemplateSpecializationKind(),
|
|
|
|
MSInfo->getPointOfInstantiation(),
|
|
|
|
SuppressNew) ||
|
|
|
|
SuppressNew)
|
2009-10-08 23:14:33 +08:00
|
|
|
continue;
|
|
|
|
|
2009-10-28 02:42:08 +08:00
|
|
|
if (Function->getBody())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (TSK == TSK_ExplicitInstantiationDefinition) {
|
|
|
|
// C++0x [temp.explicit]p8:
|
|
|
|
// An explicit instantiation definition that names a class template
|
|
|
|
// specialization explicitly instantiates the class template
|
|
|
|
// specialization and is only an explicit instantiation definition
|
|
|
|
// of members whose definition is visible at the point of
|
|
|
|
// instantiation.
|
|
|
|
if (!Pattern->getBody())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Function->setTemplateSpecializationKind(TSK, PointOfInstantiation);
|
|
|
|
|
|
|
|
InstantiateFunctionDefinition(PointOfInstantiation, Function);
|
|
|
|
} else {
|
|
|
|
Function->setTemplateSpecializationKind(TSK, PointOfInstantiation);
|
|
|
|
}
|
2009-10-08 23:14:33 +08:00
|
|
|
}
|
2009-05-14 04:28:22 +08:00
|
|
|
} else if (VarDecl *Var = dyn_cast<VarDecl>(*D)) {
|
2009-10-08 15:24:58 +08:00
|
|
|
if (Var->isStaticDataMember()) {
|
2009-10-28 02:42:08 +08:00
|
|
|
MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo();
|
|
|
|
assert(MSInfo && "No member specialization information?");
|
2010-04-10 05:02:29 +08:00
|
|
|
if (MSInfo->getTemplateSpecializationKind()
|
|
|
|
== TSK_ExplicitSpecialization)
|
|
|
|
continue;
|
|
|
|
|
2009-10-28 02:42:08 +08:00
|
|
|
if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK,
|
|
|
|
Var,
|
|
|
|
MSInfo->getTemplateSpecializationKind(),
|
|
|
|
MSInfo->getPointOfInstantiation(),
|
|
|
|
SuppressNew) ||
|
|
|
|
SuppressNew)
|
2009-10-08 23:14:33 +08:00
|
|
|
continue;
|
|
|
|
|
2009-10-28 02:42:08 +08:00
|
|
|
if (TSK == TSK_ExplicitInstantiationDefinition) {
|
|
|
|
// C++0x [temp.explicit]p8:
|
|
|
|
// An explicit instantiation definition that names a class template
|
|
|
|
// specialization explicitly instantiates the class template
|
|
|
|
// specialization and is only an explicit instantiation definition
|
|
|
|
// of members whose definition is visible at the point of
|
|
|
|
// instantiation.
|
|
|
|
if (!Var->getInstantiatedFromStaticDataMember()
|
|
|
|
->getOutOfLineDefinition())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Var->setTemplateSpecializationKind(TSK, PointOfInstantiation);
|
2009-10-08 15:24:58 +08:00
|
|
|
InstantiateStaticDataMemberDefinition(PointOfInstantiation, Var);
|
2009-10-28 02:42:08 +08:00
|
|
|
} else {
|
|
|
|
Var->setTemplateSpecializationKind(TSK, PointOfInstantiation);
|
|
|
|
}
|
|
|
|
}
|
2009-05-14 04:28:22 +08:00
|
|
|
} else if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(*D)) {
|
2010-04-19 02:11:38 +08:00
|
|
|
// Always skip the injected-class-name, along with any
|
|
|
|
// redeclarations of nested classes, since both would cause us
|
|
|
|
// to try to instantiate the members of a class twice.
|
|
|
|
if (Record->isInjectedClassName() || Record->getPreviousDeclaration())
|
2009-10-08 07:56:10 +08:00
|
|
|
continue;
|
|
|
|
|
2009-10-28 02:42:08 +08:00
|
|
|
MemberSpecializationInfo *MSInfo = Record->getMemberSpecializationInfo();
|
|
|
|
assert(MSInfo && "No member specialization information?");
|
2010-04-10 05:02:29 +08:00
|
|
|
|
|
|
|
if (MSInfo->getTemplateSpecializationKind()
|
|
|
|
== TSK_ExplicitSpecialization)
|
|
|
|
continue;
|
|
|
|
|
2009-10-28 02:42:08 +08:00
|
|
|
if (CheckSpecializationInstantiationRedecl(PointOfInstantiation, TSK,
|
|
|
|
Record,
|
|
|
|
MSInfo->getTemplateSpecializationKind(),
|
|
|
|
MSInfo->getPointOfInstantiation(),
|
|
|
|
SuppressNew) ||
|
|
|
|
SuppressNew)
|
2009-10-08 23:14:33 +08:00
|
|
|
continue;
|
|
|
|
|
2009-10-28 02:42:08 +08:00
|
|
|
CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass();
|
|
|
|
assert(Pattern && "Missing instantiated-from-template information");
|
|
|
|
|
2010-02-11 09:04:33 +08:00
|
|
|
if (!Record->getDefinition()) {
|
|
|
|
if (!Pattern->getDefinition()) {
|
2009-10-28 02:42:08 +08:00
|
|
|
// C++0x [temp.explicit]p8:
|
|
|
|
// An explicit instantiation definition that names a class template
|
|
|
|
// specialization explicitly instantiates the class template
|
|
|
|
// specialization and is only an explicit instantiation definition
|
|
|
|
// of members whose definition is visible at the point of
|
|
|
|
// instantiation.
|
|
|
|
if (TSK == TSK_ExplicitInstantiationDeclaration) {
|
|
|
|
MSInfo->setTemplateSpecializationKind(TSK);
|
|
|
|
MSInfo->setPointOfInstantiation(PointOfInstantiation);
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
InstantiateClass(PointOfInstantiation, Record, Pattern,
|
2009-09-05 06:48:11 +08:00
|
|
|
TemplateArgs,
|
|
|
|
TSK);
|
2009-10-28 02:42:08 +08:00
|
|
|
}
|
2009-10-08 09:19:17 +08:00
|
|
|
|
2010-02-11 09:04:33 +08:00
|
|
|
Pattern = cast_or_null<CXXRecordDecl>(Record->getDefinition());
|
2009-10-28 02:42:08 +08:00
|
|
|
if (Pattern)
|
|
|
|
InstantiateClassMembers(PointOfInstantiation, Pattern, TemplateArgs,
|
|
|
|
TSK);
|
2009-05-14 04:28:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Instantiate the definitions of all of the members of the
|
|
|
|
/// given class template specialization, which was named as part of an
|
|
|
|
/// explicit instantiation.
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
2009-09-05 06:48:11 +08:00
|
|
|
Sema::InstantiateClassTemplateSpecializationMembers(
|
2009-05-14 04:28:22 +08:00
|
|
|
SourceLocation PointOfInstantiation,
|
2009-09-05 06:48:11 +08:00
|
|
|
ClassTemplateSpecializationDecl *ClassTemplateSpec,
|
|
|
|
TemplateSpecializationKind TSK) {
|
2009-05-14 04:28:22 +08:00
|
|
|
// C++0x [temp.explicit]p7:
|
|
|
|
// An explicit instantiation that names a class template
|
|
|
|
// specialization is an explicit instantion of the same kind
|
|
|
|
// (declaration or definition) of each of its members (not
|
|
|
|
// including members inherited from base classes) that has not
|
|
|
|
// been previously explicitly specialized in the translation unit
|
|
|
|
// containing the explicit instantiation, except as described
|
|
|
|
// below.
|
|
|
|
InstantiateClassMembers(PointOfInstantiation, ClassTemplateSpec,
|
2009-09-05 06:48:11 +08:00
|
|
|
getTemplateInstantiationArgs(ClassTemplateSpec),
|
|
|
|
TSK);
|
2009-05-14 04:28:22 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
Sema::OwningStmtResult
|
2009-08-29 04:31:08 +08:00
|
|
|
Sema::SubstStmt(Stmt *S, const MultiLevelTemplateArgumentList &TemplateArgs) {
|
2009-08-20 15:17:43 +08:00
|
|
|
if (!S)
|
|
|
|
return Owned(S);
|
|
|
|
|
|
|
|
TemplateInstantiator Instantiator(*this, TemplateArgs,
|
|
|
|
SourceLocation(),
|
|
|
|
DeclarationName());
|
|
|
|
return Instantiator.TransformStmt(S);
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
Sema::OwningExprResult
|
2009-08-29 04:31:08 +08:00
|
|
|
Sema::SubstExpr(Expr *E, const MultiLevelTemplateArgumentList &TemplateArgs) {
|
2009-08-11 13:31:07 +08:00
|
|
|
if (!E)
|
|
|
|
return Owned(E);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-11 13:31:07 +08:00
|
|
|
TemplateInstantiator Instantiator(*this, TemplateArgs,
|
|
|
|
SourceLocation(),
|
|
|
|
DeclarationName());
|
|
|
|
return Instantiator.TransformExpr(E);
|
|
|
|
}
|
|
|
|
|
2009-08-26 06:02:44 +08:00
|
|
|
/// \brief Do template substitution on a nested-name-specifier.
|
2009-03-27 07:50:42 +08:00
|
|
|
NestedNameSpecifier *
|
2009-08-26 06:02:44 +08:00
|
|
|
Sema::SubstNestedNameSpecifier(NestedNameSpecifier *NNS,
|
2009-08-29 04:31:08 +08:00
|
|
|
SourceRange Range,
|
|
|
|
const MultiLevelTemplateArgumentList &TemplateArgs) {
|
2009-08-06 13:28:30 +08:00
|
|
|
TemplateInstantiator Instantiator(*this, TemplateArgs, Range.getBegin(),
|
|
|
|
DeclarationName());
|
2010-02-25 12:46:04 +08:00
|
|
|
return Instantiator.TransformNestedNameSpecifier(NNS, Range);
|
Introduce a new expression type, UnresolvedDeclRefExpr, that describes
dependent qualified-ids such as
Fibonacci<N - 1>::value
where N is a template parameter. These references are "unresolved"
because the name is dependent and, therefore, cannot be resolved to a
declaration node (as we would do for a DeclRefExpr or
QualifiedDeclRefExpr). UnresolvedDeclRefExprs instantiate to
DeclRefExprs, QualifiedDeclRefExprs, etc.
Also, be a bit more careful about keeping only a single set of
specializations for a class template, and instantiating from the
definition of that template rather than a previous declaration. In
general, we need a better solution for this for all TagDecls, because
it's too easy to accidentally look at a declaration that isn't the
definition.
We can now process a simple Fibonacci computation described as a
template metaprogram.
llvm-svn: 67308
2009-03-20 01:26:29 +08:00
|
|
|
}
|
2009-04-01 02:38:02 +08:00
|
|
|
|
|
|
|
TemplateName
|
2009-08-26 06:02:44 +08:00
|
|
|
Sema::SubstTemplateName(TemplateName Name, SourceLocation Loc,
|
2009-08-29 04:31:08 +08:00
|
|
|
const MultiLevelTemplateArgumentList &TemplateArgs) {
|
2009-08-06 14:41:21 +08:00
|
|
|
TemplateInstantiator Instantiator(*this, TemplateArgs, Loc,
|
|
|
|
DeclarationName());
|
|
|
|
return Instantiator.TransformTemplateName(Name);
|
2009-04-01 02:38:02 +08:00
|
|
|
}
|
2009-06-11 08:06:24 +08:00
|
|
|
|
2009-10-29 16:12:44 +08:00
|
|
|
bool Sema::Subst(const TemplateArgumentLoc &Input, TemplateArgumentLoc &Output,
|
|
|
|
const MultiLevelTemplateArgumentList &TemplateArgs) {
|
2009-08-05 06:27:00 +08:00
|
|
|
TemplateInstantiator Instantiator(*this, TemplateArgs, SourceLocation(),
|
|
|
|
DeclarationName());
|
2009-10-29 16:12:44 +08:00
|
|
|
|
|
|
|
return Instantiator.TransformTemplateArgument(Input, Output);
|
2009-06-11 08:06:24 +08:00
|
|
|
}
|
2010-05-01 02:55:50 +08:00
|
|
|
|
|
|
|
Decl *Sema::LocalInstantiationScope::getInstantiationOf(const Decl *D) {
|
|
|
|
for (LocalInstantiationScope *Current = this; Current;
|
|
|
|
Current = Current->Outer) {
|
|
|
|
// Check if we found something within this scope.
|
|
|
|
llvm::DenseMap<const Decl *, Decl *>::iterator Found
|
|
|
|
= Current->LocalDecls.find(D);
|
|
|
|
if (Found != Current->LocalDecls.end())
|
|
|
|
return Found->second;
|
|
|
|
|
|
|
|
// If we aren't combined with our outer scope, we're done.
|
|
|
|
if (!Current->CombineWithOuterScope)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(D->isInvalidDecl() &&
|
|
|
|
"declaration was not instantiated in this scope!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sema::LocalInstantiationScope::InstantiatedLocal(const Decl *D,
|
|
|
|
Decl *Inst) {
|
|
|
|
Decl *&Stored = LocalDecls[D];
|
|
|
|
assert((!Stored || Stored == Inst)&& "Already instantiated this local");
|
|
|
|
Stored = Inst;
|
|
|
|
}
|