[PATCH] D52872: [clangd] Make binary index format the default, remove dead flag.
Sam McCall via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Oct 5 02:07:19 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL343841: [clangd] Make binary index format the default, remove dead flag. (authored by sammccall, committed by ).
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D52872?vs=168287&id=168444#toc
Repository:
rL LLVM
https://reviews.llvm.org/D52872
Files:
clang-tools-extra/trunk/clangd/indexer/IndexerMain.cpp
Index: clang-tools-extra/trunk/clangd/indexer/IndexerMain.cpp
===================================================================
--- clang-tools-extra/trunk/clangd/indexer/IndexerMain.cpp
+++ clang-tools-extra/trunk/clangd/indexer/IndexerMain.cpp
@@ -7,8 +7,7 @@
//
//===----------------------------------------------------------------------===//
//
-// GlobalSymbolBuilder is a tool to extract symbols from a whole project.
-// This tool is **experimental** only. Don't use it in production code.
+// clangd-indexer is a tool to gather index data (symbols, xrefs) from source.
//
//===----------------------------------------------------------------------===//
@@ -21,7 +20,6 @@
#include "clang/Tooling/Execution.h"
#include "clang/Tooling/Tooling.h"
#include "llvm/Support/CommandLine.h"
-#include "llvm/Support/Path.h"
#include "llvm/Support/Signals.h"
using namespace llvm;
@@ -32,30 +30,20 @@
namespace clangd {
namespace {
-static llvm::cl::opt<std::string> AssumedHeaderDir(
- "assume-header-dir",
- llvm::cl::desc("The index includes header that a symbol is defined in. "
- "If the absolute path cannot be determined (e.g. an "
- "in-memory VFS) then the relative path is resolved against "
- "this directory, which must be absolute. If this flag is "
- "not given, such headers will have relative paths."),
- llvm::cl::init(""));
-
static llvm::cl::opt<IndexFileFormat>
Format("format", llvm::cl::desc("Format of the index to be written"),
llvm::cl::values(clEnumValN(IndexFileFormat::YAML, "yaml",
"human-readable YAML format"),
clEnumValN(IndexFileFormat::RIFF, "binary",
"binary RIFF format")),
- llvm::cl::init(IndexFileFormat::YAML));
+ llvm::cl::init(IndexFileFormat::RIFF));
class IndexActionFactory : public tooling::FrontendActionFactory {
public:
IndexActionFactory(IndexFileIn &Result) : Result(Result) {}
clang::FrontendAction *create() override {
SymbolCollector::Options Opts;
- Opts.FallbackDir = AssumedHeaderDir;
return createStaticIndexingAction(
Opts,
[&](SymbolSlab S) {
@@ -102,15 +90,14 @@
const char *Overview = R"(
Creates an index of symbol information etc in a whole project.
- This is **experimental** and not production-ready!
Example usage for a project using CMake compile commands:
- $ clangd-indexer --executor=all-TUs compile_commands.json > index.yaml
+ $ clangd-indexer --executor=all-TUs compile_commands.json > clangd.dex
Example usage for file sequence index without flags:
- $ clangd-indexer File1.cpp File2.cpp ... FileN.cpp > index.yaml
+ $ clangd-indexer File1.cpp File2.cpp ... FileN.cpp > clangd.dex
Note: only symbols from header files will be indexed.
)";
@@ -123,12 +110,6 @@
return 1;
}
- if (!clang::clangd::AssumedHeaderDir.empty() &&
- !llvm::sys::path::is_absolute(clang::clangd::AssumedHeaderDir)) {
- llvm::errs() << "--assume-header-dir must be an absolute path.\n";
- return 1;
- }
-
// Collect symbols found in each translation unit, merging as we go.
clang::clangd::IndexFileIn Data;
auto Err = Executor->get()->execute(
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D52872.168444.patch
Type: text/x-patch
Size: 3359 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20181005/77b8c13a/attachment-0001.bin>
More information about the cfe-commits
mailing list