mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 07:35:08 +00:00
indexer: disable warnings and skip processed function bodies
Adapt clang rC370337: removal of createIndexingAction and WrappingIndexAction
This commit is contained in:
parent
65f86d0498
commit
b3d694b8bd
@ -85,6 +85,8 @@ buildCompilerInvocation(const std::string &main, std::vector<const char *> args,
|
||||
if (ci) {
|
||||
ci->getDiagnosticOpts().IgnoreWarnings = true;
|
||||
ci->getFrontendOpts().DisableFree = false;
|
||||
// Enable IndexFrontendAction::shouldSkipFunctionBody.
|
||||
ci->getFrontendOpts().SkipFunctionBodies = true;
|
||||
ci->getLangOpts()->SpellChecking = false;
|
||||
auto &isec = ci->getFrontendOpts().Inputs;
|
||||
if (isec.size())
|
||||
|
@ -12,6 +12,7 @@
|
||||
#include <clang/AST/AST.h>
|
||||
#include <clang/Basic/TargetInfo.h>
|
||||
#include <clang/Frontend/FrontendAction.h>
|
||||
#include <clang/Frontend/MultiplexConsumer.h>
|
||||
#include <clang/Index/IndexDataConsumer.h>
|
||||
#include <clang/Index/IndexingAction.h>
|
||||
#include <clang/Index/USRGeneration.h>
|
||||
@ -1154,16 +1155,43 @@ public:
|
||||
};
|
||||
|
||||
class IndexFrontendAction : public ASTFrontendAction {
|
||||
std::shared_ptr<IndexDataConsumer> dataConsumer;
|
||||
const index::IndexingOptions &indexOpts;
|
||||
IndexParam ¶m;
|
||||
|
||||
public:
|
||||
IndexFrontendAction(IndexParam ¶m) : param(param) {}
|
||||
std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
|
||||
StringRef InFile) override {
|
||||
Preprocessor &PP = CI.getPreprocessor();
|
||||
PP.addPPCallbacks(
|
||||
std::make_unique<IndexPPCallbacks>(PP.getSourceManager(), param));
|
||||
return std::make_unique<ASTConsumer>();
|
||||
IndexFrontendAction(std::shared_ptr<IndexDataConsumer> dataConsumer,
|
||||
const index::IndexingOptions &indexOpts,
|
||||
IndexParam ¶m)
|
||||
: dataConsumer(std::move(dataConsumer)), indexOpts(indexOpts),
|
||||
param(param) {}
|
||||
std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &ci,
|
||||
StringRef inFile) override {
|
||||
class SkipProcessed : public ASTConsumer {
|
||||
IndexParam ¶m;
|
||||
const ASTContext *ctx = nullptr;
|
||||
|
||||
public:
|
||||
SkipProcessed(IndexParam ¶m) : param(param) {}
|
||||
void Initialize(ASTContext &ctx) override { this->ctx = &ctx; }
|
||||
bool shouldSkipFunctionBody(Decl *d) override {
|
||||
const SourceManager &sm = ctx->getSourceManager();
|
||||
FileID fid = sm.getFileID(sm.getExpansionLoc(d->getLocation()));
|
||||
return !(g_config->index.multiVersion && param.useMultiVersion(fid)) &&
|
||||
!param.consumeFile(fid);
|
||||
}
|
||||
};
|
||||
|
||||
std::shared_ptr<Preprocessor> pp = ci.getPreprocessorPtr();
|
||||
pp->addPPCallbacks(
|
||||
std::make_unique<IndexPPCallbacks>(pp->getSourceManager(), param));
|
||||
std::vector<std::unique_ptr<ASTConsumer>> consumers;
|
||||
consumers.push_back(std::make_unique<SkipProcessed>(param));
|
||||
#if LLVM_VERSION_MAJOR >= 10 // rC370337
|
||||
consumers.push_back(index::createIndexingASTConsumer(
|
||||
dataConsumer, indexOpts, std::move(pp)));
|
||||
#endif
|
||||
return std::make_unique<MultiplexConsumer>(std::move(consumers));
|
||||
}
|
||||
};
|
||||
} // namespace
|
||||
@ -1248,6 +1276,7 @@ index(SemaManager *manager, WorkingFiles *wfiles, VFS *vfs,
|
||||
auto clang = std::make_unique<CompilerInstance>(pch);
|
||||
clang->setInvocation(std::move(ci));
|
||||
clang->createDiagnostics(&dc, false);
|
||||
clang->getDiagnostics().setIgnoreAllWarnings(true);
|
||||
clang->setTarget(TargetInfo::CreateTargetInfo(
|
||||
clang->getDiagnostics(), clang->getInvocation().TargetOpts));
|
||||
if (!clang->hasTarget())
|
||||
@ -1263,7 +1292,6 @@ index(SemaManager *manager, WorkingFiles *wfiles, VFS *vfs,
|
||||
clang->getFileManager(), true));
|
||||
|
||||
IndexParam param(*vfs, no_linkage);
|
||||
auto dataConsumer = std::make_shared<IndexDataConsumer>(param);
|
||||
|
||||
index::IndexingOptions indexOpts;
|
||||
indexOpts.SystemSymbolFilter =
|
||||
@ -1279,8 +1307,16 @@ index(SemaManager *manager, WorkingFiles *wfiles, VFS *vfs,
|
||||
#endif
|
||||
}
|
||||
|
||||
std::unique_ptr<FrontendAction> action = createIndexingAction(
|
||||
dataConsumer, indexOpts, std::make_unique<IndexFrontendAction>(param));
|
||||
#if LLVM_VERSION_MAJOR >= 10 // rC370337
|
||||
auto action = std::make_unique<IndexFrontendAction>(
|
||||
std::make_shared<IndexDataConsumer>(param), indexOpts, param);
|
||||
#else
|
||||
auto dataConsumer = std::make_shared<IndexDataConsumer>(param);
|
||||
auto action = createIndexingAction(
|
||||
dataConsumer, indexOpts,
|
||||
std::make_unique<IndexFrontendAction>(dataConsumer, indexOpts, param));
|
||||
#endif
|
||||
|
||||
std::string reason;
|
||||
{
|
||||
llvm::CrashRecoveryContext crc;
|
||||
|
@ -467,7 +467,6 @@ void *completionMain(void *manager_) {
|
||||
fOpts.CodeCompletionAt.FileName = task->path;
|
||||
fOpts.CodeCompletionAt.Line = task->position.line + 1;
|
||||
fOpts.CodeCompletionAt.Column = task->position.character + 1;
|
||||
fOpts.SkipFunctionBodies = true;
|
||||
ci->getLangOpts()->CommentOpts.ParseAllComments = true;
|
||||
|
||||
DiagnosticConsumer dc;
|
||||
@ -573,6 +572,7 @@ void *diagnosticMain(void *manager_) {
|
||||
if (lookupExtension(session->file.filename).second)
|
||||
ci->getDiagnosticOpts().Warnings.push_back("no-unused-function");
|
||||
ci->getDiagnosticOpts().IgnoreWarnings = false;
|
||||
ci->getFrontendOpts().SkipFunctionBodies = false;
|
||||
ci->getLangOpts()->SpellChecking = g_config->diagnostics.spellChecking;
|
||||
StoreDiags dc(task.path);
|
||||
std::string content = manager->wfiles->getContent(task.path);
|
||||
|
Loading…
Reference in New Issue
Block a user