Commit d8ca31ab authored by Clemens Hammacher's avatar Clemens Hammacher Committed by Commit Bot

[wasm] Remove redundant CompilationStateImpl::Abort

Merge {Abort} into {AbortCompilation}.

R=ahaas@chromium.org

Bug: v8:8689
Change-Id: I091a298b1195d145fc21d2afb9d9cc9c57925f95
Reviewed-on: https://chromium-review.googlesource.com/c/1451821
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
Cr-Commit-Position: refs/heads/master@{#59346}
parent 81a62c8c
...@@ -149,8 +149,6 @@ class CompilationStateImpl { ...@@ -149,8 +149,6 @@ class CompilationStateImpl {
void RestartBackgroundCompileTask(); void RestartBackgroundCompileTask();
void RestartBackgroundTasks(); void RestartBackgroundTasks();
void Abort();
void SetError(uint32_t func_index, const WasmError& error); void SetError(uint32_t func_index, const WasmError& error);
Isolate* isolate() const { return isolate_; } Isolate* isolate() const { return isolate_; }
...@@ -856,7 +854,7 @@ AsyncCompileJob::~AsyncCompileJob() { ...@@ -856,7 +854,7 @@ AsyncCompileJob::~AsyncCompileJob() {
// If the runtime objects were not created yet, then initial compilation did // If the runtime objects were not created yet, then initial compilation did
// not finish yet. In this case we can abort compilation. // not finish yet. In this case we can abort compilation.
if (native_module_ && module_object_.is_null()) { if (native_module_ && module_object_.is_null()) {
Impl(native_module_->compilation_state())->Abort(); Impl(native_module_->compilation_state())->AbortCompilation();
} }
// Tell the streaming decoder that the AsyncCompileJob is not available // Tell the streaming decoder that the AsyncCompileJob is not available
// anymore. // anymore.
...@@ -1287,7 +1285,7 @@ void AsyncStreamingProcessor::FinishAsyncCompileJobWithError( ...@@ -1287,7 +1285,7 @@ void AsyncStreamingProcessor::FinishAsyncCompileJobWithError(
// Check if there is already a CompiledModule, in which case we have to clean // Check if there is already a CompiledModule, in which case we have to clean
// up the CompilationStateImpl as well. // up the CompilationStateImpl as well.
if (job_->native_module_) { if (job_->native_module_) {
Impl(job_->native_module_->compilation_state())->Abort(); Impl(job_->native_module_->compilation_state())->AbortCompilation();
job_->DoSync<AsyncCompileJob::DecodeFail, job_->DoSync<AsyncCompileJob::DecodeFail,
AsyncCompileJob::kUseExistingForegroundTask>(error); AsyncCompileJob::kUseExistingForegroundTask>(error);
...@@ -1489,7 +1487,9 @@ CompilationStateImpl::~CompilationStateImpl() { ...@@ -1489,7 +1487,9 @@ CompilationStateImpl::~CompilationStateImpl() {
} }
void CompilationStateImpl::AbortCompilation() { void CompilationStateImpl::AbortCompilation() {
Abort(); background_compile_token_->Cancel();
// No more callbacks after abort.
callbacks_.clear();
} }
void CompilationStateImpl::SetNumberOfFunctionsToCompile(size_t num_functions) { void CompilationStateImpl::SetNumberOfFunctionsToCompile(size_t num_functions) {
...@@ -1650,12 +1650,6 @@ void CompilationStateImpl::RestartBackgroundTasks() { ...@@ -1650,12 +1650,6 @@ void CompilationStateImpl::RestartBackgroundTasks() {
} }
} }
void CompilationStateImpl::Abort() {
background_compile_token_->Cancel();
// No more callbacks after abort.
callbacks_.clear();
}
void CompilationStateImpl::SetError(uint32_t func_index, void CompilationStateImpl::SetError(uint32_t func_index,
const WasmError& error) { const WasmError& error) {
DCHECK(error.has_error()); DCHECK(error.has_error());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment