mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
89 lines
3.9 KiB
C++
89 lines
3.9 KiB
C++
//===--- PersistentParserState.cpp - Parser State Implementation ----------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See http://swift.org/LICENSE.txt for license information
|
|
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements parser state persistent across multiple parses.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "swift/AST/Decl.h"
|
|
#include "swift/AST/Expr.h"
|
|
#include "swift/Parse/PersistentParserState.h"
|
|
|
|
using namespace swift;
|
|
|
|
void PersistentParserState::delayFunctionBodyParsing(AbstractFunctionDecl *AFD,
|
|
SourceRange BodyRange,
|
|
SourceLoc PreviousLoc) {
|
|
std::unique_ptr<FunctionBodyState> State;
|
|
State.reset(new FunctionBodyState(BodyRange, PreviousLoc,
|
|
ScopeInfo.saveCurrentScope()));
|
|
assert(DelayedFunctionBodies.find(AFD) == DelayedFunctionBodies.end() &&
|
|
"Already recorded state for this body");
|
|
DelayedFunctionBodies[AFD] = std::move(State);
|
|
}
|
|
|
|
std::unique_ptr<PersistentParserState::FunctionBodyState>
|
|
PersistentParserState::takeFunctionBodyState(AbstractFunctionDecl *AFD) {
|
|
assert(AFD->getBodyKind() == AbstractFunctionDecl::BodyKind::Unparsed);
|
|
DelayedFunctionBodiesTy::iterator I = DelayedFunctionBodies.find(AFD);
|
|
assert(I != DelayedFunctionBodies.end() && "State should be saved");
|
|
std::unique_ptr<FunctionBodyState> State = std::move(I->second);
|
|
DelayedFunctionBodies.erase(I);
|
|
return State;
|
|
}
|
|
|
|
bool PersistentParserState::hasFunctionBodyState(AbstractFunctionDecl *AFD) {
|
|
return DelayedFunctionBodies.find(AFD) != DelayedFunctionBodies.end();
|
|
}
|
|
|
|
void PersistentParserState::delayAccessorBodyParsing(AbstractFunctionDecl *AFD,
|
|
SourceRange BodyRange,
|
|
SourceLoc PreviousLoc,
|
|
SourceLoc LBLoc) {
|
|
std::unique_ptr<AccessorBodyState> State;
|
|
State.reset(new AccessorBodyState(BodyRange, PreviousLoc,
|
|
ScopeInfo.saveCurrentScope(), LBLoc));
|
|
assert(DelayedAccessorBodies.find(AFD) == DelayedAccessorBodies.end() &&
|
|
"Already recorded state for this body");
|
|
DelayedAccessorBodies[AFD] = std::move(State);
|
|
}
|
|
|
|
std::unique_ptr<PersistentParserState::AccessorBodyState>
|
|
PersistentParserState::takeAccessorBodyState(AbstractFunctionDecl *AFD) {
|
|
assert(AFD->getBodyKind() == AbstractFunctionDecl::BodyKind::Unparsed);
|
|
DelayedAccessorBodiesTy::iterator I = DelayedAccessorBodies.find(AFD);
|
|
assert(I != DelayedAccessorBodies.end() && "State should be saved");
|
|
std::unique_ptr<AccessorBodyState> State = std::move(I->second);
|
|
DelayedAccessorBodies.erase(I);
|
|
return State;
|
|
}
|
|
|
|
void PersistentParserState::delayDecl(DelayedDeclKind Kind,
|
|
unsigned Flags,
|
|
DeclContext *ParentContext,
|
|
SourceRange BodyRange,
|
|
SourceLoc PreviousLoc) {
|
|
assert(!CodeCompletionDelayedDeclState.get() &&
|
|
"only one decl can be delayed for code completion");
|
|
CodeCompletionDelayedDeclState.reset(new DelayedDeclState(
|
|
Kind, Flags, ParentContext, BodyRange, PreviousLoc,
|
|
ScopeInfo.saveCurrentScope()));
|
|
}
|
|
|
|
void PersistentParserState::delayTopLevel(TopLevelCodeDecl *TLCD,
|
|
SourceRange BodyRange,
|
|
SourceLoc PreviousLoc) {
|
|
delayDecl(DelayedDeclKind::TopLevelCodeDecl, 0U, TLCD, BodyRange,
|
|
PreviousLoc);
|
|
}
|
|
|