summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2016-07-28 00:42:01 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2016-07-28 00:42:01 +0000
commitc67dd95697b35654614b04d00c8fd7c720ff49b0 (patch)
tree0ad8246377737a8be5c5cd529455a4bed8ae923b
parent2e46f720fadddbc4ea8ef80ede715e9da1037d3f (diff)
downloadbcm5719-llvm-c67dd95697b35654614b04d00c8fd7c720ff49b0.tar.gz
bcm5719-llvm-c67dd95697b35654614b04d00c8fd7c720ff49b0.zip
clang-rename: adjust NamedDeclFindingASTVisitor for RecordDecls
Ensure that Context is always properly initialised in the constructor. It is used for querying the LangOpts in VisitTypeLoc. Prevent a null pointer dereference in setResult by ensuring that a RecordDecl is being handled. Patch by Alexander Shaposhnikov! llvm-svn: 276948
-rw-r--r--clang-tools-extra/clang-rename/USRFinder.cpp14
-rw-r--r--clang-tools-extra/test/clang-rename/FunctionWithClassFindByName.cpp13
2 files changed, 21 insertions, 6 deletions
diff --git a/clang-tools-extra/clang-rename/USRFinder.cpp b/clang-tools-extra/clang-rename/USRFinder.cpp
index b64b20d54bf..0c8eefaa37c 100644
--- a/clang-tools-extra/clang-rename/USRFinder.cpp
+++ b/clang-tools-extra/clang-rename/USRFinder.cpp
@@ -42,8 +42,9 @@ public:
// \brief Finds the NamedDecl for a name in the source.
// \param Name the fully qualified name.
explicit NamedDeclFindingASTVisitor(const SourceManager &SourceMgr,
- const std::string &Name)
- : Result(nullptr), SourceMgr(SourceMgr), Name(Name) {}
+ const std::string &Name,
+ const ASTContext *Context)
+ : Result(nullptr), SourceMgr(SourceMgr), Name(Name), Context(Context) {}
// Declaration visitors:
@@ -75,9 +76,10 @@ public:
bool VisitTypeLoc(const TypeLoc Loc) {
const auto TypeBeginLoc = Loc.getBeginLoc();
const auto TypeEndLoc = Lexer::getLocForEndOfToken(
- TypeBeginLoc, 0, SourceMgr, Context->getLangOpts());
- return setResult(Loc.getType()->getAsCXXRecordDecl(), TypeBeginLoc,
- TypeEndLoc);
+ TypeBeginLoc, 0, SourceMgr, Context->getLangOpts());
+ if (auto *RD = Loc.getType()->getAsCXXRecordDecl())
+ return setResult(RD, TypeBeginLoc, TypeEndLoc);
+ return true;
}
// Other:
@@ -170,7 +172,7 @@ const NamedDecl *getNamedDeclAt(const ASTContext &Context,
const NamedDecl *getNamedDeclFor(const ASTContext &Context,
const std::string &Name) {
const auto &SourceMgr = Context.getSourceManager();
- NamedDeclFindingASTVisitor Visitor(SourceMgr, Name);
+ NamedDeclFindingASTVisitor Visitor(SourceMgr, Name, &Context);
Visitor.TraverseDecl(Context.getTranslationUnitDecl());
return Visitor.getNamedDecl();
diff --git a/clang-tools-extra/test/clang-rename/FunctionWithClassFindByName.cpp b/clang-tools-extra/test/clang-rename/FunctionWithClassFindByName.cpp
new file mode 100644
index 00000000000..32681b6714c
--- /dev/null
+++ b/clang-tools-extra/test/clang-rename/FunctionWithClassFindByName.cpp
@@ -0,0 +1,13 @@
+// RUN: clang-rename -old-name=Foo -new-name=Bar %s -- | FileCheck %s
+
+void foo() {
+}
+
+class Foo { // CHECK: class Bar
+};
+
+int main() {
+ Foo *Pointer = 0; // CHECK: Bar *Pointer = 0;
+ return 0;
+}
+
OpenPOWER on IntegriCloud