summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-rename/USRFinder.h
diff options
context:
space:
mode:
authorManuel Klimek <klimek@google.com>2014-08-20 01:39:05 +0000
committerManuel Klimek <klimek@google.com>2014-08-20 01:39:05 +0000
commitde23726dbd92b72a84b74725f7561adca0f1cee3 (patch)
tree63aa9d3e63f3a621d508fa7e38cc9049525d6ce5 /clang-tools-extra/clang-rename/USRFinder.h
parent0781b860e44add0aa306197c643ebe40087d9dad (diff)
downloadbcm5719-llvm-de23726dbd92b72a84b74725f7561adca0f1cee3.tar.gz
bcm5719-llvm-de23726dbd92b72a84b74725f7561adca0f1cee3.zip
Revert rL215947: "[clang-rename] revert r215839"
Make tests not depend on grep supporting -bo. llvm-svn: 216041
Diffstat (limited to 'clang-tools-extra/clang-rename/USRFinder.h')
-rw-r--r--clang-tools-extra/clang-rename/USRFinder.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/clang-tools-extra/clang-rename/USRFinder.h b/clang-tools-extra/clang-rename/USRFinder.h
new file mode 100644
index 00000000000..2de6f4272af
--- /dev/null
+++ b/clang-tools-extra/clang-rename/USRFinder.h
@@ -0,0 +1,39 @@
+//===--- tools/extra/clang-rename/USRFinder.h - Clang rename tool ---------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// \brief Methods for determining the USR of a symbol at a location in source
+/// code.
+///
+//===----------------------------------------------------------------------===//
+#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_RENAME_USR_FINDER_H
+#define LLVM_CLANG_TOOLS_EXTRA_CLANG_RENAME_USR_FINDER_H
+
+#include <string>
+
+namespace clang {
+class ASTContext;
+class Decl;
+class SourceLocation;
+class NamedDecl;
+
+namespace rename {
+
+// Given an AST context and a point, returns a NamedDecl identifying the symbol
+// at the point. Returns null if nothing is found at the point.
+const NamedDecl *getNamedDeclAt(const ASTContext &Context,
+ const SourceLocation Point);
+
+// Converts a Decl into a USR.
+std::string getUSRForDecl(const Decl *Decl);
+
+}
+}
+
+#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_RENAME_USR_FINDER_H
OpenPOWER on IntegriCloud