2009-10-29 07:48:15 +00:00
|
|
|
//===--- TemplateBase.cpp - Common template AST class implementation ------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements common classes used throughout C++ template
|
|
|
|
// representations.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/ADT/FoldingSet.h"
|
|
|
|
#include "clang/AST/TemplateBase.h"
|
|
|
|
#include "clang/AST/DeclBase.h"
|
2009-11-23 12:52:47 +00:00
|
|
|
#include "clang/AST/DeclTemplate.h"
|
2009-10-29 07:48:15 +00:00
|
|
|
#include "clang/AST/Expr.h"
|
2009-10-29 08:12:44 +00:00
|
|
|
#include "clang/AST/TypeLoc.h"
|
2010-05-08 17:41:32 +00:00
|
|
|
#include "clang/Basic/Diagnostic.h"
|
2009-10-29 07:48:15 +00:00
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// TemplateArgument Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
Variadic templates: extend Type, NestedNameSpecifier, TemplateName,
and TemplateArgument with an operation that determines whether there
are any unexpanded parameter packs within that construct. Use this
information to diagnose the appearance of the names of parameter packs
that have not been expanded (C++ [temp.variadic]p5). Since this
property is checked often (every declaration, ever expression
statement, etc.), we extend Type and Expr with a bit storing the
result of this computation, rather than walking the AST each time to
determine whether any unexpanded parameter packs occur.
This commit is deficient in several ways, which will be remedied with
future commits:
- Expr has a bit to store the presence of an unexpanded parameter
pack, but it is never set.
- The error messages don't point out where the unexpanded parameter
packs were named in the type/expression, but they should.
- We don't check for unexpanded parameter packs in all of the places
where we should.
- Testing is sparse, pending the resolution of the above three
issues.
llvm-svn: 121724
2010-12-13 22:49:22 +00:00
|
|
|
bool TemplateArgument::containsUnexpandedParameterPack() const {
|
|
|
|
switch (getKind()) {
|
|
|
|
case Null:
|
|
|
|
case Declaration:
|
|
|
|
case Integral:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Type:
|
|
|
|
if (getAsType()->containsUnexpandedParameterPack())
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Template:
|
|
|
|
if (getAsTemplate().containsUnexpandedParameterPack())
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Expression:
|
|
|
|
if (getAsExpr()->containsUnexpandedParameterPack())
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Pack:
|
|
|
|
for (pack_iterator P = pack_begin(), PEnd = pack_end(); P != PEnd; ++P)
|
|
|
|
if (P->containsUnexpandedParameterPack())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-29 07:48:15 +00:00
|
|
|
void TemplateArgument::Profile(llvm::FoldingSetNodeID &ID,
|
|
|
|
ASTContext &Context) const {
|
|
|
|
ID.AddInteger(Kind);
|
|
|
|
switch (Kind) {
|
|
|
|
case Null:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Type:
|
|
|
|
getAsType().Profile(ID);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Declaration:
|
|
|
|
ID.AddPointer(getAsDecl()? getAsDecl()->getCanonicalDecl() : 0);
|
|
|
|
break;
|
|
|
|
|
2009-11-11 01:00:40 +00:00
|
|
|
case Template:
|
2009-11-23 12:52:47 +00:00
|
|
|
if (TemplateTemplateParmDecl *TTP
|
|
|
|
= dyn_cast_or_null<TemplateTemplateParmDecl>(
|
|
|
|
getAsTemplate().getAsTemplateDecl())) {
|
|
|
|
ID.AddBoolean(true);
|
|
|
|
ID.AddInteger(TTP->getDepth());
|
|
|
|
ID.AddInteger(TTP->getPosition());
|
|
|
|
} else {
|
|
|
|
ID.AddBoolean(false);
|
|
|
|
ID.AddPointer(Context.getCanonicalTemplateName(getAsTemplate())
|
|
|
|
.getAsVoidPointer());
|
|
|
|
}
|
2009-11-11 01:00:40 +00:00
|
|
|
break;
|
|
|
|
|
2009-10-29 07:48:15 +00:00
|
|
|
case Integral:
|
|
|
|
getAsIntegral()->Profile(ID);
|
|
|
|
getIntegralType().Profile(ID);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Expression:
|
|
|
|
getAsExpr()->Profile(ID, Context, true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Pack:
|
|
|
|
ID.AddInteger(Args.NumArgs);
|
|
|
|
for (unsigned I = 0; I != Args.NumArgs; ++I)
|
|
|
|
Args.Args[I].Profile(ID, Context);
|
|
|
|
}
|
|
|
|
}
|
2009-10-29 08:12:44 +00:00
|
|
|
|
2010-06-11 00:33:02 +00:00
|
|
|
bool TemplateArgument::structurallyEquals(const TemplateArgument &Other) const {
|
|
|
|
if (getKind() != Other.getKind()) return false;
|
|
|
|
|
|
|
|
switch (getKind()) {
|
|
|
|
case Null:
|
|
|
|
case Type:
|
|
|
|
case Declaration:
|
|
|
|
case Template:
|
|
|
|
case Expression:
|
|
|
|
return TypeOrValue == Other.TypeOrValue;
|
|
|
|
|
|
|
|
case Integral:
|
|
|
|
return getIntegralType() == Other.getIntegralType() &&
|
|
|
|
*getAsIntegral() == *Other.getAsIntegral();
|
|
|
|
|
|
|
|
case Pack:
|
|
|
|
if (Args.NumArgs != Other.Args.NumArgs) return false;
|
|
|
|
for (unsigned I = 0, E = Args.NumArgs; I != E; ++I)
|
|
|
|
if (!Args.Args[I].structurallyEquals(Other.Args.Args[I]))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Suppress warnings.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-29 08:12:44 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// TemplateArgumentLoc Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-10-29 18:45:58 +00:00
|
|
|
SourceRange TemplateArgumentLoc::getSourceRange() const {
|
2009-10-29 08:12:44 +00:00
|
|
|
switch (Argument.getKind()) {
|
|
|
|
case TemplateArgument::Expression:
|
2009-10-29 18:45:58 +00:00
|
|
|
return getSourceExpression()->getSourceRange();
|
2010-09-03 23:50:56 +00:00
|
|
|
|
2009-10-29 08:12:44 +00:00
|
|
|
case TemplateArgument::Declaration:
|
2009-10-29 18:45:58 +00:00
|
|
|
return getSourceDeclExpression()->getSourceRange();
|
2010-09-03 23:50:56 +00:00
|
|
|
|
2009-10-29 18:45:58 +00:00
|
|
|
case TemplateArgument::Type:
|
2010-09-03 23:50:56 +00:00
|
|
|
if (TypeSourceInfo *TSI = getTypeSourceInfo())
|
|
|
|
return TSI->getTypeLoc().getSourceRange();
|
|
|
|
else
|
|
|
|
return SourceRange();
|
|
|
|
|
2009-11-11 01:00:40 +00:00
|
|
|
case TemplateArgument::Template:
|
|
|
|
if (getTemplateQualifierRange().isValid())
|
|
|
|
return SourceRange(getTemplateQualifierRange().getBegin(),
|
|
|
|
getTemplateNameLoc());
|
|
|
|
return SourceRange(getTemplateNameLoc());
|
2010-09-03 23:50:56 +00:00
|
|
|
|
2009-10-29 08:12:44 +00:00
|
|
|
case TemplateArgument::Integral:
|
|
|
|
case TemplateArgument::Pack:
|
|
|
|
case TemplateArgument::Null:
|
2009-10-29 18:45:58 +00:00
|
|
|
return SourceRange();
|
2009-10-29 08:12:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Silence bonus gcc warning.
|
2009-10-29 18:45:58 +00:00
|
|
|
return SourceRange();
|
2009-10-29 08:12:44 +00:00
|
|
|
}
|
2010-05-08 17:41:32 +00:00
|
|
|
|
|
|
|
const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB,
|
|
|
|
const TemplateArgument &Arg) {
|
|
|
|
switch (Arg.getKind()) {
|
|
|
|
case TemplateArgument::Null:
|
2010-08-05 04:58:04 +00:00
|
|
|
// This is bad, but not as bad as crashing because of argument
|
|
|
|
// count mismatches.
|
|
|
|
return DB << "(null template argument)";
|
2010-05-08 17:41:32 +00:00
|
|
|
|
|
|
|
case TemplateArgument::Type:
|
|
|
|
return DB << Arg.getAsType();
|
|
|
|
|
|
|
|
case TemplateArgument::Declaration:
|
|
|
|
return DB << Arg.getAsDecl();
|
|
|
|
|
|
|
|
case TemplateArgument::Integral:
|
|
|
|
return DB << Arg.getAsIntegral()->toString(10);
|
|
|
|
|
|
|
|
case TemplateArgument::Template:
|
|
|
|
return DB << Arg.getAsTemplate();
|
|
|
|
|
|
|
|
case TemplateArgument::Expression: {
|
|
|
|
// This shouldn't actually ever happen, so it's okay that we're
|
|
|
|
// regurgitating an expression here.
|
|
|
|
// FIXME: We're guessing at LangOptions!
|
|
|
|
llvm::SmallString<32> Str;
|
|
|
|
llvm::raw_svector_ostream OS(Str);
|
|
|
|
LangOptions LangOpts;
|
|
|
|
LangOpts.CPlusPlus = true;
|
|
|
|
PrintingPolicy Policy(LangOpts);
|
|
|
|
Arg.getAsExpr()->printPretty(OS, 0, Policy);
|
|
|
|
return DB << OS.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
case TemplateArgument::Pack:
|
|
|
|
// FIXME: Format arguments in a list!
|
|
|
|
return DB << "<parameter pack>";
|
|
|
|
}
|
|
|
|
|
|
|
|
return DB;
|
|
|
|
}
|