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

[wasm] Create error objects later

Store the WasmError longer and only creating the heap Error object (via
ErrorThrower) right before it's being used. This prevents a
DeferredHandleScope and simplifies code a lot.

R=mstarzinger@chromium.org

Bug: v8:8689
Change-Id: Iad98f6facaf1914e4d31edde4221ed8789c1fbfa
Reviewed-on: https://chromium-review.googlesource.com/c/1439116
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Reviewed-by: 's avatarMichael Starzinger <mstarzinger@chromium.org>
Cr-Commit-Position: refs/heads/master@{#59133}
parent 9771ca3b
...@@ -1068,11 +1068,14 @@ void AsyncCompileJob::FinishCompile() { ...@@ -1068,11 +1068,14 @@ void AsyncCompileJob::FinishCompile() {
FinishModule(); FinishModule();
} }
void AsyncCompileJob::AsyncCompileFailed(Handle<Object> error_reason) { void AsyncCompileJob::AsyncCompileFailed(const char* context,
const WasmError& error) {
ErrorThrower thrower(isolate_, "AsyncCompile");
thrower.CompileFailed(context, error);
// {job} keeps the {this} pointer alive. // {job} keeps the {this} pointer alive.
std::shared_ptr<AsyncCompileJob> job = std::shared_ptr<AsyncCompileJob> job =
isolate_->wasm_engine()->RemoveCompileJob(this); isolate_->wasm_engine()->RemoveCompileJob(this);
resolver_->OnCompilationFailed(error_reason); resolver_->OnCompilationFailed(thrower.Reify());
} }
void AsyncCompileJob::AsyncCompileSucceeded(Handle<WasmModuleObject> result) { void AsyncCompileJob::AsyncCompileSucceeded(Handle<WasmModuleObject> result) {
...@@ -1107,20 +1110,8 @@ class AsyncCompileJob::CompilationStateCallback { ...@@ -1107,20 +1110,8 @@ class AsyncCompileJob::CompilationStateCallback {
DCHECK(!Impl(job_->native_module_->compilation_state()) DCHECK(!Impl(job_->native_module_->compilation_state())
->baseline_compilation_finished()); ->baseline_compilation_finished());
{ // Note: The WasmError is copied here for use in the foreground task.
SaveContext saved_context(job_->isolate()); job_->DoSync<CompileFailed, kUseExistingForegroundTask>(*error);
job_->isolate()->set_context(*job_->native_context_);
ErrorThrower thrower(job_->isolate(), "AsyncCompilation");
thrower.CompileFailed(nullptr, *error);
Handle<Object> error = thrower.Reify();
DeferredHandleScope deferred(job_->isolate());
error = handle(*error, job_->isolate());
job_->deferred_handles_.push_back(deferred.Detach());
job_->DoSync<CompileFailed, kUseExistingForegroundTask>(error);
}
break; break;
default: default:
UNREACHABLE(); UNREACHABLE();
...@@ -1305,10 +1296,8 @@ class AsyncCompileJob::DecodeFail : public CompileStep { ...@@ -1305,10 +1296,8 @@ class AsyncCompileJob::DecodeFail : public CompileStep {
void RunInForeground(AsyncCompileJob* job) override { void RunInForeground(AsyncCompileJob* job) override {
TRACE_COMPILE("(1b) Decoding failed.\n"); TRACE_COMPILE("(1b) Decoding failed.\n");
ErrorThrower thrower(job->isolate_, "AsyncCompile");
thrower.CompileFailed("Wasm decoding failed", error_);
// {job_} is deleted in AsyncCompileFailed, therefore the {return}. // {job_} is deleted in AsyncCompileFailed, therefore the {return}.
return job->AsyncCompileFailed(thrower.Reify()); return job->AsyncCompileFailed("Wasm decoding failed", error_);
} }
}; };
...@@ -1366,16 +1355,15 @@ class AsyncCompileJob::PrepareAndStartCompile : public CompileStep { ...@@ -1366,16 +1355,15 @@ class AsyncCompileJob::PrepareAndStartCompile : public CompileStep {
//========================================================================== //==========================================================================
class AsyncCompileJob::CompileFailed : public CompileStep { class AsyncCompileJob::CompileFailed : public CompileStep {
public: public:
explicit CompileFailed(Handle<Object> error_reason) explicit CompileFailed(WasmError error) : error_(std::move(error)) {}
: error_reason_(error_reason) {}
void RunInForeground(AsyncCompileJob* job) override { void RunInForeground(AsyncCompileJob* job) override {
TRACE_COMPILE("(4b) Compilation Failed...\n"); TRACE_COMPILE("(4b) Compilation Failed...\n");
return job->AsyncCompileFailed(error_reason_); return job->AsyncCompileFailed("Async compilation failed", error_);
} }
private: private:
Handle<Object> error_reason_; WasmError error_;
}; };
void AsyncCompileJob::CompileWrappers() { void AsyncCompileJob::CompileWrappers() {
......
...@@ -108,7 +108,7 @@ class AsyncCompileJob { ...@@ -108,7 +108,7 @@ class AsyncCompileJob {
void FinishCompile(); void FinishCompile();
void AsyncCompileFailed(Handle<Object> error_reason); void AsyncCompileFailed(const char* context, const WasmError&);
void AsyncCompileSucceeded(Handle<WasmModuleObject> result); void AsyncCompileSucceeded(Handle<WasmModuleObject> result);
......
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