2016-12-18 00:35:53 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "NonMemMovableTemplateArgChecker.h"
|
|
|
|
#include "CustomMatchers.h"
|
|
|
|
|
2017-10-20 20:11:50 +03:00
|
|
|
void NonMemMovableTemplateArgChecker::registerMatchers(
|
|
|
|
MatchFinder *AstMatcher) {
|
2016-12-18 00:35:53 +03:00
|
|
|
// Handle non-mem-movable template specializations
|
2016-12-18 05:14:37 +03:00
|
|
|
AstMatcher->addMatcher(
|
2016-12-18 00:35:53 +03:00
|
|
|
classTemplateSpecializationDecl(
|
|
|
|
allOf(needsMemMovableTemplateArg(),
|
|
|
|
hasAnyTemplateArgument(refersToType(isNonMemMovable()))))
|
|
|
|
.bind("specialization"),
|
|
|
|
this);
|
|
|
|
}
|
|
|
|
|
2016-12-18 05:14:37 +03:00
|
|
|
void NonMemMovableTemplateArgChecker::check(
|
2016-12-18 00:35:53 +03:00
|
|
|
const MatchFinder::MatchResult &Result) {
|
2017-10-20 20:11:50 +03:00
|
|
|
const char *Error =
|
2016-12-18 05:14:37 +03:00
|
|
|
"Cannot instantiate %0 with non-memmovable template argument %1";
|
2017-10-20 20:11:50 +03:00
|
|
|
const char *Note = "instantiation of %0 requested here";
|
2016-12-18 00:35:53 +03:00
|
|
|
|
|
|
|
// Get the specialization
|
|
|
|
const ClassTemplateSpecializationDecl *Specialization =
|
|
|
|
Result.Nodes.getNodeAs<ClassTemplateSpecializationDecl>("specialization");
|
|
|
|
SourceLocation RequestLoc = Specialization->getPointOfInstantiation();
|
|
|
|
|
|
|
|
// Report an error for every template argument which is non-memmovable
|
|
|
|
const TemplateArgumentList &Args =
|
|
|
|
Specialization->getTemplateInstantiationArgs();
|
|
|
|
for (unsigned i = 0; i < Args.size(); ++i) {
|
|
|
|
QualType ArgType = Args[i].getAsType();
|
|
|
|
if (NonMemMovable.hasEffectiveAnnotation(ArgType)) {
|
2017-10-20 20:11:50 +03:00
|
|
|
diag(Specialization->getLocation(), Error, DiagnosticIDs::Error)
|
|
|
|
<< Specialization << ArgType;
|
2016-12-18 00:35:53 +03:00
|
|
|
// XXX It would be really nice if we could get the instantiation stack
|
|
|
|
// information
|
|
|
|
// from Sema such that we could print a full template instantiation stack,
|
|
|
|
// however,
|
|
|
|
// it seems as though that information is thrown out by the time we get
|
|
|
|
// here so we
|
|
|
|
// can only report one level of template specialization (which in many
|
|
|
|
// cases won't
|
|
|
|
// be useful)
|
2016-12-18 05:14:37 +03:00
|
|
|
diag(RequestLoc, Note, DiagnosticIDs::Note) << Specialization;
|
|
|
|
NonMemMovable.dumpAnnotationReason(*this, ArgType, RequestLoc);
|
2016-12-18 00:35:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|