diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-01-14 00:11:49 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-01-14 00:11:49 +0000 |
commit | 22490747c123a78feec089539f30426084d348cf (patch) | |
tree | f03c378c01ad722111d3801e92479e9cd6b53a0b /tools | |
parent | 91534a357695fbdf3c136fb04218e37706da73a9 (diff) |
[libclang] Add CXIndexOpt_IndexFunctionLocalSymbols indexing option to indicate
that one wants indexing callbacks for function-local symbols as well.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@148160 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/c-index-test/c-index-test.c | 21 | ||||
-rw-r--r-- | tools/libclang/IndexBody.cpp | 6 | ||||
-rw-r--r-- | tools/libclang/IndexingContext.cpp | 2 | ||||
-rw-r--r-- | tools/libclang/IndexingContext.h | 4 |
4 files changed, 24 insertions, 9 deletions
diff --git a/tools/c-index-test/c-index-test.c b/tools/c-index-test/c-index-test.c index d46f2dc499..03eeb511cd 100644 --- a/tools/c-index-test/c-index-test.c +++ b/tools/c-index-test/c-index-test.c @@ -1911,6 +1911,17 @@ static IndexerCallbacks IndexCB = { index_indexEntityReference }; +static unsigned getIndexOptions(void) { + unsigned index_opts; + index_opts = 0; + if (getenv("CINDEXTEST_SUPPRESSREFS")) + index_opts |= CXIndexOpt_SuppressRedundantRefs; + if (getenv("CINDEXTEST_INDEXLOCALSYMBOLS")) + index_opts |= CXIndexOpt_IndexFunctionLocalSymbols; + + return index_opts; +} + static int index_file(int argc, const char **argv) { const char *check_prefix; CXIndex Idx; @@ -1946,10 +1957,7 @@ static int index_file(int argc, const char **argv) { index_data.fail_for_error = 0; index_data.abort = 0; - index_opts = 0; - if (getenv("CINDEXTEST_SUPPRESSREFS")) - index_opts |= CXIndexOpt_SuppressRedundantRefs; - + index_opts = getIndexOptions(); idxAction = clang_IndexAction_create(Idx); result = clang_indexSourceFile(idxAction, &index_data, &IndexCB,sizeof(IndexCB), index_opts, @@ -2001,10 +2009,7 @@ static int index_tu(int argc, const char **argv) { index_data.fail_for_error = 0; index_data.abort = 0; - index_opts = 0; - if (getenv("CINDEXTEST_SUPPRESSREFS")) - index_opts |= CXIndexOpt_SuppressRedundantRefs; - + index_opts = getIndexOptions(); idxAction = clang_IndexAction_create(Idx); result = clang_indexTranslationUnit(idxAction, &index_data, &IndexCB,sizeof(IndexCB), diff --git a/tools/libclang/IndexBody.cpp b/tools/libclang/IndexBody.cpp index 177cad7cca..6dd45af814 100644 --- a/tools/libclang/IndexBody.cpp +++ b/tools/libclang/IndexBody.cpp @@ -84,6 +84,12 @@ public: Parent, ParentDC, E); return true; } + + bool VisitDeclStmt(DeclStmt *S) { + if (IndexCtx.indexFunctionLocalSymbols()) + IndexCtx.indexDeclGroupRef(S->getDeclGroup()); + return true; + } }; } // anonymous namespace diff --git a/tools/libclang/IndexingContext.cpp b/tools/libclang/IndexingContext.cpp index 14dbc97002..f731580e66 100644 --- a/tools/libclang/IndexingContext.cpp +++ b/tools/libclang/IndexingContext.cpp @@ -551,7 +551,7 @@ bool IndexingContext::handleReference(const NamedDecl *D, SourceLocation Loc, return false; if (Loc.isInvalid()) return false; - if (D->getParentFunctionOrMethod()) + if (!indexFunctionLocalSymbols() && D->getParentFunctionOrMethod()) return false; if (isNotFromSourceFile(D->getLocation())) return false; diff --git a/tools/libclang/IndexingContext.h b/tools/libclang/IndexingContext.h index b58e3b690e..4a321204a8 100644 --- a/tools/libclang/IndexingContext.h +++ b/tools/libclang/IndexingContext.h @@ -324,6 +324,10 @@ public: return IndexOptions & CXIndexOpt_SuppressRedundantRefs; } + bool indexFunctionLocalSymbols() const { + return IndexOptions & CXIndexOpt_IndexFunctionLocalSymbols; + } + bool shouldAbort(); bool hasDiagnosticCallback() const { return CB.diagnostic; } |