mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
474 lines
17 KiB
C++
474 lines
17 KiB
C++
//===--- CompletionInstance.cpp -------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "swift/IDE/CompletionInstance.h"
|
|
|
|
#include "swift/AST/ASTContext.h"
|
|
#include "swift/AST/DiagnosticEngine.h"
|
|
#include "swift/AST/DiagnosticsFrontend.h"
|
|
#include "swift/AST/Module.h"
|
|
#include "swift/AST/PrettyStackTrace.h"
|
|
#include "swift/AST/SourceFile.h"
|
|
#include "swift/Basic/LangOptions.h"
|
|
#include "swift/Basic/PrettyStackTrace.h"
|
|
#include "swift/Basic/SourceManager.h"
|
|
#include "swift/Driver/FrontendUtil.h"
|
|
#include "swift/Frontend/Frontend.h"
|
|
#include "swift/Parse/Lexer.h"
|
|
#include "swift/Parse/PersistentParserState.h"
|
|
#include "swift/Subsystems.h"
|
|
#include "llvm/ADT/Hashing.h"
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
using namespace swift;
|
|
using namespace ide;
|
|
|
|
std::unique_ptr<llvm::MemoryBuffer>
|
|
swift::ide::makeCodeCompletionMemoryBuffer(const llvm::MemoryBuffer *origBuf,
|
|
unsigned &Offset,
|
|
StringRef bufferIdentifier) {
|
|
|
|
auto origBuffSize = origBuf->getBufferSize();
|
|
if (Offset > origBuffSize)
|
|
Offset = origBuffSize;
|
|
|
|
auto newBuffer = llvm::WritableMemoryBuffer::getNewUninitMemBuffer(
|
|
origBuffSize + 1, bufferIdentifier);
|
|
auto *pos = origBuf->getBufferStart() + Offset;
|
|
auto *newPos =
|
|
std::copy(origBuf->getBufferStart(), pos, newBuffer->getBufferStart());
|
|
*newPos = '\0';
|
|
std::copy(pos, origBuf->getBufferEnd(), newPos + 1);
|
|
|
|
return std::unique_ptr<llvm::MemoryBuffer>(newBuffer.release());
|
|
}
|
|
|
|
namespace {
|
|
/// Returns index number of \p D in \p Decls . If it's not found, returns ~0.
|
|
template <typename Range>
|
|
unsigned findIndexInRange(Decl *D, const Range &Decls) {
|
|
unsigned N = 0;
|
|
for (auto I = Decls.begin(), E = Decls.end(); I != E; ++I) {
|
|
if ((*I)->isImplicit())
|
|
continue;
|
|
if (*I == D)
|
|
return N;
|
|
++N;
|
|
}
|
|
return ~0U;
|
|
}
|
|
|
|
/// Return the element at \p N in \p Decls .
|
|
template <typename Range> Decl *getElementAt(const Range &Decls, unsigned N) {
|
|
for (auto I = Decls.begin(), E = Decls.end(); I != E; ++I) {
|
|
if ((*I)->isImplicit())
|
|
continue;
|
|
if (N == 0)
|
|
return *I;
|
|
--N;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
/// Find the equivalent \c DeclContext with \p DC from \p SF AST.
|
|
/// This assumes the AST which contains \p DC has exact the same structure with
|
|
/// \p SF.
|
|
/// FIXME: This doesn't support IfConfigDecl blocks. If \p DC is in an inactive
|
|
/// config block, this function returns \c false.
|
|
static DeclContext *getEquivalentDeclContextFromSourceFile(DeclContext *DC,
|
|
SourceFile *SF) {
|
|
auto *newDC = DC;
|
|
// NOTE: Shortcut for DC->getParentSourceFile() == SF case is not needed
|
|
// because they should be always different.
|
|
|
|
// Get the index path in the current AST.
|
|
SmallVector<unsigned, 4> IndexStack;
|
|
do {
|
|
auto *D = newDC->getAsDecl();
|
|
if (!D)
|
|
return nullptr;
|
|
auto *parentDC = newDC->getParent();
|
|
unsigned N;
|
|
|
|
if (auto accessor = dyn_cast<AccessorDecl>(D)) {
|
|
// The AST for accessors is like:
|
|
// DeclContext -> AbstractStorageDecl -> AccessorDecl
|
|
// We need to push the index of the accessor within the accessor list
|
|
// of the storage.
|
|
auto *storage = accessor->getStorage();
|
|
if (!storage)
|
|
return nullptr;
|
|
auto accessorN = findIndexInRange(accessor, storage->getAllAccessors());
|
|
IndexStack.push_back(accessorN);
|
|
D = storage;
|
|
}
|
|
|
|
if (auto parentSF = dyn_cast<SourceFile>(parentDC))
|
|
N = findIndexInRange(D, parentSF->getTopLevelDecls());
|
|
else if (auto parentIDC =
|
|
dyn_cast<IterableDeclContext>(parentDC->getAsDecl()))
|
|
N = findIndexInRange(D, parentIDC->getMembers());
|
|
else
|
|
llvm_unreachable("invalid DC kind for finding equivalent DC (indexpath)");
|
|
|
|
// Not found in the decl context tree.
|
|
// FIXME: Probably DC is in an inactive #if block.
|
|
if (N == ~0U) {
|
|
return nullptr;
|
|
}
|
|
|
|
IndexStack.push_back(N);
|
|
newDC = parentDC;
|
|
} while (!newDC->isModuleScopeContext());
|
|
|
|
assert(isa<SourceFile>(newDC) && "DC should be in a SourceFile");
|
|
|
|
// Query the equivalent decl context from the base SourceFile using the index
|
|
// path.
|
|
newDC = SF;
|
|
do {
|
|
auto N = IndexStack.pop_back_val();
|
|
Decl *D;
|
|
if (auto parentSF = dyn_cast<SourceFile>(newDC))
|
|
D = getElementAt(parentSF->getTopLevelDecls(), N);
|
|
else if (auto parentIDC = dyn_cast<IterableDeclContext>(newDC->getAsDecl()))
|
|
D = getElementAt(parentIDC->getMembers(), N);
|
|
else
|
|
llvm_unreachable("invalid DC kind for finding equivalent DC (query)");
|
|
|
|
if (auto storage = dyn_cast<AbstractStorageDecl>(D)) {
|
|
if (IndexStack.empty())
|
|
return nullptr;
|
|
auto accessorN = IndexStack.pop_back_val();
|
|
D = getElementAt(storage->getAllAccessors(), accessorN);
|
|
}
|
|
|
|
newDC = dyn_cast<DeclContext>(D);
|
|
if (!newDC)
|
|
return nullptr;
|
|
} while (!IndexStack.empty());
|
|
|
|
assert(newDC->getContextKind() == DC->getContextKind());
|
|
|
|
return newDC;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
bool CompletionInstance::performCachedOperationIfPossible(
|
|
const swift::CompilerInvocation &Invocation, llvm::hash_code ArgsHash,
|
|
llvm::MemoryBuffer *completionBuffer, unsigned int Offset,
|
|
DiagnosticConsumer *DiagC,
|
|
llvm::function_ref<void(CompilerInstance &, bool)> Callback) {
|
|
llvm::PrettyStackTraceString trace(
|
|
"While performing cached completion if possible");
|
|
|
|
if (!CachedCI)
|
|
return false;
|
|
if (CachedReuseCount >= MaxASTReuseCount)
|
|
return false;
|
|
if (CachedArgHash != ArgsHash)
|
|
return false;
|
|
|
|
auto &CI = *CachedCI;
|
|
auto *oldSF = CI.getCodeCompletionFile().get();
|
|
|
|
auto *oldState = oldSF->getDelayedParserState();
|
|
assert(oldState->hasCodeCompletionDelayedDeclState());
|
|
auto &oldInfo = oldState->getCodeCompletionDelayedDeclState();
|
|
|
|
auto &SM = CI.getSourceMgr();
|
|
if (SM.getIdentifierForBuffer(SM.getCodeCompletionBufferID()) !=
|
|
completionBuffer->getBufferIdentifier())
|
|
return false;
|
|
|
|
// Parse the new buffer into temporary SourceFile.
|
|
SourceManager tmpSM;
|
|
auto tmpBufferID = tmpSM.addMemBufferCopy(completionBuffer);
|
|
tmpSM.setCodeCompletionPoint(tmpBufferID, Offset);
|
|
|
|
LangOptions langOpts;
|
|
langOpts.DisableParserLookup = true;
|
|
TypeCheckerOptions typeckOpts;
|
|
SearchPathOptions searchPathOpts;
|
|
DiagnosticEngine tmpDiags(tmpSM);
|
|
std::unique_ptr<ASTContext> tmpCtx(
|
|
ASTContext::get(langOpts, typeckOpts, searchPathOpts, tmpSM, tmpDiags));
|
|
registerParseRequestFunctions(tmpCtx->evaluator);
|
|
registerIDERequestFunctions(tmpCtx->evaluator);
|
|
registerTypeCheckerRequestFunctions(tmpCtx->evaluator);
|
|
registerSILGenRequestFunctions(tmpCtx->evaluator);
|
|
ModuleDecl *tmpM = ModuleDecl::create(Identifier(), *tmpCtx);
|
|
SourceFile *tmpSF =
|
|
new (*tmpCtx) SourceFile(*tmpM, oldSF->Kind, tmpBufferID,
|
|
SourceFile::ImplicitModuleImportKind::None);
|
|
tmpSF->enableInterfaceHash();
|
|
// Ensure all non-function-body tokens are hashed into the interface hash
|
|
tmpCtx->LangOpts.EnableTypeFingerprints = false;
|
|
|
|
// Couldn't find any completion token?
|
|
auto *newState = tmpSF->getDelayedParserState();
|
|
if (!newState->hasCodeCompletionDelayedDeclState())
|
|
return false;
|
|
|
|
auto &newInfo = newState->getCodeCompletionDelayedDeclState();
|
|
unsigned newBufferID;
|
|
DeclContext *traceDC = nullptr;
|
|
switch (newInfo.Kind) {
|
|
case CodeCompletionDelayedDeclKind::FunctionBody: {
|
|
// If the interface has changed, AST must be refreshed.
|
|
llvm::SmallString<32> oldInterfaceHash{};
|
|
llvm::SmallString<32> newInterfaceHash{};
|
|
oldSF->getInterfaceHash(oldInterfaceHash);
|
|
tmpSF->getInterfaceHash(newInterfaceHash);
|
|
if (oldInterfaceHash != newInterfaceHash)
|
|
return false;
|
|
|
|
DeclContext *DC =
|
|
getEquivalentDeclContextFromSourceFile(newInfo.ParentContext, oldSF);
|
|
if (!DC)
|
|
return false;
|
|
|
|
// OK, we can perform fast completion for this. Update the orignal delayed
|
|
// decl state.
|
|
|
|
// Fast completion keeps the buffer in memory for multiple completions.
|
|
// To reduce the consumption, slice the source buffer so it only holds
|
|
// the portion that is needed for the second pass.
|
|
auto startOffset = newInfo.StartOffset;
|
|
if (newInfo.PrevOffset != ~0u)
|
|
startOffset = newInfo.PrevOffset;
|
|
auto startLoc = tmpSM.getLocForOffset(tmpBufferID, startOffset);
|
|
startLoc = Lexer::getLocForStartOfLine(tmpSM, startLoc);
|
|
startOffset = tmpSM.getLocOffsetInBuffer(startLoc, tmpBufferID);
|
|
|
|
auto endOffset = newInfo.EndOffset;
|
|
auto endLoc = tmpSM.getLocForOffset(tmpBufferID, endOffset);
|
|
endLoc = Lexer::getLocForEndOfToken(tmpSM, endLoc);
|
|
endOffset = tmpSM.getLocOffsetInBuffer(endLoc, tmpBufferID);
|
|
|
|
newInfo.StartOffset -= startOffset;
|
|
newInfo.EndOffset -= startOffset;
|
|
if (newInfo.PrevOffset != ~0u)
|
|
newInfo.PrevOffset -= startOffset;
|
|
|
|
auto sourceText =
|
|
completionBuffer->getBuffer().slice(startOffset, endOffset);
|
|
auto newOffset = Offset - startOffset;
|
|
|
|
newBufferID = SM.addMemBufferCopy(sourceText,
|
|
completionBuffer->getBufferIdentifier());
|
|
SM.openVirtualFile(SM.getLocForBufferStart(newBufferID),
|
|
tmpSM.getDisplayNameForLoc(startLoc),
|
|
tmpSM.getLineAndColumn(startLoc).first - 1);
|
|
SM.setCodeCompletionPoint(newBufferID, newOffset);
|
|
|
|
// Construct dummy scopes. We don't need to restore the original scope
|
|
// because they are probably not 'isResolvable()' anyway.
|
|
auto &SI = oldState->getScopeInfo();
|
|
assert(SI.getCurrentScope() == nullptr);
|
|
Scope Top(SI, ScopeKind::TopLevel);
|
|
Scope Body(SI, ScopeKind::FunctionBody);
|
|
|
|
oldInfo.ParentContext = DC;
|
|
oldInfo.StartOffset = newInfo.StartOffset;
|
|
oldInfo.EndOffset = newInfo.EndOffset;
|
|
oldInfo.PrevOffset = newInfo.PrevOffset;
|
|
oldState->restoreCodeCompletionDelayedDeclState(oldInfo);
|
|
|
|
auto *AFD = cast<AbstractFunctionDecl>(DC);
|
|
if (AFD->isBodySkipped())
|
|
AFD->setBodyDelayed(AFD->getBodySourceRange());
|
|
|
|
traceDC = AFD;
|
|
break;
|
|
}
|
|
case CodeCompletionDelayedDeclKind::Decl:
|
|
case CodeCompletionDelayedDeclKind::TopLevelCodeDecl: {
|
|
// Support decl/top-level code only if the completion happens in a single
|
|
// file 'main' script (e.g. playground).
|
|
auto *oldM = oldInfo.ParentContext->getParentModule();
|
|
if (oldM->getFiles().size() != 1 || oldSF->Kind != SourceFileKind::Main)
|
|
return false;
|
|
|
|
// Perform fast completion.
|
|
|
|
// Prepare the new buffer in the source manager.
|
|
auto sourceText = completionBuffer->getBuffer();
|
|
if (newInfo.Kind == CodeCompletionDelayedDeclKind::TopLevelCodeDecl) {
|
|
// We don't need the source text after the top-level code.
|
|
auto endOffset = newInfo.EndOffset;
|
|
auto endLoc = tmpSM.getLocForOffset(tmpBufferID, endOffset);
|
|
endLoc = Lexer::getLocForEndOfToken(tmpSM, endLoc);
|
|
endOffset = tmpSM.getLocOffsetInBuffer(endLoc, tmpBufferID);
|
|
sourceText = sourceText.slice(0, endOffset);
|
|
}
|
|
newBufferID = SM.addMemBufferCopy(sourceText,
|
|
completionBuffer->getBufferIdentifier());
|
|
SM.setCodeCompletionPoint(newBufferID, Offset);
|
|
|
|
// Create a new module and a source file using the current AST context.
|
|
auto &Ctx = oldM->getASTContext();
|
|
auto newM = ModuleDecl::create(oldM->getName(), Ctx);
|
|
CompilerInstance::ImplicitImports implicitImport(CI);
|
|
SourceFile *newSF = new (Ctx) SourceFile(*newM, SourceFileKind::Main,
|
|
newBufferID, implicitImport.kind);
|
|
newM->addFile(*newSF);
|
|
CompilerInstance::addAdditionalInitialImportsTo(newSF, implicitImport);
|
|
newSF->enableInterfaceHash();
|
|
|
|
// Tell the compiler instance we've replaced the code completion file.
|
|
CI.setCodeCompletionFile(newSF);
|
|
|
|
// Re-process the whole file (parsing will be lazily triggered). Still
|
|
// re-use imported modules.
|
|
performImportResolution(*newSF);
|
|
bindExtensions(*newSF);
|
|
|
|
traceDC = newM;
|
|
#ifndef NDEBUG
|
|
const auto *reparsedState = newSF->getDelayedParserState();
|
|
assert(reparsedState->hasCodeCompletionDelayedDeclState() &&
|
|
"Didn't find completion token?");
|
|
|
|
auto &reparsedInfo = reparsedState->getCodeCompletionDelayedDeclState();
|
|
assert(reparsedInfo.Kind == newInfo.Kind);
|
|
#endif
|
|
break;
|
|
}
|
|
}
|
|
|
|
{
|
|
PrettyStackTraceDeclContext trace("performing cached completion", traceDC);
|
|
|
|
if (DiagC)
|
|
CI.addDiagnosticConsumer(DiagC);
|
|
|
|
Callback(CI, /*reusingASTContext=*/true);
|
|
|
|
if (DiagC)
|
|
CI.removeDiagnosticConsumer(DiagC);
|
|
}
|
|
|
|
CachedReuseCount += 1;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool CompletionInstance::performNewOperation(
|
|
Optional<llvm::hash_code> ArgsHash, swift::CompilerInvocation &Invocation,
|
|
llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FileSystem,
|
|
llvm::MemoryBuffer *completionBuffer, unsigned int Offset,
|
|
std::string &Error, DiagnosticConsumer *DiagC,
|
|
llvm::function_ref<void(CompilerInstance &, bool)> Callback) {
|
|
llvm::PrettyStackTraceString trace("While performing new completion");
|
|
|
|
auto TheInstance = std::make_unique<CompilerInstance>();
|
|
{
|
|
auto &CI = *TheInstance;
|
|
if (DiagC)
|
|
CI.addDiagnosticConsumer(DiagC);
|
|
|
|
SWIFT_DEFER {
|
|
if (DiagC)
|
|
CI.removeDiagnosticConsumer(DiagC);
|
|
};
|
|
|
|
if (FileSystem != llvm::vfs::getRealFileSystem())
|
|
CI.getSourceMgr().setFileSystem(FileSystem);
|
|
|
|
Invocation.setCodeCompletionPoint(completionBuffer, Offset);
|
|
|
|
if (CI.setup(Invocation)) {
|
|
Error = "failed to setup compiler instance";
|
|
return false;
|
|
}
|
|
registerIDERequestFunctions(CI.getASTContext().evaluator);
|
|
|
|
CI.performParseAndResolveImportsOnly();
|
|
|
|
// If we didn't create a source file for completion, bail. This can happen
|
|
// if for example we fail to load the stdlib.
|
|
auto completionFile = CI.getCodeCompletionFile();
|
|
if (!completionFile)
|
|
return true;
|
|
|
|
// If we didn't find a code completion token, bail.
|
|
auto *state = completionFile.get()->getDelayedParserState();
|
|
if (!state->hasCodeCompletionDelayedDeclState())
|
|
return true;
|
|
|
|
Callback(CI, /*reusingASTContext=*/false);
|
|
}
|
|
|
|
if (ArgsHash.hasValue()) {
|
|
CachedCI = std::move(TheInstance);
|
|
CachedArgHash = *ArgsHash;
|
|
CachedReuseCount = 0;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool swift::ide::CompletionInstance::performOperation(
|
|
swift::CompilerInvocation &Invocation, llvm::ArrayRef<const char *> Args,
|
|
llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FileSystem,
|
|
llvm::MemoryBuffer *completionBuffer, unsigned int Offset,
|
|
bool EnableASTCaching, std::string &Error, DiagnosticConsumer *DiagC,
|
|
llvm::function_ref<void(CompilerInstance &, bool)> Callback) {
|
|
|
|
// Always disable source location resolutions from .swiftsourceinfo file
|
|
// because they're somewhat heavy operations and aren't needed for completion.
|
|
Invocation.getFrontendOptions().IgnoreSwiftSourceInfo = true;
|
|
|
|
// Disable to build syntax tree because code-completion skips some portion of
|
|
// source text. That breaks an invariant of syntax tree building.
|
|
Invocation.getLangOptions().BuildSyntaxTree = false;
|
|
|
|
// Since caching uses the interface hash, and since per type fingerprints
|
|
// weaken that hash, disable them here:
|
|
Invocation.getLangOptions().EnableTypeFingerprints = false;
|
|
|
|
// We don't need token list.
|
|
Invocation.getLangOptions().CollectParsedToken = false;
|
|
|
|
// FIXME: ASTScopeLookup doesn't support code completion yet.
|
|
Invocation.disableASTScopeLookup();
|
|
|
|
if (EnableASTCaching) {
|
|
// Compute the signature of the invocation.
|
|
llvm::hash_code ArgsHash(0);
|
|
for (auto arg : Args)
|
|
ArgsHash = llvm::hash_combine(ArgsHash, StringRef(arg));
|
|
|
|
// Concurrent completions will block so that they have higher chance to use
|
|
// the cached completion instance.
|
|
std::lock_guard<std::mutex> lock(mtx);
|
|
|
|
if (performCachedOperationIfPossible(Invocation, ArgsHash, completionBuffer,
|
|
Offset, DiagC, Callback))
|
|
return true;
|
|
|
|
if (performNewOperation(ArgsHash, Invocation, FileSystem, completionBuffer,
|
|
Offset, Error, DiagC, Callback))
|
|
return true;
|
|
} else {
|
|
// Concurrent completions may happen in parallel when caching is disabled.
|
|
if (performNewOperation(None, Invocation, FileSystem, completionBuffer,
|
|
Offset, Error, DiagC, Callback))
|
|
return true;
|
|
}
|
|
|
|
assert(!Error.empty());
|
|
return false;
|
|
}
|