2017-05-16 17:38:59 +08:00
|
|
|
//===--- ClangdUnit.cpp -----------------------------------------*- C++-*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "ClangdUnit.h"
|
2017-06-29 00:12:10 +08:00
|
|
|
|
2017-12-04 21:49:59 +08:00
|
|
|
#include "Compiler.h"
|
2017-09-20 18:46:58 +08:00
|
|
|
#include "Logger.h"
|
2017-11-02 17:21:51 +08:00
|
|
|
#include "Trace.h"
|
2017-05-16 17:38:59 +08:00
|
|
|
#include "clang/Frontend/CompilerInstance.h"
|
|
|
|
#include "clang/Frontend/CompilerInvocation.h"
|
2017-07-21 21:29:29 +08:00
|
|
|
#include "clang/Frontend/FrontendActions.h"
|
2017-05-26 20:26:51 +08:00
|
|
|
#include "clang/Frontend/Utils.h"
|
2017-06-29 00:12:10 +08:00
|
|
|
#include "clang/Index/IndexDataConsumer.h"
|
2017-07-21 21:29:29 +08:00
|
|
|
#include "clang/Index/IndexingAction.h"
|
2017-06-29 00:12:10 +08:00
|
|
|
#include "clang/Lex/Lexer.h"
|
|
|
|
#include "clang/Lex/MacroInfo.h"
|
|
|
|
#include "clang/Lex/Preprocessor.h"
|
2017-07-21 21:29:29 +08:00
|
|
|
#include "clang/Sema/Sema.h"
|
|
|
|
#include "clang/Serialization/ASTWriter.h"
|
2017-05-16 17:38:59 +08:00
|
|
|
#include "clang/Tooling/CompilationDatabase.h"
|
2017-07-21 21:29:29 +08:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "llvm/Support/CrashRecoveryContext.h"
|
2017-06-15 17:11:57 +08:00
|
|
|
#include "llvm/Support/Format.h"
|
2017-05-16 17:38:59 +08:00
|
|
|
|
2017-06-29 00:12:10 +08:00
|
|
|
#include <algorithm>
|
2017-08-01 23:51:38 +08:00
|
|
|
#include <chrono>
|
2017-06-29 00:12:10 +08:00
|
|
|
|
2017-05-16 17:38:59 +08:00
|
|
|
using namespace clang::clangd;
|
|
|
|
using namespace clang;
|
|
|
|
|
2017-07-21 21:29:29 +08:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
class DeclTrackingASTConsumer : public ASTConsumer {
|
|
|
|
public:
|
|
|
|
DeclTrackingASTConsumer(std::vector<const Decl *> &TopLevelDecls)
|
|
|
|
: TopLevelDecls(TopLevelDecls) {}
|
|
|
|
|
|
|
|
bool HandleTopLevelDecl(DeclGroupRef DG) override {
|
|
|
|
for (const Decl *D : DG) {
|
|
|
|
// ObjCMethodDecl are not actually top-level decls.
|
|
|
|
if (isa<ObjCMethodDecl>(D))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
TopLevelDecls.push_back(D);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<const Decl *> &TopLevelDecls;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ClangdFrontendAction : public SyntaxOnlyAction {
|
|
|
|
public:
|
|
|
|
std::vector<const Decl *> takeTopLevelDecls() {
|
|
|
|
return std::move(TopLevelDecls);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
|
|
|
|
StringRef InFile) override {
|
|
|
|
return llvm::make_unique<DeclTrackingASTConsumer>(/*ref*/ TopLevelDecls);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<const Decl *> TopLevelDecls;
|
|
|
|
};
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
class CppFilePreambleCallbacks : public PreambleCallbacks {
|
2017-07-21 21:29:29 +08:00
|
|
|
public:
|
|
|
|
std::vector<serialization::DeclID> takeTopLevelDeclIDs() {
|
|
|
|
return std::move(TopLevelDeclIDs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AfterPCHEmitted(ASTWriter &Writer) override {
|
|
|
|
TopLevelDeclIDs.reserve(TopLevelDecls.size());
|
|
|
|
for (Decl *D : TopLevelDecls) {
|
|
|
|
// Invalid top-level decls may not have been serialized.
|
|
|
|
if (D->isInvalidDecl())
|
|
|
|
continue;
|
|
|
|
TopLevelDeclIDs.push_back(Writer.getDeclID(D));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void HandleTopLevelDecl(DeclGroupRef DG) override {
|
|
|
|
for (Decl *D : DG) {
|
|
|
|
if (isa<ObjCMethodDecl>(D))
|
|
|
|
continue;
|
|
|
|
TopLevelDecls.push_back(D);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<Decl *> TopLevelDecls;
|
|
|
|
std::vector<serialization::DeclID> TopLevelDeclIDs;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Convert from clang diagnostic level to LSP severity.
|
|
|
|
static int getSeverity(DiagnosticsEngine::Level L) {
|
|
|
|
switch (L) {
|
|
|
|
case DiagnosticsEngine::Remark:
|
|
|
|
return 4;
|
|
|
|
case DiagnosticsEngine::Note:
|
|
|
|
return 3;
|
|
|
|
case DiagnosticsEngine::Warning:
|
|
|
|
return 2;
|
|
|
|
case DiagnosticsEngine::Fatal:
|
|
|
|
case DiagnosticsEngine::Error:
|
|
|
|
return 1;
|
|
|
|
case DiagnosticsEngine::Ignored:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
llvm_unreachable("Unknown diagnostic level!");
|
|
|
|
}
|
|
|
|
|
2017-10-29 01:32:56 +08:00
|
|
|
llvm::Optional<DiagWithFixIts> toClangdDiag(const StoredDiagnostic &D) {
|
2017-07-21 21:29:29 +08:00
|
|
|
auto Location = D.getLocation();
|
|
|
|
if (!Location.isValid() || !Location.getManager().isInMainFile(Location))
|
|
|
|
return llvm::None;
|
|
|
|
|
|
|
|
Position P;
|
|
|
|
P.line = Location.getSpellingLineNumber() - 1;
|
|
|
|
P.character = Location.getSpellingColumnNumber();
|
|
|
|
Range R = {P, P};
|
|
|
|
clangd::Diagnostic Diag = {R, getSeverity(D.getLevel()), D.getMessage()};
|
|
|
|
|
|
|
|
llvm::SmallVector<tooling::Replacement, 1> FixItsForDiagnostic;
|
|
|
|
for (const FixItHint &Fix : D.getFixIts()) {
|
|
|
|
FixItsForDiagnostic.push_back(clang::tooling::Replacement(
|
|
|
|
Location.getManager(), Fix.RemoveRange, Fix.CodeToInsert));
|
|
|
|
}
|
|
|
|
return DiagWithFixIts{Diag, std::move(FixItsForDiagnostic)};
|
|
|
|
}
|
|
|
|
|
|
|
|
class StoreDiagsConsumer : public DiagnosticConsumer {
|
|
|
|
public:
|
|
|
|
StoreDiagsConsumer(std::vector<DiagWithFixIts> &Output) : Output(Output) {}
|
|
|
|
|
|
|
|
void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
|
|
|
|
const clang::Diagnostic &Info) override {
|
|
|
|
DiagnosticConsumer::HandleDiagnostic(DiagLevel, Info);
|
|
|
|
|
|
|
|
if (auto convertedDiag = toClangdDiag(StoredDiagnostic(DiagLevel, Info)))
|
|
|
|
Output.push_back(std::move(*convertedDiag));
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<DiagWithFixIts> &Output;
|
|
|
|
};
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
template <class T> bool futureIsReady(std::shared_future<T> const &Future) {
|
|
|
|
return Future.wait_for(std::chrono::seconds(0)) == std::future_status::ready;
|
2017-05-16 17:38:59 +08:00
|
|
|
}
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
} // namespace
|
2017-05-16 17:38:59 +08:00
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
void clangd::dumpAST(ParsedAST &AST, llvm::raw_ostream &OS) {
|
|
|
|
AST.getASTContext().getTranslationUnitDecl()->dump(OS, true);
|
2017-05-16 17:38:59 +08:00
|
|
|
}
|
2017-05-23 21:42:59 +08:00
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
llvm::Optional<ParsedAST>
|
|
|
|
ParsedAST::Build(std::unique_ptr<clang::CompilerInvocation> CI,
|
2017-11-24 21:04:21 +08:00
|
|
|
std::shared_ptr<const PreambleData> Preamble,
|
2017-08-01 23:51:38 +08:00
|
|
|
std::unique_ptr<llvm::MemoryBuffer> Buffer,
|
|
|
|
std::shared_ptr<PCHContainerOperations> PCHs,
|
2017-09-20 15:24:15 +08:00
|
|
|
IntrusiveRefCntPtr<vfs::FileSystem> VFS,
|
|
|
|
clangd::Logger &Logger) {
|
2017-07-21 21:29:29 +08:00
|
|
|
|
|
|
|
std::vector<DiagWithFixIts> ASTDiags;
|
|
|
|
StoreDiagsConsumer UnitDiagsConsumer(/*ref*/ ASTDiags);
|
|
|
|
|
2017-11-24 21:04:21 +08:00
|
|
|
const PrecompiledPreamble *PreamblePCH =
|
|
|
|
Preamble ? &Preamble->Preamble : nullptr;
|
2017-10-29 01:32:56 +08:00
|
|
|
auto Clang = prepareCompilerInstance(
|
2017-11-24 21:04:21 +08:00
|
|
|
std::move(CI), PreamblePCH, std::move(Buffer), std::move(PCHs),
|
2017-10-29 01:32:56 +08:00
|
|
|
std::move(VFS), /*ref*/ UnitDiagsConsumer);
|
2017-07-21 21:29:29 +08:00
|
|
|
|
|
|
|
// Recover resources if we crash before exiting this method.
|
|
|
|
llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance> CICleanup(
|
|
|
|
Clang.get());
|
|
|
|
|
|
|
|
auto Action = llvm::make_unique<ClangdFrontendAction>();
|
2017-09-20 15:24:15 +08:00
|
|
|
const FrontendInputFile &MainInput = Clang->getFrontendOpts().Inputs[0];
|
|
|
|
if (!Action->BeginSourceFile(*Clang, MainInput)) {
|
|
|
|
Logger.log("BeginSourceFile() failed when building AST for " +
|
|
|
|
MainInput.getFile());
|
2017-07-21 21:29:29 +08:00
|
|
|
return llvm::None;
|
|
|
|
}
|
2017-09-20 15:24:15 +08:00
|
|
|
if (!Action->Execute())
|
|
|
|
Logger.log("Execute() failed when building AST for " + MainInput.getFile());
|
2017-07-21 21:29:29 +08:00
|
|
|
|
|
|
|
// UnitDiagsConsumer is local, we can not store it in CompilerInstance that
|
|
|
|
// has a longer lifetime.
|
2017-12-04 21:49:59 +08:00
|
|
|
Clang->getDiagnostics().setClient(new IgnoreDiagnostics);
|
2017-07-21 21:29:29 +08:00
|
|
|
|
|
|
|
std::vector<const Decl *> ParsedDecls = Action->takeTopLevelDecls();
|
2017-11-24 21:04:21 +08:00
|
|
|
return ParsedAST(std::move(Preamble), std::move(Clang), std::move(Action),
|
|
|
|
std::move(ParsedDecls), std::move(ASTDiags));
|
2017-07-21 21:29:29 +08:00
|
|
|
}
|
|
|
|
|
2017-06-29 00:12:10 +08:00
|
|
|
namespace {
|
2017-07-21 21:29:29 +08:00
|
|
|
|
|
|
|
SourceLocation getMacroArgExpandedLocation(const SourceManager &Mgr,
|
|
|
|
const FileEntry *FE,
|
|
|
|
unsigned Offset) {
|
|
|
|
SourceLocation FileLoc = Mgr.translateFileLineCol(FE, 1, 1);
|
|
|
|
return Mgr.getMacroArgExpandedLocation(FileLoc.getLocWithOffset(Offset));
|
|
|
|
}
|
|
|
|
|
|
|
|
SourceLocation getMacroArgExpandedLocation(const SourceManager &Mgr,
|
|
|
|
const FileEntry *FE, Position Pos) {
|
|
|
|
SourceLocation InputLoc =
|
|
|
|
Mgr.translateFileLineCol(FE, Pos.line + 1, Pos.character + 1);
|
|
|
|
return Mgr.getMacroArgExpandedLocation(InputLoc);
|
|
|
|
}
|
|
|
|
|
2017-06-29 00:12:10 +08:00
|
|
|
/// Finds declarations locations that a given source location refers to.
|
|
|
|
class DeclarationLocationsFinder : public index::IndexDataConsumer {
|
|
|
|
std::vector<Location> DeclarationLocations;
|
|
|
|
const SourceLocation &SearchedLocation;
|
2017-07-21 21:29:29 +08:00
|
|
|
const ASTContext &AST;
|
|
|
|
Preprocessor &PP;
|
|
|
|
|
2017-06-29 00:12:10 +08:00
|
|
|
public:
|
|
|
|
DeclarationLocationsFinder(raw_ostream &OS,
|
2017-07-21 21:29:29 +08:00
|
|
|
const SourceLocation &SearchedLocation,
|
|
|
|
ASTContext &AST, Preprocessor &PP)
|
|
|
|
: SearchedLocation(SearchedLocation), AST(AST), PP(PP) {}
|
2017-06-29 00:12:10 +08:00
|
|
|
|
|
|
|
std::vector<Location> takeLocations() {
|
|
|
|
// Don't keep the same location multiple times.
|
|
|
|
// This can happen when nodes in the AST are visited twice.
|
|
|
|
std::sort(DeclarationLocations.begin(), DeclarationLocations.end());
|
2017-06-29 04:57:28 +08:00
|
|
|
auto last =
|
|
|
|
std::unique(DeclarationLocations.begin(), DeclarationLocations.end());
|
2017-06-29 00:12:10 +08:00
|
|
|
DeclarationLocations.erase(last, DeclarationLocations.end());
|
|
|
|
return std::move(DeclarationLocations);
|
|
|
|
}
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
bool
|
|
|
|
handleDeclOccurence(const Decl *D, index::SymbolRoleSet Roles,
|
|
|
|
ArrayRef<index::SymbolRelation> Relations, FileID FID,
|
|
|
|
unsigned Offset,
|
|
|
|
index::IndexDataConsumer::ASTNodeInfo ASTNode) override {
|
2017-06-29 00:12:10 +08:00
|
|
|
if (isSearchedLocation(FID, Offset)) {
|
|
|
|
addDeclarationLocation(D->getSourceRange());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool isSearchedLocation(FileID FID, unsigned Offset) const {
|
2017-07-21 21:29:29 +08:00
|
|
|
const SourceManager &SourceMgr = AST.getSourceManager();
|
|
|
|
return SourceMgr.getFileOffset(SearchedLocation) == Offset &&
|
|
|
|
SourceMgr.getFileID(SearchedLocation) == FID;
|
2017-06-29 00:12:10 +08:00
|
|
|
}
|
|
|
|
|
2017-07-21 21:29:29 +08:00
|
|
|
void addDeclarationLocation(const SourceRange &ValSourceRange) {
|
|
|
|
const SourceManager &SourceMgr = AST.getSourceManager();
|
|
|
|
const LangOptions &LangOpts = AST.getLangOpts();
|
2017-06-29 00:12:10 +08:00
|
|
|
SourceLocation LocStart = ValSourceRange.getBegin();
|
|
|
|
SourceLocation LocEnd = Lexer::getLocForEndOfToken(ValSourceRange.getEnd(),
|
2017-07-21 21:29:29 +08:00
|
|
|
0, SourceMgr, LangOpts);
|
2017-06-29 04:57:28 +08:00
|
|
|
Position Begin;
|
|
|
|
Begin.line = SourceMgr.getSpellingLineNumber(LocStart) - 1;
|
|
|
|
Begin.character = SourceMgr.getSpellingColumnNumber(LocStart) - 1;
|
|
|
|
Position End;
|
|
|
|
End.line = SourceMgr.getSpellingLineNumber(LocEnd) - 1;
|
|
|
|
End.character = SourceMgr.getSpellingColumnNumber(LocEnd) - 1;
|
|
|
|
Range R = {Begin, End};
|
2017-06-29 00:12:10 +08:00
|
|
|
Location L;
|
2017-11-08 00:16:45 +08:00
|
|
|
if (const FileEntry *F =
|
|
|
|
SourceMgr.getFileEntryForID(SourceMgr.getFileID(LocStart))) {
|
|
|
|
StringRef FilePath = F->tryGetRealPathName();
|
|
|
|
if (FilePath.empty())
|
|
|
|
FilePath = F->getName();
|
|
|
|
L.uri = URI::fromFile(FilePath);
|
|
|
|
L.range = R;
|
|
|
|
DeclarationLocations.push_back(L);
|
|
|
|
}
|
2017-06-29 00:12:10 +08:00
|
|
|
}
|
|
|
|
|
2017-06-29 04:57:28 +08:00
|
|
|
void finish() override {
|
2017-06-29 00:12:10 +08:00
|
|
|
// Also handle possible macro at the searched location.
|
|
|
|
Token Result;
|
2017-07-21 21:29:29 +08:00
|
|
|
if (!Lexer::getRawToken(SearchedLocation, Result, AST.getSourceManager(),
|
|
|
|
AST.getLangOpts(), false)) {
|
2017-06-29 00:12:10 +08:00
|
|
|
if (Result.is(tok::raw_identifier)) {
|
2017-07-21 21:29:29 +08:00
|
|
|
PP.LookUpIdentifierInfo(Result);
|
2017-06-29 00:12:10 +08:00
|
|
|
}
|
2017-07-21 21:29:29 +08:00
|
|
|
IdentifierInfo *IdentifierInfo = Result.getIdentifierInfo();
|
2017-06-29 00:12:10 +08:00
|
|
|
if (IdentifierInfo && IdentifierInfo->hadMacroDefinition()) {
|
|
|
|
std::pair<FileID, unsigned int> DecLoc =
|
2017-07-21 21:29:29 +08:00
|
|
|
AST.getSourceManager().getDecomposedExpansionLoc(SearchedLocation);
|
2017-06-29 00:12:10 +08:00
|
|
|
// Get the definition just before the searched location so that a macro
|
|
|
|
// referenced in a '#undef MACRO' can still be found.
|
2017-07-21 21:29:29 +08:00
|
|
|
SourceLocation BeforeSearchedLocation = getMacroArgExpandedLocation(
|
|
|
|
AST.getSourceManager(),
|
|
|
|
AST.getSourceManager().getFileEntryForID(DecLoc.first),
|
2017-06-29 00:12:10 +08:00
|
|
|
DecLoc.second - 1);
|
|
|
|
MacroDefinition MacroDef =
|
2017-07-21 21:29:29 +08:00
|
|
|
PP.getMacroDefinitionAtLoc(IdentifierInfo, BeforeSearchedLocation);
|
|
|
|
MacroInfo *MacroInf = MacroDef.getMacroInfo();
|
2017-06-29 00:12:10 +08:00
|
|
|
if (MacroInf) {
|
2017-08-01 23:51:38 +08:00
|
|
|
addDeclarationLocation(SourceRange(MacroInf->getDefinitionLoc(),
|
|
|
|
MacroInf->getDefinitionEndLoc()));
|
2017-06-29 00:12:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2017-07-21 21:29:29 +08:00
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
} // namespace
|
|
|
|
|
2017-09-20 15:24:15 +08:00
|
|
|
std::vector<Location> clangd::findDefinitions(ParsedAST &AST, Position Pos,
|
|
|
|
clangd::Logger &Logger) {
|
2017-08-01 23:51:38 +08:00
|
|
|
const SourceManager &SourceMgr = AST.getASTContext().getSourceManager();
|
|
|
|
const FileEntry *FE = SourceMgr.getFileEntryForID(SourceMgr.getMainFileID());
|
|
|
|
if (!FE)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
SourceLocation SourceLocationBeg = getBeginningOfIdentifier(AST, Pos, FE);
|
2017-07-21 21:29:29 +08:00
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
auto DeclLocationsFinder = std::make_shared<DeclarationLocationsFinder>(
|
|
|
|
llvm::errs(), SourceLocationBeg, AST.getASTContext(),
|
|
|
|
AST.getPreprocessor());
|
|
|
|
index::IndexingOptions IndexOpts;
|
|
|
|
IndexOpts.SystemSymbolFilter =
|
|
|
|
index::IndexingOptions::SystemSymbolFilterKind::All;
|
|
|
|
IndexOpts.IndexFunctionLocals = true;
|
|
|
|
|
|
|
|
indexTopLevelDecls(AST.getASTContext(), AST.getTopLevelDecls(),
|
|
|
|
DeclLocationsFinder, IndexOpts);
|
|
|
|
|
|
|
|
return DeclLocationsFinder->takeLocations();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ParsedAST::ensurePreambleDeclsDeserialized() {
|
2017-11-24 21:04:21 +08:00
|
|
|
if (PreambleDeclsDeserialized || !Preamble)
|
2017-07-21 21:29:29 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
std::vector<const Decl *> Resolved;
|
2017-11-24 21:04:21 +08:00
|
|
|
Resolved.reserve(Preamble->TopLevelDeclIDs.size());
|
2017-07-21 21:29:29 +08:00
|
|
|
|
|
|
|
ExternalASTSource &Source = *getASTContext().getExternalSource();
|
2017-11-24 21:04:21 +08:00
|
|
|
for (serialization::DeclID TopLevelDecl : Preamble->TopLevelDeclIDs) {
|
2017-07-21 21:29:29 +08:00
|
|
|
// Resolve the declaration ID to an actual declaration, possibly
|
|
|
|
// deserializing the declaration in the process.
|
|
|
|
if (Decl *D = Source.GetExternalDecl(TopLevelDecl))
|
|
|
|
Resolved.push_back(D);
|
|
|
|
}
|
|
|
|
|
2017-11-24 21:04:21 +08:00
|
|
|
TopLevelDecls.reserve(TopLevelDecls.size() +
|
|
|
|
Preamble->TopLevelDeclIDs.size());
|
2017-07-21 21:29:29 +08:00
|
|
|
TopLevelDecls.insert(TopLevelDecls.begin(), Resolved.begin(), Resolved.end());
|
|
|
|
|
2017-11-24 21:04:21 +08:00
|
|
|
PreambleDeclsDeserialized = true;
|
2017-07-21 21:29:29 +08:00
|
|
|
}
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
ParsedAST::ParsedAST(ParsedAST &&Other) = default;
|
2017-07-21 21:29:29 +08:00
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
ParsedAST &ParsedAST::operator=(ParsedAST &&Other) = default;
|
2017-07-21 21:29:29 +08:00
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
ParsedAST::~ParsedAST() {
|
2017-07-21 21:29:29 +08:00
|
|
|
if (Action) {
|
|
|
|
Action->EndSourceFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
ASTContext &ParsedAST::getASTContext() { return Clang->getASTContext(); }
|
2017-07-21 21:29:29 +08:00
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
const ASTContext &ParsedAST::getASTContext() const {
|
2017-07-21 21:29:29 +08:00
|
|
|
return Clang->getASTContext();
|
|
|
|
}
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
Preprocessor &ParsedAST::getPreprocessor() { return Clang->getPreprocessor(); }
|
2017-07-21 21:29:29 +08:00
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
const Preprocessor &ParsedAST::getPreprocessor() const {
|
2017-07-21 21:29:29 +08:00
|
|
|
return Clang->getPreprocessor();
|
|
|
|
}
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
ArrayRef<const Decl *> ParsedAST::getTopLevelDecls() {
|
2017-07-21 21:29:29 +08:00
|
|
|
ensurePreambleDeclsDeserialized();
|
|
|
|
return TopLevelDecls;
|
|
|
|
}
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
const std::vector<DiagWithFixIts> &ParsedAST::getDiagnostics() const {
|
2017-07-21 21:29:29 +08:00
|
|
|
return Diags;
|
|
|
|
}
|
|
|
|
|
2017-11-24 21:04:21 +08:00
|
|
|
PreambleData::PreambleData(PrecompiledPreamble Preamble,
|
|
|
|
std::vector<serialization::DeclID> TopLevelDeclIDs,
|
|
|
|
std::vector<DiagWithFixIts> Diags)
|
|
|
|
: Preamble(std::move(Preamble)),
|
|
|
|
TopLevelDeclIDs(std::move(TopLevelDeclIDs)), Diags(std::move(Diags)) {}
|
|
|
|
|
|
|
|
ParsedAST::ParsedAST(std::shared_ptr<const PreambleData> Preamble,
|
|
|
|
std::unique_ptr<CompilerInstance> Clang,
|
2017-08-01 23:51:38 +08:00
|
|
|
std::unique_ptr<FrontendAction> Action,
|
|
|
|
std::vector<const Decl *> TopLevelDecls,
|
|
|
|
std::vector<DiagWithFixIts> Diags)
|
2017-11-24 21:04:21 +08:00
|
|
|
: Preamble(std::move(Preamble)), Clang(std::move(Clang)),
|
|
|
|
Action(std::move(Action)), Diags(std::move(Diags)),
|
|
|
|
TopLevelDecls(std::move(TopLevelDecls)),
|
|
|
|
PreambleDeclsDeserialized(false) {
|
2017-07-21 21:29:29 +08:00
|
|
|
assert(this->Clang);
|
|
|
|
assert(this->Action);
|
|
|
|
}
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
ParsedASTWrapper::ParsedASTWrapper(ParsedASTWrapper &&Wrapper)
|
|
|
|
: AST(std::move(Wrapper.AST)) {}
|
|
|
|
|
|
|
|
ParsedASTWrapper::ParsedASTWrapper(llvm::Optional<ParsedAST> AST)
|
|
|
|
: AST(std::move(AST)) {}
|
|
|
|
|
|
|
|
std::shared_ptr<CppFile>
|
|
|
|
CppFile::Create(PathRef FileName, tooling::CompileCommand Command,
|
2017-11-17 00:25:18 +08:00
|
|
|
bool StorePreamblesInMemory,
|
2017-09-20 18:46:58 +08:00
|
|
|
std::shared_ptr<PCHContainerOperations> PCHs,
|
|
|
|
clangd::Logger &Logger) {
|
2017-11-17 00:25:18 +08:00
|
|
|
return std::shared_ptr<CppFile>(new CppFile(FileName, std::move(Command),
|
|
|
|
StorePreamblesInMemory,
|
|
|
|
std::move(PCHs), Logger));
|
2017-08-01 23:51:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CppFile::CppFile(PathRef FileName, tooling::CompileCommand Command,
|
2017-11-17 00:25:18 +08:00
|
|
|
bool StorePreamblesInMemory,
|
2017-09-20 15:24:15 +08:00
|
|
|
std::shared_ptr<PCHContainerOperations> PCHs,
|
|
|
|
clangd::Logger &Logger)
|
2017-11-17 00:25:18 +08:00
|
|
|
: FileName(FileName), Command(std::move(Command)),
|
|
|
|
StorePreamblesInMemory(StorePreamblesInMemory), RebuildCounter(0),
|
2017-09-20 15:24:15 +08:00
|
|
|
RebuildInProgress(false), PCHs(std::move(PCHs)), Logger(Logger) {
|
2017-12-01 07:16:23 +08:00
|
|
|
Logger.log("Opened file " + FileName + " with command [" +
|
|
|
|
this->Command.Directory + "] " +
|
2017-12-01 07:21:34 +08:00
|
|
|
llvm::join(this->Command.CommandLine, " "));
|
2017-08-01 23:51:38 +08:00
|
|
|
|
|
|
|
std::lock_guard<std::mutex> Lock(Mutex);
|
|
|
|
LatestAvailablePreamble = nullptr;
|
|
|
|
PreamblePromise.set_value(nullptr);
|
|
|
|
PreambleFuture = PreamblePromise.get_future();
|
|
|
|
|
2017-08-02 02:27:58 +08:00
|
|
|
ASTPromise.set_value(std::make_shared<ParsedASTWrapper>(llvm::None));
|
2017-08-01 23:51:38 +08:00
|
|
|
ASTFuture = ASTPromise.get_future();
|
|
|
|
}
|
|
|
|
|
2017-10-11 00:12:54 +08:00
|
|
|
void CppFile::cancelRebuild() { deferCancelRebuild()(); }
|
2017-08-14 16:17:24 +08:00
|
|
|
|
2017-10-11 00:12:54 +08:00
|
|
|
UniqueFunction<void()> CppFile::deferCancelRebuild() {
|
2017-08-01 23:51:38 +08:00
|
|
|
std::unique_lock<std::mutex> Lock(Mutex);
|
|
|
|
// Cancel an ongoing rebuild, if any, and wait for it to finish.
|
2017-08-14 16:17:24 +08:00
|
|
|
unsigned RequestRebuildCounter = ++this->RebuildCounter;
|
2017-08-01 23:51:38 +08:00
|
|
|
// Rebuild asserts that futures aren't ready if rebuild is cancelled.
|
|
|
|
// We want to keep this invariant.
|
|
|
|
if (futureIsReady(PreambleFuture)) {
|
|
|
|
PreamblePromise = std::promise<std::shared_ptr<const PreambleData>>();
|
|
|
|
PreambleFuture = PreamblePromise.get_future();
|
|
|
|
}
|
|
|
|
if (futureIsReady(ASTFuture)) {
|
2017-08-02 02:27:58 +08:00
|
|
|
ASTPromise = std::promise<std::shared_ptr<ParsedASTWrapper>>();
|
2017-08-01 23:51:38 +08:00
|
|
|
ASTFuture = ASTPromise.get_future();
|
|
|
|
}
|
|
|
|
|
2017-08-14 16:17:24 +08:00
|
|
|
Lock.unlock();
|
|
|
|
// Notify about changes to RebuildCounter.
|
|
|
|
RebuildCond.notify_all();
|
|
|
|
|
|
|
|
std::shared_ptr<CppFile> That = shared_from_this();
|
2017-10-11 00:12:54 +08:00
|
|
|
return [That, RequestRebuildCounter]() {
|
2017-08-14 16:17:24 +08:00
|
|
|
std::unique_lock<std::mutex> Lock(That->Mutex);
|
|
|
|
CppFile *This = &*That;
|
|
|
|
This->RebuildCond.wait(Lock, [This, RequestRebuildCounter]() {
|
|
|
|
return !This->RebuildInProgress ||
|
|
|
|
This->RebuildCounter != RequestRebuildCounter;
|
|
|
|
});
|
|
|
|
|
|
|
|
// This computation got cancelled itself, do nothing.
|
|
|
|
if (This->RebuildCounter != RequestRebuildCounter)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Set empty results for Promises.
|
|
|
|
That->PreamblePromise.set_value(nullptr);
|
|
|
|
That->ASTPromise.set_value(std::make_shared<ParsedASTWrapper>(llvm::None));
|
2017-10-11 00:12:54 +08:00
|
|
|
};
|
2017-08-01 23:51:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
llvm::Optional<std::vector<DiagWithFixIts>>
|
|
|
|
CppFile::rebuild(StringRef NewContents,
|
|
|
|
IntrusiveRefCntPtr<vfs::FileSystem> VFS) {
|
2017-10-11 00:12:54 +08:00
|
|
|
return deferRebuild(NewContents, std::move(VFS))();
|
2017-08-01 23:51:38 +08:00
|
|
|
}
|
|
|
|
|
2017-10-11 00:12:54 +08:00
|
|
|
UniqueFunction<llvm::Optional<std::vector<DiagWithFixIts>>()>
|
2017-08-01 23:51:38 +08:00
|
|
|
CppFile::deferRebuild(StringRef NewContents,
|
|
|
|
IntrusiveRefCntPtr<vfs::FileSystem> VFS) {
|
|
|
|
std::shared_ptr<const PreambleData> OldPreamble;
|
|
|
|
std::shared_ptr<PCHContainerOperations> PCHs;
|
|
|
|
unsigned RequestRebuildCounter;
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> Lock(Mutex);
|
|
|
|
// Increase RebuildCounter to cancel all ongoing FinishRebuild operations.
|
|
|
|
// They will try to exit as early as possible and won't call set_value on
|
|
|
|
// our promises.
|
|
|
|
RequestRebuildCounter = ++this->RebuildCounter;
|
|
|
|
PCHs = this->PCHs;
|
|
|
|
|
|
|
|
// Remember the preamble to be used during rebuild.
|
|
|
|
OldPreamble = this->LatestAvailablePreamble;
|
|
|
|
// Setup std::promises and std::futures for Preamble and AST. Corresponding
|
|
|
|
// futures will wait until the rebuild process is finished.
|
|
|
|
if (futureIsReady(this->PreambleFuture)) {
|
|
|
|
this->PreamblePromise =
|
|
|
|
std::promise<std::shared_ptr<const PreambleData>>();
|
|
|
|
this->PreambleFuture = this->PreamblePromise.get_future();
|
|
|
|
}
|
|
|
|
if (futureIsReady(this->ASTFuture)) {
|
2017-08-02 02:27:58 +08:00
|
|
|
this->ASTPromise = std::promise<std::shared_ptr<ParsedASTWrapper>>();
|
2017-08-01 23:51:38 +08:00
|
|
|
this->ASTFuture = this->ASTPromise.get_future();
|
|
|
|
}
|
|
|
|
} // unlock Mutex.
|
2017-08-14 16:17:24 +08:00
|
|
|
// Notify about changes to RebuildCounter.
|
|
|
|
RebuildCond.notify_all();
|
2017-08-01 23:51:38 +08:00
|
|
|
|
|
|
|
// A helper to function to finish the rebuild. May be run on a different
|
|
|
|
// thread.
|
|
|
|
|
|
|
|
// Don't let this CppFile die before rebuild is finished.
|
|
|
|
std::shared_ptr<CppFile> That = shared_from_this();
|
|
|
|
auto FinishRebuild = [OldPreamble, VFS, RequestRebuildCounter, PCHs,
|
2017-11-18 03:05:56 +08:00
|
|
|
That](std::string NewContents) mutable // 'mutable' to
|
|
|
|
// allow changing
|
|
|
|
// OldPreamble.
|
2017-08-01 23:51:38 +08:00
|
|
|
-> llvm::Optional<std::vector<DiagWithFixIts>> {
|
|
|
|
// Only one execution of this method is possible at a time.
|
|
|
|
// RebuildGuard will wait for any ongoing rebuilds to finish and will put us
|
|
|
|
// into a state for doing a rebuild.
|
|
|
|
RebuildGuard Rebuild(*That, RequestRebuildCounter);
|
|
|
|
if (Rebuild.wasCancelledBeforeConstruction())
|
|
|
|
return llvm::None;
|
|
|
|
|
|
|
|
std::vector<const char *> ArgStrs;
|
|
|
|
for (const auto &S : That->Command.CommandLine)
|
|
|
|
ArgStrs.push_back(S.c_str());
|
|
|
|
|
|
|
|
VFS->setCurrentWorkingDirectory(That->Command.Directory);
|
|
|
|
|
|
|
|
std::unique_ptr<CompilerInvocation> CI;
|
|
|
|
{
|
|
|
|
// FIXME(ibiryukov): store diagnostics from CommandLine when we start
|
|
|
|
// reporting them.
|
2017-12-04 21:49:59 +08:00
|
|
|
IgnoreDiagnostics IgnoreDiagnostics;
|
2017-08-01 23:51:38 +08:00
|
|
|
IntrusiveRefCntPtr<DiagnosticsEngine> CommandLineDiagsEngine =
|
|
|
|
CompilerInstance::createDiagnostics(new DiagnosticOptions,
|
2017-12-04 21:49:59 +08:00
|
|
|
&IgnoreDiagnostics, false);
|
|
|
|
CI =
|
|
|
|
createInvocationFromCommandLine(ArgStrs, CommandLineDiagsEngine, VFS);
|
|
|
|
// createInvocationFromCommandLine sets DisableFree.
|
|
|
|
CI->getFrontendOpts().DisableFree = false;
|
2017-08-01 23:51:38 +08:00
|
|
|
}
|
|
|
|
assert(CI && "Couldn't create CompilerInvocation");
|
|
|
|
|
|
|
|
std::unique_ptr<llvm::MemoryBuffer> ContentsBuffer =
|
|
|
|
llvm::MemoryBuffer::getMemBufferCopy(NewContents, That->FileName);
|
|
|
|
|
|
|
|
// A helper function to rebuild the preamble or reuse the existing one. Does
|
2017-11-18 03:05:56 +08:00
|
|
|
// not mutate any fields of CppFile, only does the actual computation.
|
|
|
|
// Lamdba is marked mutable to call reset() on OldPreamble.
|
|
|
|
auto DoRebuildPreamble =
|
|
|
|
[&]() mutable -> std::shared_ptr<const PreambleData> {
|
2017-08-01 23:51:38 +08:00
|
|
|
auto Bounds =
|
|
|
|
ComputePreambleBounds(*CI->getLangOpts(), ContentsBuffer.get(), 0);
|
|
|
|
if (OldPreamble && OldPreamble->Preamble.CanReuse(
|
|
|
|
*CI, ContentsBuffer.get(), Bounds, VFS.get())) {
|
|
|
|
return OldPreamble;
|
|
|
|
}
|
2017-11-18 03:05:56 +08:00
|
|
|
// We won't need the OldPreamble anymore, release it so it can be deleted
|
|
|
|
// (if there are no other references to it).
|
|
|
|
OldPreamble.reset();
|
2017-08-01 23:51:38 +08:00
|
|
|
|
2017-11-24 01:12:04 +08:00
|
|
|
trace::Span Tracer("Preamble");
|
|
|
|
SPAN_ATTACH(Tracer, "File", That->FileName);
|
2017-08-01 23:51:38 +08:00
|
|
|
std::vector<DiagWithFixIts> PreambleDiags;
|
|
|
|
StoreDiagsConsumer PreambleDiagnosticsConsumer(/*ref*/ PreambleDiags);
|
|
|
|
IntrusiveRefCntPtr<DiagnosticsEngine> PreambleDiagsEngine =
|
|
|
|
CompilerInstance::createDiagnostics(
|
|
|
|
&CI->getDiagnosticOpts(), &PreambleDiagnosticsConsumer, false);
|
|
|
|
CppFilePreambleCallbacks SerializedDeclsCollector;
|
|
|
|
auto BuiltPreamble = PrecompiledPreamble::Build(
|
|
|
|
*CI, ContentsBuffer.get(), Bounds, *PreambleDiagsEngine, VFS, PCHs,
|
2017-11-17 00:25:18 +08:00
|
|
|
/*StoreInMemory=*/That->StorePreamblesInMemory,
|
2017-08-01 23:51:38 +08:00
|
|
|
SerializedDeclsCollector);
|
|
|
|
|
|
|
|
if (BuiltPreamble) {
|
|
|
|
return std::make_shared<PreambleData>(
|
|
|
|
std::move(*BuiltPreamble),
|
|
|
|
SerializedDeclsCollector.takeTopLevelDeclIDs(),
|
|
|
|
std::move(PreambleDiags));
|
|
|
|
} else {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Compute updated Preamble.
|
|
|
|
std::shared_ptr<const PreambleData> NewPreamble = DoRebuildPreamble();
|
|
|
|
// Publish the new Preamble.
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> Lock(That->Mutex);
|
|
|
|
// We always set LatestAvailablePreamble to the new value, hoping that it
|
|
|
|
// will still be usable in the further requests.
|
|
|
|
That->LatestAvailablePreamble = NewPreamble;
|
|
|
|
if (RequestRebuildCounter != That->RebuildCounter)
|
|
|
|
return llvm::None; // Our rebuild request was cancelled, do nothing.
|
|
|
|
That->PreamblePromise.set_value(NewPreamble);
|
|
|
|
} // unlock Mutex
|
|
|
|
|
|
|
|
// Prepare the Preamble and supplementary data for rebuilding AST.
|
|
|
|
std::vector<DiagWithFixIts> Diagnostics;
|
|
|
|
if (NewPreamble) {
|
|
|
|
Diagnostics.insert(Diagnostics.begin(), NewPreamble->Diags.begin(),
|
|
|
|
NewPreamble->Diags.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compute updated AST.
|
2017-11-02 17:21:51 +08:00
|
|
|
llvm::Optional<ParsedAST> NewAST;
|
|
|
|
{
|
2017-11-24 01:12:04 +08:00
|
|
|
trace::Span Tracer("Build");
|
|
|
|
SPAN_ATTACH(Tracer, "File", That->FileName);
|
2017-11-24 21:04:21 +08:00
|
|
|
NewAST =
|
|
|
|
ParsedAST::Build(std::move(CI), std::move(NewPreamble),
|
|
|
|
std::move(ContentsBuffer), PCHs, VFS, That->Logger);
|
2017-11-02 17:21:51 +08:00
|
|
|
}
|
2017-08-01 23:51:38 +08:00
|
|
|
|
|
|
|
if (NewAST) {
|
|
|
|
Diagnostics.insert(Diagnostics.end(), NewAST->getDiagnostics().begin(),
|
|
|
|
NewAST->getDiagnostics().end());
|
|
|
|
} else {
|
|
|
|
// Don't report even Preamble diagnostics if we coulnd't build AST.
|
|
|
|
Diagnostics.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Publish the new AST.
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> Lock(That->Mutex);
|
|
|
|
if (RequestRebuildCounter != That->RebuildCounter)
|
|
|
|
return Diagnostics; // Our rebuild request was cancelled, don't set
|
|
|
|
// ASTPromise.
|
|
|
|
|
2017-08-02 17:08:39 +08:00
|
|
|
That->ASTPromise.set_value(
|
|
|
|
std::make_shared<ParsedASTWrapper>(std::move(NewAST)));
|
2017-08-01 23:51:38 +08:00
|
|
|
} // unlock Mutex
|
|
|
|
|
|
|
|
return Diagnostics;
|
|
|
|
};
|
|
|
|
|
2017-10-11 00:12:54 +08:00
|
|
|
return BindWithForward(FinishRebuild, NewContents.str());
|
2017-08-01 23:51:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_future<std::shared_ptr<const PreambleData>>
|
|
|
|
CppFile::getPreamble() const {
|
|
|
|
std::lock_guard<std::mutex> Lock(Mutex);
|
|
|
|
return PreambleFuture;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<const PreambleData> CppFile::getPossiblyStalePreamble() const {
|
|
|
|
std::lock_guard<std::mutex> Lock(Mutex);
|
|
|
|
return LatestAvailablePreamble;
|
|
|
|
}
|
|
|
|
|
2017-08-02 02:27:58 +08:00
|
|
|
std::shared_future<std::shared_ptr<ParsedASTWrapper>> CppFile::getAST() const {
|
2017-08-01 23:51:38 +08:00
|
|
|
std::lock_guard<std::mutex> Lock(Mutex);
|
|
|
|
return ASTFuture;
|
|
|
|
}
|
|
|
|
|
|
|
|
tooling::CompileCommand const &CppFile::getCompileCommand() const {
|
|
|
|
return Command;
|
|
|
|
}
|
|
|
|
|
|
|
|
CppFile::RebuildGuard::RebuildGuard(CppFile &File,
|
|
|
|
unsigned RequestRebuildCounter)
|
|
|
|
: File(File), RequestRebuildCounter(RequestRebuildCounter) {
|
|
|
|
std::unique_lock<std::mutex> Lock(File.Mutex);
|
|
|
|
WasCancelledBeforeConstruction = File.RebuildCounter != RequestRebuildCounter;
|
|
|
|
if (WasCancelledBeforeConstruction)
|
|
|
|
return;
|
|
|
|
|
2017-08-14 16:17:24 +08:00
|
|
|
File.RebuildCond.wait(Lock, [&File, RequestRebuildCounter]() {
|
|
|
|
return !File.RebuildInProgress ||
|
|
|
|
File.RebuildCounter != RequestRebuildCounter;
|
|
|
|
});
|
2017-08-01 23:51:38 +08:00
|
|
|
|
|
|
|
WasCancelledBeforeConstruction = File.RebuildCounter != RequestRebuildCounter;
|
|
|
|
if (WasCancelledBeforeConstruction)
|
|
|
|
return;
|
|
|
|
|
|
|
|
File.RebuildInProgress = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CppFile::RebuildGuard::wasCancelledBeforeConstruction() const {
|
|
|
|
return WasCancelledBeforeConstruction;
|
|
|
|
}
|
|
|
|
|
|
|
|
CppFile::RebuildGuard::~RebuildGuard() {
|
|
|
|
if (WasCancelledBeforeConstruction)
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::unique_lock<std::mutex> Lock(File.Mutex);
|
|
|
|
assert(File.RebuildInProgress);
|
|
|
|
File.RebuildInProgress = false;
|
|
|
|
|
|
|
|
if (File.RebuildCounter == RequestRebuildCounter) {
|
|
|
|
// Our rebuild request was successful.
|
|
|
|
assert(futureIsReady(File.ASTFuture));
|
|
|
|
assert(futureIsReady(File.PreambleFuture));
|
|
|
|
} else {
|
|
|
|
// Our rebuild request was cancelled, because further reparse was requested.
|
|
|
|
assert(!futureIsReady(File.ASTFuture));
|
|
|
|
assert(!futureIsReady(File.PreambleFuture));
|
|
|
|
}
|
|
|
|
|
|
|
|
Lock.unlock();
|
|
|
|
File.RebuildCond.notify_all();
|
|
|
|
}
|
2017-11-09 19:30:04 +08:00
|
|
|
|
|
|
|
SourceLocation clangd::getBeginningOfIdentifier(ParsedAST &Unit,
|
|
|
|
const Position &Pos,
|
|
|
|
const FileEntry *FE) {
|
|
|
|
// The language server protocol uses zero-based line and column numbers.
|
|
|
|
// Clang uses one-based numbers.
|
|
|
|
|
|
|
|
const ASTContext &AST = Unit.getASTContext();
|
|
|
|
const SourceManager &SourceMgr = AST.getSourceManager();
|
|
|
|
|
|
|
|
SourceLocation InputLocation =
|
|
|
|
getMacroArgExpandedLocation(SourceMgr, FE, Pos);
|
|
|
|
if (Pos.character == 0) {
|
|
|
|
return InputLocation;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This handle cases where the position is in the middle of a token or right
|
|
|
|
// after the end of a token. In theory we could just use GetBeginningOfToken
|
|
|
|
// to find the start of the token at the input position, but this doesn't
|
|
|
|
// work when right after the end, i.e. foo|.
|
|
|
|
// So try to go back by one and see if we're still inside the an identifier
|
|
|
|
// token. If so, Take the beginning of this token.
|
|
|
|
// (It should be the same identifier because you can't have two adjacent
|
|
|
|
// identifiers without another token in between.)
|
|
|
|
SourceLocation PeekBeforeLocation = getMacroArgExpandedLocation(
|
|
|
|
SourceMgr, FE, Position{Pos.line, Pos.character - 1});
|
|
|
|
Token Result;
|
|
|
|
if (Lexer::getRawToken(PeekBeforeLocation, Result, SourceMgr,
|
|
|
|
AST.getLangOpts(), false)) {
|
|
|
|
// getRawToken failed, just use InputLocation.
|
|
|
|
return InputLocation;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Result.is(tok::raw_identifier)) {
|
|
|
|
return Lexer::GetBeginningOfToken(PeekBeforeLocation, SourceMgr,
|
|
|
|
AST.getLangOpts());
|
|
|
|
}
|
|
|
|
|
|
|
|
return InputLocation;
|
|
|
|
}
|