Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Unified Diff: src/runtime/runtime-wasm.cc

Issue 2371833007: [wasm] Initial signal handler (Closed)
Patch Set: Try to fix android compile Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/runtime/runtime-wasm.cc
diff --git a/src/runtime/runtime-wasm.cc b/src/runtime/runtime-wasm.cc
index 3ae5b92da17ccfefd82975a7fcfa68070f6d73a6..7f34806d325b4c94169e2c8d588fe2610a0fa679 100644
--- a/src/runtime/runtime-wasm.cc
+++ b/src/runtime/runtime-wasm.cc
@@ -12,6 +12,7 @@
#include "src/factory.h"
#include "src/frames-inl.h"
#include "src/objects-inl.h"
+#include "src/trap-handler/trap-handler.h"
#include "src/v8memory.h"
#include "src/wasm/wasm-module.h"
#include "src/wasm/wasm-objects.h"
@@ -152,6 +153,18 @@ RUNTIME_FUNCTION(Runtime_WasmGetCaughtExceptionValue) {
return exception;
}
+RUNTIME_FUNCTION(Runtime_SetThreadInWasm) {
+ DCHECK(!trap_handler::IsThreadInWasm());
+ trap_handler::SetThreadInWasm();
+ return isolate->heap()->undefined_value();
+}
+
+RUNTIME_FUNCTION(Runtime_ClearThreadInWasm) {
+ DCHECK(trap_handler::IsThreadInWasm());
+ trap_handler::ClearThreadInWasm();
+ return isolate->heap()->undefined_value();
+}
+
RUNTIME_FUNCTION(Runtime_WasmRunInterpreter) {
DCHECK(args.length() == 3);
HandleScope scope(isolate);

Powered by Google App Engine
This is Rietveld 408576698