diff options
Diffstat (limited to 'deps/v8/src/wasm/module-compiler.h')
-rw-r--r-- | deps/v8/src/wasm/module-compiler.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/deps/v8/src/wasm/module-compiler.h b/deps/v8/src/wasm/module-compiler.h index 1aab188d29..0e7ad2c0b4 100644 --- a/deps/v8/src/wasm/module-compiler.h +++ b/deps/v8/src/wasm/module-compiler.h @@ -70,7 +70,8 @@ V8_EXPORT_PRIVATE WasmCode* CompileImportWrapper( NativeModule* native_module, Counters* counters, compiler::WasmImportCallKind kind, const FunctionSig* sig, - int expected_arity, WasmImportWrapperCache::ModificationScope* cache_scope); + int expected_arity, Suspend suspend, + WasmImportWrapperCache::ModificationScope* cache_scope); // Triggered by the WasmCompileLazy builtin. The return value indicates whether // compilation was successful. Lazy compilation can fail only if validation is @@ -214,6 +215,7 @@ class AsyncCompileJob { Isolate* const isolate_; const char* const api_method_name_; const WasmFeatures enabled_features_; + const DynamicTiering dynamic_tiering_; const bool wasm_lazy_compilation_; base::TimeTicks start_time_; // Copy of the module wire bytes, moved into the {native_module_} on its |