2018-01-17 14:46:27 +00:00
|
|
|
// Copyright 2018 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "src/wasm/wasm-engine.h"
|
2018-01-31 14:58:12 +00:00
|
|
|
|
2018-07-16 11:52:11 +00:00
|
|
|
#include "src/code-tracer.h"
|
2018-07-10 13:15:29 +00:00
|
|
|
#include "src/compilation-statistics.h"
|
2019-01-25 10:35:37 +00:00
|
|
|
#include "src/counters.h"
|
2018-01-17 14:46:27 +00:00
|
|
|
#include "src/objects-inl.h"
|
2018-12-25 00:19:47 +00:00
|
|
|
#include "src/objects/heap-number.h"
|
2018-05-23 13:29:02 +00:00
|
|
|
#include "src/objects/js-promise.h"
|
2019-01-22 09:02:52 +00:00
|
|
|
#include "src/ostreams.h"
|
2018-08-17 12:35:29 +00:00
|
|
|
#include "src/wasm/function-compiler.h"
|
2018-01-17 14:46:27 +00:00
|
|
|
#include "src/wasm/module-compiler.h"
|
2018-04-27 13:38:40 +00:00
|
|
|
#include "src/wasm/module-decoder.h"
|
2019-01-14 16:03:40 +00:00
|
|
|
#include "src/wasm/module-instantiate.h"
|
2018-04-27 13:38:40 +00:00
|
|
|
#include "src/wasm/streaming-decoder.h"
|
2018-07-31 08:16:22 +00:00
|
|
|
#include "src/wasm/wasm-objects-inl.h"
|
2018-01-17 14:46:27 +00:00
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace wasm {
|
|
|
|
|
2019-01-25 10:44:42 +00:00
|
|
|
namespace {
|
2019-04-16 11:48:09 +00:00
|
|
|
// A task to log a set of {WasmCode} objects in an isolate. It does not own any
|
|
|
|
// data itself, since it is owned by the platform, so lifetime is not really
|
|
|
|
// bound to the wasm engine.
|
2019-01-25 10:44:42 +00:00
|
|
|
class LogCodesTask : public Task {
|
|
|
|
public:
|
2019-04-16 11:48:09 +00:00
|
|
|
LogCodesTask(base::Mutex* mutex, LogCodesTask** task_slot, Isolate* isolate,
|
|
|
|
WasmEngine* engine)
|
|
|
|
: mutex_(mutex),
|
|
|
|
task_slot_(task_slot),
|
|
|
|
isolate_(isolate),
|
|
|
|
engine_(engine) {
|
2019-02-05 13:22:24 +00:00
|
|
|
DCHECK_NOT_NULL(task_slot);
|
|
|
|
DCHECK_NOT_NULL(isolate);
|
|
|
|
}
|
|
|
|
|
|
|
|
~LogCodesTask() {
|
|
|
|
// If the platform deletes this task before executing it, we also deregister
|
|
|
|
// it to avoid use-after-free from still-running background threads.
|
|
|
|
if (!cancelled()) DeregisterTask();
|
2019-04-15 14:39:15 +00:00
|
|
|
}
|
2019-01-25 10:44:42 +00:00
|
|
|
|
|
|
|
void Run() override {
|
2019-02-05 13:22:24 +00:00
|
|
|
if (cancelled()) return;
|
|
|
|
DeregisterTask();
|
2019-04-16 11:48:09 +00:00
|
|
|
engine_->LogOutstandingCodesForIsolate(isolate_);
|
2019-01-25 10:44:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Cancel() {
|
|
|
|
// Cancel will only be called on Isolate shutdown, which happens on the
|
|
|
|
// Isolate's foreground thread. Thus no synchronization needed.
|
|
|
|
isolate_ = nullptr;
|
|
|
|
}
|
|
|
|
|
2019-02-05 13:22:24 +00:00
|
|
|
bool cancelled() const { return isolate_ == nullptr; }
|
|
|
|
|
|
|
|
void DeregisterTask() {
|
|
|
|
// The task will only be deregistered from the foreground thread (executing
|
|
|
|
// this task or calling its destructor), thus we do not need synchronization
|
|
|
|
// on this field access.
|
|
|
|
if (task_slot_ == nullptr) return; // already deregistered.
|
|
|
|
// Remove this task from the {IsolateInfo} in the engine. The next
|
|
|
|
// logging request will allocate and schedule a new task.
|
|
|
|
base::MutexGuard guard(mutex_);
|
|
|
|
DCHECK_EQ(this, *task_slot_);
|
|
|
|
*task_slot_ = nullptr;
|
|
|
|
task_slot_ = nullptr;
|
|
|
|
}
|
|
|
|
|
2019-01-25 10:44:42 +00:00
|
|
|
private:
|
|
|
|
// The mutex of the WasmEngine.
|
|
|
|
base::Mutex* const mutex_;
|
|
|
|
// The slot in the WasmEngine where this LogCodesTask is stored. This is
|
2019-02-05 13:22:24 +00:00
|
|
|
// cleared by this task before execution or on task destruction.
|
|
|
|
LogCodesTask** task_slot_;
|
2019-01-25 10:44:42 +00:00
|
|
|
Isolate* isolate_;
|
2019-04-16 11:48:09 +00:00
|
|
|
WasmEngine* const engine_;
|
2019-01-25 10:44:42 +00:00
|
|
|
};
|
2019-04-09 13:05:37 +00:00
|
|
|
|
|
|
|
class WasmGCForegroundTask : public Task {
|
|
|
|
public:
|
|
|
|
explicit WasmGCForegroundTask(Isolate* isolate) : isolate_(isolate) {
|
|
|
|
DCHECK_NOT_NULL(isolate);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Run() final {
|
|
|
|
if (isolate_ == nullptr) return; // cancelled.
|
|
|
|
WasmEngine* engine = isolate_->wasm_engine();
|
|
|
|
// If the foreground task is executing, there is no wasm code active. Just
|
|
|
|
// report an empty set of live wasm code.
|
|
|
|
engine->ReportLiveCodeForGC(isolate_, Vector<WasmCode*>{});
|
|
|
|
}
|
|
|
|
|
|
|
|
void Cancel() { isolate_ = nullptr; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
Isolate* isolate_;
|
|
|
|
};
|
|
|
|
|
2019-01-25 10:44:42 +00:00
|
|
|
} // namespace
|
|
|
|
|
2019-04-09 13:05:37 +00:00
|
|
|
struct WasmEngine::CurrentGCInfo {
|
|
|
|
// Set of isolates that did not scan their stack yet for used WasmCode, and
|
|
|
|
// their scheduled foreground task.
|
|
|
|
std::unordered_map<Isolate*, WasmGCForegroundTask*> outstanding_isolates;
|
|
|
|
|
|
|
|
// Set of dead code. Filled with all potentially dead code on initialization.
|
|
|
|
// Code that is still in-use is removed by the individual isolates.
|
|
|
|
std::unordered_set<WasmCode*> dead_code;
|
|
|
|
};
|
|
|
|
|
2019-01-25 10:35:37 +00:00
|
|
|
struct WasmEngine::IsolateInfo {
|
2019-02-06 11:19:03 +00:00
|
|
|
explicit IsolateInfo(Isolate* isolate)
|
|
|
|
: log_codes(WasmCode::ShouldBeLogged(isolate)) {
|
2019-01-25 10:44:42 +00:00
|
|
|
v8::Isolate* v8_isolate = reinterpret_cast<v8::Isolate*>(isolate);
|
|
|
|
v8::Platform* platform = V8::GetCurrentPlatform();
|
|
|
|
foreground_task_runner = platform->GetForegroundTaskRunner(v8_isolate);
|
|
|
|
}
|
|
|
|
|
2019-04-16 11:48:09 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
~IsolateInfo() {
|
|
|
|
// Before destructing, the {WasmEngine} must have cleared outstanding code
|
|
|
|
// to log.
|
|
|
|
DCHECK_EQ(0, code_to_log.size());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-01-25 10:35:37 +00:00
|
|
|
// All native modules that are being used by this Isolate (currently only
|
|
|
|
// grows, never shrinks).
|
|
|
|
std::set<NativeModule*> native_modules;
|
2019-01-25 10:44:42 +00:00
|
|
|
|
2019-02-06 11:19:03 +00:00
|
|
|
// Caches whether code needs to be logged on this isolate.
|
|
|
|
bool log_codes;
|
|
|
|
|
2019-01-25 10:44:42 +00:00
|
|
|
// The currently scheduled LogCodesTask.
|
|
|
|
LogCodesTask* log_codes_task = nullptr;
|
|
|
|
|
2019-04-16 11:48:09 +00:00
|
|
|
// The vector of code objects that still need to be logged in this isolate.
|
|
|
|
std::vector<WasmCode*> code_to_log;
|
|
|
|
|
2019-01-25 10:44:42 +00:00
|
|
|
// The foreground task runner of the isolate (can be called from background).
|
|
|
|
std::shared_ptr<v8::TaskRunner> foreground_task_runner;
|
2019-01-25 10:35:37 +00:00
|
|
|
};
|
|
|
|
|
2019-04-09 14:00:09 +00:00
|
|
|
struct WasmEngine::NativeModuleInfo {
|
|
|
|
// Set of isolates using this NativeModule.
|
|
|
|
std::unordered_set<Isolate*> isolates;
|
|
|
|
|
|
|
|
// Set of potentially dead code. The ref-count of these code objects was
|
|
|
|
// incremented for each Isolate that might still execute the code, and is
|
|
|
|
// decremented on {RemoveIsolate} or on a GC.
|
|
|
|
std::unordered_set<WasmCode*> potentially_dead_code;
|
|
|
|
};
|
|
|
|
|
2018-09-18 13:05:45 +00:00
|
|
|
WasmEngine::WasmEngine()
|
2018-12-28 13:51:59 +00:00
|
|
|
: code_manager_(&memory_tracker_, FLAG_wasm_max_code_space * MB) {}
|
2018-07-10 13:15:29 +00:00
|
|
|
|
2018-08-01 11:18:46 +00:00
|
|
|
WasmEngine::~WasmEngine() {
|
2019-01-23 11:49:36 +00:00
|
|
|
// Synchronize on all background compile tasks.
|
|
|
|
background_compile_task_manager_.CancelAndWait();
|
2018-08-01 11:18:46 +00:00
|
|
|
// All AsyncCompileJobs have been canceled.
|
2019-02-01 14:57:59 +00:00
|
|
|
DCHECK(async_compile_jobs_.empty());
|
2018-09-25 11:24:09 +00:00
|
|
|
// All Isolates have been deregistered.
|
|
|
|
DCHECK(isolates_.empty());
|
2019-01-25 10:35:37 +00:00
|
|
|
// All NativeModules did die.
|
2019-04-09 14:00:09 +00:00
|
|
|
DCHECK(native_modules_.empty());
|
2018-08-01 11:18:46 +00:00
|
|
|
}
|
2018-07-10 13:15:29 +00:00
|
|
|
|
2018-08-08 14:54:44 +00:00
|
|
|
bool WasmEngine::SyncValidate(Isolate* isolate, const WasmFeatures& enabled,
|
|
|
|
const ModuleWireBytes& bytes) {
|
2018-01-17 14:46:27 +00:00
|
|
|
// TODO(titzer): remove dependency on the isolate.
|
|
|
|
if (bytes.start() == nullptr || bytes.length() == 0) return false;
|
2018-07-20 12:55:40 +00:00
|
|
|
ModuleResult result =
|
2018-08-08 14:54:44 +00:00
|
|
|
DecodeWasmModule(enabled, bytes.start(), bytes.end(), true, kWasmOrigin,
|
2018-07-20 12:55:40 +00:00
|
|
|
isolate->counters(), allocator());
|
2018-01-17 14:46:27 +00:00
|
|
|
return result.ok();
|
|
|
|
}
|
|
|
|
|
2018-11-21 21:19:18 +00:00
|
|
|
MaybeHandle<AsmWasmData> WasmEngine::SyncCompileTranslatedAsmJs(
|
2018-01-18 10:52:52 +00:00
|
|
|
Isolate* isolate, ErrorThrower* thrower, const ModuleWireBytes& bytes,
|
2018-11-21 21:19:18 +00:00
|
|
|
Vector<const byte> asm_js_offset_table_bytes,
|
|
|
|
Handle<HeapNumber> uses_bitset) {
|
2018-07-20 12:55:40 +00:00
|
|
|
ModuleResult result =
|
2018-08-08 14:54:44 +00:00
|
|
|
DecodeWasmModule(kAsmjsWasmFeatures, bytes.start(), bytes.end(), false,
|
|
|
|
kAsmJsOrigin, isolate->counters(), allocator());
|
2019-03-27 15:28:41 +00:00
|
|
|
if (result.failed()) {
|
|
|
|
// This happens once in a while when we have missed some limit check
|
|
|
|
// in the asm parser. Output an error message to help diagnose, but crash.
|
|
|
|
std::cout << result.error().message();
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
2018-01-18 10:52:52 +00:00
|
|
|
|
2018-04-27 09:01:06 +00:00
|
|
|
// Transfer ownership of the WasmModule to the {Managed<WasmModule>} generated
|
2018-11-21 21:19:18 +00:00
|
|
|
// in {CompileToNativeModule}.
|
|
|
|
Handle<FixedArray> export_wrappers;
|
2019-03-12 16:10:58 +00:00
|
|
|
std::shared_ptr<NativeModule> native_module =
|
2018-11-21 21:19:18 +00:00
|
|
|
CompileToNativeModule(isolate, kAsmjsWasmFeatures, thrower,
|
|
|
|
std::move(result).value(), bytes, &export_wrappers);
|
|
|
|
if (!native_module) return {};
|
|
|
|
|
|
|
|
// Create heap objects for asm.js offset table to be stored in the module
|
|
|
|
// object.
|
|
|
|
Handle<ByteArray> asm_js_offset_table =
|
|
|
|
isolate->factory()->NewByteArray(asm_js_offset_table_bytes.length());
|
|
|
|
asm_js_offset_table->copy_in(0, asm_js_offset_table_bytes.start(),
|
|
|
|
asm_js_offset_table_bytes.length());
|
|
|
|
|
|
|
|
return AsmWasmData::New(isolate, std::move(native_module), export_wrappers,
|
|
|
|
asm_js_offset_table, uses_bitset);
|
|
|
|
}
|
|
|
|
|
|
|
|
Handle<WasmModuleObject> WasmEngine::FinalizeTranslatedAsmJs(
|
|
|
|
Isolate* isolate, Handle<AsmWasmData> asm_wasm_data,
|
|
|
|
Handle<Script> script) {
|
|
|
|
std::shared_ptr<NativeModule> native_module =
|
|
|
|
asm_wasm_data->managed_native_module()->get();
|
|
|
|
Handle<FixedArray> export_wrappers =
|
|
|
|
handle(asm_wasm_data->export_wrappers(), isolate);
|
|
|
|
size_t code_size_estimate =
|
|
|
|
wasm::WasmCodeManager::EstimateNativeModuleCodeSize(
|
|
|
|
native_module->module());
|
|
|
|
|
|
|
|
Handle<WasmModuleObject> module_object =
|
|
|
|
WasmModuleObject::New(isolate, std::move(native_module), script,
|
|
|
|
export_wrappers, code_size_estimate);
|
|
|
|
module_object->set_asm_js_offset_table(asm_wasm_data->asm_js_offset_table());
|
|
|
|
return module_object;
|
2018-01-18 10:52:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MaybeHandle<WasmModuleObject> WasmEngine::SyncCompile(
|
2018-08-08 14:54:44 +00:00
|
|
|
Isolate* isolate, const WasmFeatures& enabled, ErrorThrower* thrower,
|
|
|
|
const ModuleWireBytes& bytes) {
|
2018-07-20 12:55:40 +00:00
|
|
|
ModuleResult result =
|
2018-08-08 14:54:44 +00:00
|
|
|
DecodeWasmModule(enabled, bytes.start(), bytes.end(), false, kWasmOrigin,
|
2018-07-20 12:55:40 +00:00
|
|
|
isolate->counters(), allocator());
|
2018-01-18 10:52:52 +00:00
|
|
|
if (result.failed()) {
|
2019-02-01 13:51:23 +00:00
|
|
|
thrower->CompileFailed(result.error());
|
2018-01-18 10:52:52 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2018-04-27 09:01:06 +00:00
|
|
|
// Transfer ownership of the WasmModule to the {Managed<WasmModule>} generated
|
2018-01-18 10:52:52 +00:00
|
|
|
// in {CompileToModuleObject}.
|
2018-11-21 21:19:18 +00:00
|
|
|
Handle<FixedArray> export_wrappers;
|
2019-03-12 16:10:58 +00:00
|
|
|
std::shared_ptr<NativeModule> native_module =
|
2018-11-21 21:19:18 +00:00
|
|
|
CompileToNativeModule(isolate, enabled, thrower,
|
|
|
|
std::move(result).value(), bytes, &export_wrappers);
|
|
|
|
if (!native_module) return {};
|
|
|
|
|
|
|
|
Handle<Script> script =
|
|
|
|
CreateWasmScript(isolate, bytes, native_module->module()->source_map_url);
|
|
|
|
size_t code_size_estimate =
|
|
|
|
wasm::WasmCodeManager::EstimateNativeModuleCodeSize(
|
|
|
|
native_module->module());
|
|
|
|
|
|
|
|
// Create the module object.
|
|
|
|
// TODO(clemensh): For the same module (same bytes / same hash), we should
|
|
|
|
// only have one WasmModuleObject. Otherwise, we might only set
|
|
|
|
// breakpoints on a (potentially empty) subset of the instances.
|
|
|
|
|
|
|
|
// Create the compiled module object and populate with compiled functions
|
|
|
|
// and information needed at instantiation time. This object needs to be
|
|
|
|
// serializable. Instantiation may occur off a deserialized version of this
|
|
|
|
// object.
|
|
|
|
Handle<WasmModuleObject> module_object =
|
|
|
|
WasmModuleObject::New(isolate, std::move(native_module), script,
|
|
|
|
export_wrappers, code_size_estimate);
|
|
|
|
|
|
|
|
// Finish the Wasm script now and make it public to the debugger.
|
|
|
|
isolate->debug()->OnAfterCompile(script);
|
|
|
|
return module_object;
|
2018-01-18 10:52:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MaybeHandle<WasmInstanceObject> WasmEngine::SyncInstantiate(
|
|
|
|
Isolate* isolate, ErrorThrower* thrower,
|
|
|
|
Handle<WasmModuleObject> module_object, MaybeHandle<JSReceiver> imports,
|
|
|
|
MaybeHandle<JSArrayBuffer> memory) {
|
|
|
|
return InstantiateToInstanceObject(isolate, thrower, module_object, imports,
|
|
|
|
memory);
|
|
|
|
}
|
|
|
|
|
2018-05-24 21:22:27 +00:00
|
|
|
void WasmEngine::AsyncInstantiate(
|
|
|
|
Isolate* isolate, std::unique_ptr<InstantiationResultResolver> resolver,
|
|
|
|
Handle<WasmModuleObject> module_object, MaybeHandle<JSReceiver> imports) {
|
2019-02-07 13:06:39 +00:00
|
|
|
ErrorThrower thrower(isolate, "WebAssembly.instantiate()");
|
2018-06-08 11:51:33 +00:00
|
|
|
// Instantiate a TryCatch so that caught exceptions won't progagate out.
|
|
|
|
// They will still be set as pending exceptions on the isolate.
|
|
|
|
// TODO(clemensh): Avoid TryCatch, use Execution::TryCall internally to invoke
|
|
|
|
// start function and report thrown exception explicitly via out argument.
|
|
|
|
v8::TryCatch catcher(reinterpret_cast<v8::Isolate*>(isolate));
|
|
|
|
catcher.SetVerbose(false);
|
|
|
|
catcher.SetCaptureMessage(false);
|
|
|
|
|
2018-01-18 10:52:52 +00:00
|
|
|
MaybeHandle<WasmInstanceObject> instance_object = SyncInstantiate(
|
|
|
|
isolate, &thrower, module_object, imports, Handle<JSArrayBuffer>::null());
|
2018-06-08 11:51:33 +00:00
|
|
|
|
|
|
|
if (!instance_object.is_null()) {
|
|
|
|
resolver->OnInstantiationSucceeded(instance_object.ToHandleChecked());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-08-07 10:00:21 +00:00
|
|
|
if (isolate->has_pending_exception()) {
|
|
|
|
// The JS code executed during instantiation has thrown an exception.
|
|
|
|
// We have to move the exception to the promise chain.
|
2018-06-08 11:51:33 +00:00
|
|
|
Handle<Object> exception(isolate->pending_exception(), isolate);
|
|
|
|
isolate->clear_pending_exception();
|
|
|
|
*isolate->external_caught_exception_address() = false;
|
|
|
|
resolver->OnInstantiationFailed(exception);
|
2018-08-07 10:00:21 +00:00
|
|
|
thrower.Reset();
|
|
|
|
} else {
|
|
|
|
DCHECK(thrower.error());
|
|
|
|
resolver->OnInstantiationFailed(thrower.Reify());
|
2018-01-18 10:52:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-24 21:22:27 +00:00
|
|
|
void WasmEngine::AsyncCompile(
|
2018-08-08 14:54:44 +00:00
|
|
|
Isolate* isolate, const WasmFeatures& enabled,
|
2018-08-13 13:35:54 +00:00
|
|
|
std::shared_ptr<CompilationResultResolver> resolver,
|
2018-05-24 21:22:27 +00:00
|
|
|
const ModuleWireBytes& bytes, bool is_shared) {
|
2018-01-18 10:52:52 +00:00
|
|
|
if (!FLAG_wasm_async_compilation) {
|
|
|
|
// Asynchronous compilation disabled; fall back on synchronous compilation.
|
|
|
|
ErrorThrower thrower(isolate, "WasmCompile");
|
|
|
|
MaybeHandle<WasmModuleObject> module_object;
|
|
|
|
if (is_shared) {
|
|
|
|
// Make a copy of the wire bytes to avoid concurrent modification.
|
|
|
|
std::unique_ptr<uint8_t[]> copy(new uint8_t[bytes.length()]);
|
|
|
|
memcpy(copy.get(), bytes.start(), bytes.length());
|
2018-08-02 09:50:08 +00:00
|
|
|
ModuleWireBytes bytes_copy(copy.get(), copy.get() + bytes.length());
|
2018-08-08 14:54:44 +00:00
|
|
|
module_object = SyncCompile(isolate, enabled, &thrower, bytes_copy);
|
2018-01-18 10:52:52 +00:00
|
|
|
} else {
|
|
|
|
// The wire bytes are not shared, OK to use them directly.
|
2018-08-08 14:54:44 +00:00
|
|
|
module_object = SyncCompile(isolate, enabled, &thrower, bytes);
|
2018-01-18 10:52:52 +00:00
|
|
|
}
|
|
|
|
if (thrower.error()) {
|
2018-05-24 21:22:27 +00:00
|
|
|
resolver->OnCompilationFailed(thrower.Reify());
|
2018-01-18 10:52:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
Handle<WasmModuleObject> module = module_object.ToHandleChecked();
|
2018-05-24 21:22:27 +00:00
|
|
|
resolver->OnCompilationSucceeded(module);
|
2018-01-18 10:52:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FLAG_wasm_test_streaming) {
|
|
|
|
std::shared_ptr<StreamingDecoder> streaming_decoder =
|
2018-08-08 14:54:44 +00:00
|
|
|
StartStreamingCompilation(isolate, enabled,
|
|
|
|
handle(isolate->context(), isolate),
|
|
|
|
std::move(resolver));
|
2018-01-18 10:52:52 +00:00
|
|
|
streaming_decoder->OnBytesReceived(bytes.module_bytes());
|
|
|
|
streaming_decoder->Finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Make a copy of the wire bytes in case the user program changes them
|
|
|
|
// during asynchronous compilation.
|
|
|
|
std::unique_ptr<byte[]> copy(new byte[bytes.length()]);
|
|
|
|
memcpy(copy.get(), bytes.start(), bytes.length());
|
2018-05-09 13:48:47 +00:00
|
|
|
|
2019-01-08 13:58:01 +00:00
|
|
|
AsyncCompileJob* job = CreateAsyncCompileJob(
|
2018-08-08 14:54:44 +00:00
|
|
|
isolate, enabled, std::move(copy), bytes.length(),
|
2018-06-11 09:53:20 +00:00
|
|
|
handle(isolate->context(), isolate), std::move(resolver));
|
2018-05-09 13:48:47 +00:00
|
|
|
job->Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<StreamingDecoder> WasmEngine::StartStreamingCompilation(
|
2018-08-08 14:54:44 +00:00
|
|
|
Isolate* isolate, const WasmFeatures& enabled, Handle<Context> context,
|
2018-08-13 13:35:54 +00:00
|
|
|
std::shared_ptr<CompilationResultResolver> resolver) {
|
2019-01-08 13:58:01 +00:00
|
|
|
AsyncCompileJob* job =
|
2018-08-08 14:54:44 +00:00
|
|
|
CreateAsyncCompileJob(isolate, enabled, std::unique_ptr<byte[]>(nullptr),
|
|
|
|
0, context, std::move(resolver));
|
2018-05-09 13:48:47 +00:00
|
|
|
return job->CreateStreamingDecoder();
|
2018-01-18 10:52:52 +00:00
|
|
|
}
|
|
|
|
|
2018-12-12 15:18:38 +00:00
|
|
|
void WasmEngine::CompileFunction(Isolate* isolate, NativeModule* native_module,
|
2018-08-21 15:01:31 +00:00
|
|
|
uint32_t function_index, ExecutionTier tier) {
|
2018-08-23 14:44:28 +00:00
|
|
|
// Note we assume that "one-off" compilations can discard detected features.
|
|
|
|
WasmFeatures detected = kNoWasmFeatures;
|
2018-12-12 15:18:38 +00:00
|
|
|
WasmCompilationUnit::CompileWasmFunction(
|
2018-10-30 12:46:04 +00:00
|
|
|
isolate, native_module, &detected,
|
2018-08-21 15:01:31 +00:00
|
|
|
&native_module->module()->functions[function_index], tier);
|
2018-08-17 12:35:29 +00:00
|
|
|
}
|
|
|
|
|
2018-07-31 08:16:22 +00:00
|
|
|
std::shared_ptr<NativeModule> WasmEngine::ExportNativeModule(
|
|
|
|
Handle<WasmModuleObject> module_object) {
|
2018-12-11 10:37:32 +00:00
|
|
|
return module_object->shared_native_module();
|
2018-07-31 08:16:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Handle<WasmModuleObject> WasmEngine::ImportNativeModule(
|
2019-01-25 10:35:37 +00:00
|
|
|
Isolate* isolate, std::shared_ptr<NativeModule> shared_native_module) {
|
|
|
|
NativeModule* native_module = shared_native_module.get();
|
|
|
|
ModuleWireBytes wire_bytes(native_module->wire_bytes());
|
|
|
|
const WasmModule* module = native_module->module();
|
2018-09-13 19:19:30 +00:00
|
|
|
Handle<Script> script =
|
|
|
|
CreateWasmScript(isolate, wire_bytes, module->source_map_url);
|
2019-01-25 10:35:37 +00:00
|
|
|
size_t code_size = native_module->committed_code_space();
|
2018-11-12 14:00:26 +00:00
|
|
|
Handle<WasmModuleObject> module_object = WasmModuleObject::New(
|
2019-01-25 10:35:37 +00:00
|
|
|
isolate, std::move(shared_native_module), script, code_size);
|
|
|
|
CompileJsToWasmWrappers(isolate, native_module->module(),
|
2018-11-21 21:19:18 +00:00
|
|
|
handle(module_object->export_wrappers(), isolate));
|
2019-01-25 10:35:37 +00:00
|
|
|
{
|
|
|
|
base::MutexGuard lock(&mutex_);
|
|
|
|
DCHECK_EQ(1, isolates_.count(isolate));
|
|
|
|
isolates_[isolate]->native_modules.insert(native_module);
|
2019-04-09 14:00:09 +00:00
|
|
|
DCHECK_EQ(1, native_modules_.count(native_module));
|
|
|
|
native_modules_[native_module]->isolates.insert(isolate);
|
2019-01-25 10:35:37 +00:00
|
|
|
}
|
2018-07-31 08:16:22 +00:00
|
|
|
return module_object;
|
|
|
|
}
|
|
|
|
|
2018-07-10 13:15:29 +00:00
|
|
|
CompilationStatistics* WasmEngine::GetOrCreateTurboStatistics() {
|
2018-10-12 13:52:49 +00:00
|
|
|
base::MutexGuard guard(&mutex_);
|
2018-07-10 13:15:29 +00:00
|
|
|
if (compilation_stats_ == nullptr) {
|
|
|
|
compilation_stats_.reset(new CompilationStatistics());
|
|
|
|
}
|
|
|
|
return compilation_stats_.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
void WasmEngine::DumpAndResetTurboStatistics() {
|
2018-10-12 13:52:49 +00:00
|
|
|
base::MutexGuard guard(&mutex_);
|
2018-07-10 13:15:29 +00:00
|
|
|
if (compilation_stats_ != nullptr) {
|
|
|
|
StdoutStream os;
|
|
|
|
os << AsPrintableStatistics{*compilation_stats_.get(), false} << std::endl;
|
|
|
|
}
|
|
|
|
compilation_stats_.reset();
|
|
|
|
}
|
|
|
|
|
2018-07-16 11:52:11 +00:00
|
|
|
CodeTracer* WasmEngine::GetCodeTracer() {
|
2018-10-12 13:52:49 +00:00
|
|
|
base::MutexGuard guard(&mutex_);
|
2018-07-16 11:52:11 +00:00
|
|
|
if (code_tracer_ == nullptr) code_tracer_.reset(new CodeTracer(-1));
|
|
|
|
return code_tracer_.get();
|
|
|
|
}
|
|
|
|
|
2019-01-08 13:58:01 +00:00
|
|
|
AsyncCompileJob* WasmEngine::CreateAsyncCompileJob(
|
2018-08-08 14:54:44 +00:00
|
|
|
Isolate* isolate, const WasmFeatures& enabled,
|
|
|
|
std::unique_ptr<byte[]> bytes_copy, size_t length, Handle<Context> context,
|
2018-08-13 13:35:54 +00:00
|
|
|
std::shared_ptr<CompilationResultResolver> resolver) {
|
2019-01-08 13:58:01 +00:00
|
|
|
AsyncCompileJob* job =
|
|
|
|
new AsyncCompileJob(isolate, enabled, std::move(bytes_copy), length,
|
|
|
|
context, std::move(resolver));
|
2019-02-01 14:57:59 +00:00
|
|
|
// Pass ownership to the unique_ptr in {async_compile_jobs_}.
|
2018-10-12 13:52:49 +00:00
|
|
|
base::MutexGuard guard(&mutex_);
|
2019-02-01 14:57:59 +00:00
|
|
|
async_compile_jobs_[job] = std::unique_ptr<AsyncCompileJob>(job);
|
2018-05-09 13:48:47 +00:00
|
|
|
return job;
|
|
|
|
}
|
|
|
|
|
2019-01-08 13:58:01 +00:00
|
|
|
std::unique_ptr<AsyncCompileJob> WasmEngine::RemoveCompileJob(
|
|
|
|
AsyncCompileJob* job) {
|
2018-10-12 13:52:49 +00:00
|
|
|
base::MutexGuard guard(&mutex_);
|
2019-02-01 14:57:59 +00:00
|
|
|
auto item = async_compile_jobs_.find(job);
|
|
|
|
DCHECK(item != async_compile_jobs_.end());
|
2019-01-08 13:58:01 +00:00
|
|
|
std::unique_ptr<AsyncCompileJob> result = std::move(item->second);
|
2019-02-01 14:57:59 +00:00
|
|
|
async_compile_jobs_.erase(item);
|
2019-01-08 13:58:01 +00:00
|
|
|
return result;
|
2018-05-09 13:48:47 +00:00
|
|
|
}
|
|
|
|
|
2018-08-01 12:36:38 +00:00
|
|
|
bool WasmEngine::HasRunningCompileJob(Isolate* isolate) {
|
2018-10-12 13:52:49 +00:00
|
|
|
base::MutexGuard guard(&mutex_);
|
2018-09-25 11:24:09 +00:00
|
|
|
DCHECK_EQ(1, isolates_.count(isolate));
|
2019-02-01 14:57:59 +00:00
|
|
|
for (auto& entry : async_compile_jobs_) {
|
2018-08-01 12:36:38 +00:00
|
|
|
if (entry.first->isolate() == isolate) return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-01-08 13:58:01 +00:00
|
|
|
void WasmEngine::DeleteCompileJobsOnIsolate(Isolate* isolate) {
|
2019-01-25 10:35:37 +00:00
|
|
|
// Under the mutex get all jobs to delete. Then delete them without holding
|
|
|
|
// the mutex, such that deletion can reenter the WasmEngine.
|
|
|
|
std::vector<std::unique_ptr<AsyncCompileJob>> jobs_to_delete;
|
|
|
|
{
|
|
|
|
base::MutexGuard guard(&mutex_);
|
|
|
|
DCHECK_EQ(1, isolates_.count(isolate));
|
2019-02-01 14:57:59 +00:00
|
|
|
for (auto it = async_compile_jobs_.begin();
|
|
|
|
it != async_compile_jobs_.end();) {
|
2019-01-25 10:35:37 +00:00
|
|
|
if (it->first->isolate() != isolate) {
|
|
|
|
++it;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
jobs_to_delete.push_back(std::move(it->second));
|
2019-02-01 14:57:59 +00:00
|
|
|
it = async_compile_jobs_.erase(it);
|
2018-07-26 13:08:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-25 11:24:09 +00:00
|
|
|
void WasmEngine::AddIsolate(Isolate* isolate) {
|
2018-10-12 13:52:49 +00:00
|
|
|
base::MutexGuard guard(&mutex_);
|
2018-09-25 11:24:09 +00:00
|
|
|
DCHECK_EQ(0, isolates_.count(isolate));
|
2019-01-25 10:44:42 +00:00
|
|
|
isolates_.emplace(isolate, base::make_unique<IsolateInfo>(isolate));
|
2019-01-25 10:35:37 +00:00
|
|
|
|
|
|
|
// Install sampling GC callback.
|
|
|
|
// TODO(v8:7424): For now we sample module sizes in a GC callback. This will
|
|
|
|
// bias samples towards apps with high memory pressure. We should switch to
|
|
|
|
// using sampling based on regular intervals independent of the GC.
|
|
|
|
auto callback = [](v8::Isolate* v8_isolate, v8::GCType type,
|
|
|
|
v8::GCCallbackFlags flags, void* data) {
|
|
|
|
Isolate* isolate = reinterpret_cast<Isolate*>(v8_isolate);
|
2019-03-11 12:08:14 +00:00
|
|
|
Counters* counters = isolate->counters();
|
2019-01-25 10:35:37 +00:00
|
|
|
WasmEngine* engine = isolate->wasm_engine();
|
|
|
|
base::MutexGuard lock(&engine->mutex_);
|
|
|
|
DCHECK_EQ(1, engine->isolates_.count(isolate));
|
2019-03-11 12:08:14 +00:00
|
|
|
for (auto* native_module : engine->isolates_[isolate]->native_modules) {
|
|
|
|
native_module->SampleCodeSize(counters, NativeModule::kSampling);
|
2019-01-25 10:35:37 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
isolate->heap()->AddGCEpilogueCallback(callback, v8::kGCTypeMarkSweepCompact,
|
|
|
|
nullptr);
|
2018-09-25 11:24:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WasmEngine::RemoveIsolate(Isolate* isolate) {
|
2018-10-12 13:52:49 +00:00
|
|
|
base::MutexGuard guard(&mutex_);
|
2019-01-25 10:35:37 +00:00
|
|
|
auto it = isolates_.find(isolate);
|
|
|
|
DCHECK_NE(isolates_.end(), it);
|
2019-04-16 11:48:09 +00:00
|
|
|
std::unique_ptr<IsolateInfo> info = std::move(it->second);
|
|
|
|
isolates_.erase(it);
|
|
|
|
for (NativeModule* native_module : info->native_modules) {
|
2019-04-09 14:00:09 +00:00
|
|
|
DCHECK_EQ(1, native_modules_.count(native_module));
|
|
|
|
DCHECK_EQ(1, native_modules_[native_module]->isolates.count(isolate));
|
|
|
|
auto* info = native_modules_[native_module].get();
|
|
|
|
info->isolates.erase(isolate);
|
2019-04-09 13:05:37 +00:00
|
|
|
if (current_gc_info_) {
|
|
|
|
auto it = current_gc_info_->outstanding_isolates.find(isolate);
|
|
|
|
if (it != current_gc_info_->outstanding_isolates.end()) {
|
2019-04-16 11:48:09 +00:00
|
|
|
if (auto* gc_task = it->second) gc_task->Cancel();
|
2019-04-09 13:05:37 +00:00
|
|
|
current_gc_info_->outstanding_isolates.erase(it);
|
|
|
|
}
|
|
|
|
for (WasmCode* code : info->potentially_dead_code) {
|
|
|
|
current_gc_info_->dead_code.erase(code);
|
|
|
|
}
|
|
|
|
}
|
2019-01-25 10:35:37 +00:00
|
|
|
}
|
2019-04-16 11:48:09 +00:00
|
|
|
if (auto* task = info->log_codes_task) task->Cancel();
|
|
|
|
if (!info->code_to_log.empty()) {
|
|
|
|
WasmCode::DecrementRefCount(VectorOf(info->code_to_log));
|
|
|
|
info->code_to_log.clear();
|
|
|
|
}
|
2019-01-25 10:35:37 +00:00
|
|
|
}
|
|
|
|
|
2019-01-25 10:44:42 +00:00
|
|
|
void WasmEngine::LogCode(WasmCode* code) {
|
|
|
|
base::MutexGuard guard(&mutex_);
|
|
|
|
NativeModule* native_module = code->native_module();
|
2019-04-09 14:00:09 +00:00
|
|
|
DCHECK_EQ(1, native_modules_.count(native_module));
|
|
|
|
for (Isolate* isolate : native_modules_[native_module]->isolates) {
|
2019-01-25 10:44:42 +00:00
|
|
|
DCHECK_EQ(1, isolates_.count(isolate));
|
|
|
|
IsolateInfo* info = isolates_[isolate].get();
|
2019-02-06 11:19:03 +00:00
|
|
|
if (info->log_codes == false) continue;
|
2019-01-25 10:44:42 +00:00
|
|
|
if (info->log_codes_task == nullptr) {
|
|
|
|
auto new_task = base::make_unique<LogCodesTask>(
|
2019-04-16 11:48:09 +00:00
|
|
|
&mutex_, &info->log_codes_task, isolate, this);
|
2019-01-25 10:44:42 +00:00
|
|
|
info->log_codes_task = new_task.get();
|
|
|
|
info->foreground_task_runner->PostTask(std::move(new_task));
|
2019-04-16 14:24:42 +00:00
|
|
|
isolate->stack_guard()->RequestLogWasmCode();
|
2019-01-25 10:44:42 +00:00
|
|
|
}
|
2019-04-16 11:48:09 +00:00
|
|
|
info->code_to_log.push_back(code);
|
|
|
|
code->IncRef();
|
2019-01-25 10:44:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-06 11:19:03 +00:00
|
|
|
void WasmEngine::EnableCodeLogging(Isolate* isolate) {
|
|
|
|
base::MutexGuard guard(&mutex_);
|
|
|
|
auto it = isolates_.find(isolate);
|
|
|
|
DCHECK_NE(isolates_.end(), it);
|
|
|
|
it->second->log_codes = true;
|
|
|
|
}
|
|
|
|
|
2019-04-16 11:48:09 +00:00
|
|
|
void WasmEngine::LogOutstandingCodesForIsolate(Isolate* isolate) {
|
|
|
|
// If by now we should not log code any more, do not log it.
|
|
|
|
if (!WasmCode::ShouldBeLogged(isolate)) return;
|
|
|
|
|
2019-04-16 14:24:42 +00:00
|
|
|
// Under the mutex, get the vector of wasm code to log. Then log and decrement
|
|
|
|
// the ref count without holding the mutex.
|
|
|
|
std::vector<WasmCode*> code_to_log;
|
|
|
|
{
|
|
|
|
base::MutexGuard guard(&mutex_);
|
|
|
|
DCHECK_EQ(1, isolates_.count(isolate));
|
|
|
|
code_to_log.swap(isolates_[isolate]->code_to_log);
|
|
|
|
}
|
|
|
|
if (code_to_log.empty()) return;
|
|
|
|
for (WasmCode* code : code_to_log) {
|
2019-04-16 11:48:09 +00:00
|
|
|
code->LogCode(isolate);
|
|
|
|
}
|
2019-04-16 14:24:42 +00:00
|
|
|
WasmCode::DecrementRefCount(VectorOf(code_to_log));
|
2019-04-16 11:48:09 +00:00
|
|
|
}
|
|
|
|
|
2019-03-12 16:10:58 +00:00
|
|
|
std::shared_ptr<NativeModule> WasmEngine::NewNativeModule(
|
2019-01-25 10:35:37 +00:00
|
|
|
Isolate* isolate, const WasmFeatures& enabled, size_t code_size_estimate,
|
|
|
|
bool can_request_more, std::shared_ptr<const WasmModule> module) {
|
2019-03-12 16:10:58 +00:00
|
|
|
std::shared_ptr<NativeModule> native_module =
|
2019-01-25 10:35:37 +00:00
|
|
|
code_manager_.NewNativeModule(this, isolate, enabled, code_size_estimate,
|
|
|
|
can_request_more, std::move(module));
|
|
|
|
base::MutexGuard lock(&mutex_);
|
2019-04-09 14:00:09 +00:00
|
|
|
auto pair = native_modules_.insert(std::make_pair(
|
|
|
|
native_module.get(), base::make_unique<NativeModuleInfo>()));
|
|
|
|
DCHECK(pair.second); // inserted new entry.
|
|
|
|
pair.first->second.get()->isolates.insert(isolate);
|
2019-01-25 10:35:37 +00:00
|
|
|
isolates_[isolate]->native_modules.insert(native_module.get());
|
|
|
|
return native_module;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WasmEngine::FreeNativeModule(NativeModule* native_module) {
|
|
|
|
{
|
|
|
|
base::MutexGuard guard(&mutex_);
|
2019-04-09 14:00:09 +00:00
|
|
|
auto it = native_modules_.find(native_module);
|
|
|
|
DCHECK_NE(native_modules_.end(), it);
|
|
|
|
for (Isolate* isolate : it->second->isolates) {
|
2019-01-25 10:35:37 +00:00
|
|
|
DCHECK_EQ(1, isolates_.count(isolate));
|
|
|
|
DCHECK_EQ(1, isolates_[isolate]->native_modules.count(native_module));
|
|
|
|
isolates_[isolate]->native_modules.erase(native_module);
|
|
|
|
}
|
2019-04-09 14:00:09 +00:00
|
|
|
native_modules_.erase(it);
|
2019-01-25 10:35:37 +00:00
|
|
|
}
|
|
|
|
code_manager_.FreeNativeModule(native_module);
|
2018-09-25 11:24:09 +00:00
|
|
|
}
|
|
|
|
|
2019-03-11 14:51:56 +00:00
|
|
|
namespace {
|
|
|
|
class SampleTopTierCodeSizeTask : public CancelableTask {
|
|
|
|
public:
|
|
|
|
SampleTopTierCodeSizeTask(Isolate* isolate,
|
|
|
|
std::weak_ptr<NativeModule> native_module)
|
|
|
|
: CancelableTask(isolate),
|
|
|
|
isolate_(isolate),
|
|
|
|
native_module_(std::move(native_module)) {}
|
|
|
|
|
|
|
|
void RunInternal() override {
|
|
|
|
if (std::shared_ptr<NativeModule> native_module = native_module_.lock()) {
|
|
|
|
native_module->SampleCodeSize(isolate_->counters(),
|
|
|
|
NativeModule::kAfterTopTier);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Isolate* const isolate_;
|
|
|
|
const std::weak_ptr<NativeModule> native_module_;
|
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
void WasmEngine::SampleTopTierCodeSizeInAllIsolates(
|
|
|
|
const std::shared_ptr<NativeModule>& native_module) {
|
|
|
|
base::MutexGuard lock(&mutex_);
|
2019-04-09 14:00:09 +00:00
|
|
|
DCHECK_EQ(1, native_modules_.count(native_module.get()));
|
|
|
|
for (Isolate* isolate : native_modules_[native_module.get()]->isolates) {
|
2019-03-11 14:51:56 +00:00
|
|
|
DCHECK_EQ(1, isolates_.count(isolate));
|
|
|
|
IsolateInfo* info = isolates_[isolate].get();
|
|
|
|
info->foreground_task_runner->PostTask(
|
|
|
|
base::make_unique<SampleTopTierCodeSizeTask>(isolate, native_module));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-09 13:05:37 +00:00
|
|
|
void WasmEngine::ReportLiveCodeForGC(Isolate* isolate,
|
|
|
|
Vector<WasmCode*> live_code) {
|
|
|
|
base::MutexGuard guard(&mutex_);
|
|
|
|
DCHECK_NOT_NULL(current_gc_info_);
|
|
|
|
auto outstanding_isolate_it =
|
|
|
|
current_gc_info_->outstanding_isolates.find(isolate);
|
|
|
|
DCHECK_NE(current_gc_info_->outstanding_isolates.end(),
|
|
|
|
outstanding_isolate_it);
|
|
|
|
auto* fg_task = outstanding_isolate_it->second;
|
|
|
|
if (fg_task) fg_task->Cancel();
|
|
|
|
current_gc_info_->outstanding_isolates.erase(outstanding_isolate_it);
|
|
|
|
for (WasmCode* code : live_code) current_gc_info_->dead_code.erase(code);
|
|
|
|
|
|
|
|
if (current_gc_info_->outstanding_isolates.empty()) {
|
|
|
|
std::unordered_map<NativeModule*, std::vector<WasmCode*>>
|
|
|
|
dead_code_per_native_module;
|
|
|
|
for (WasmCode* code : current_gc_info_->dead_code) {
|
|
|
|
dead_code_per_native_module[code->native_module()].push_back(code);
|
|
|
|
}
|
|
|
|
for (auto& entry : dead_code_per_native_module) {
|
|
|
|
entry.first->FreeCode(VectorOf(entry.second));
|
|
|
|
}
|
|
|
|
current_gc_info_.reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-09 14:00:09 +00:00
|
|
|
bool WasmEngine::AddPotentiallyDeadCode(WasmCode* code) {
|
|
|
|
base::MutexGuard guard(&mutex_);
|
|
|
|
auto it = native_modules_.find(code->native_module());
|
|
|
|
DCHECK_NE(native_modules_.end(), it);
|
|
|
|
auto added = it->second->potentially_dead_code.insert(code);
|
|
|
|
if (!added.second) return false; // An entry already existed.
|
|
|
|
new_potentially_dead_code_size_ += code->instructions().size();
|
2019-04-09 13:05:37 +00:00
|
|
|
// Trigger a GC if 1MiB plus 10% of committed code are potentially dead.
|
|
|
|
size_t dead_code_limit = 1 * MB + code_manager_.committed_code_space() / 10;
|
|
|
|
if (FLAG_wasm_code_gc && new_potentially_dead_code_size_ > dead_code_limit &&
|
|
|
|
!current_gc_info_) {
|
|
|
|
TriggerGC();
|
|
|
|
}
|
2019-04-09 14:00:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-04-09 13:05:37 +00:00
|
|
|
void WasmEngine::TriggerGC() {
|
|
|
|
DCHECK_NULL(current_gc_info_);
|
|
|
|
DCHECK(FLAG_wasm_code_gc);
|
|
|
|
current_gc_info_.reset(new CurrentGCInfo());
|
|
|
|
// Add all potentially dead code to this GC, and trigger a GC task in each
|
|
|
|
// isolate.
|
|
|
|
// TODO(clemensh): Also trigger a stack check interrupt.
|
|
|
|
for (auto& entry : native_modules_) {
|
|
|
|
NativeModuleInfo* info = entry.second.get();
|
|
|
|
if (info->potentially_dead_code.empty()) continue;
|
|
|
|
for (auto* isolate : native_modules_[entry.first]->isolates) {
|
|
|
|
auto& gc_task = current_gc_info_->outstanding_isolates[isolate];
|
|
|
|
if (!gc_task) {
|
|
|
|
auto new_task = base::make_unique<WasmGCForegroundTask>(isolate);
|
|
|
|
gc_task = new_task.get();
|
|
|
|
DCHECK_EQ(1, isolates_.count(isolate));
|
|
|
|
isolates_[isolate]->foreground_task_runner->PostTask(
|
|
|
|
std::move(new_task));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (WasmCode* code : info->potentially_dead_code) {
|
|
|
|
current_gc_info_->dead_code.insert(code);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-24 15:58:31 +00:00
|
|
|
namespace {
|
|
|
|
|
2019-01-02 11:35:04 +00:00
|
|
|
DEFINE_LAZY_LEAKY_OBJECT_GETTER(std::shared_ptr<WasmEngine>,
|
2019-02-13 00:33:17 +00:00
|
|
|
GetSharedWasmEngine)
|
2018-07-24 15:58:31 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2018-09-25 11:24:09 +00:00
|
|
|
// static
|
2018-07-24 15:58:31 +00:00
|
|
|
void WasmEngine::InitializeOncePerProcess() {
|
|
|
|
if (!FLAG_wasm_shared_engine) return;
|
2019-01-02 11:35:04 +00:00
|
|
|
*GetSharedWasmEngine() = std::make_shared<WasmEngine>();
|
2018-07-24 15:58:31 +00:00
|
|
|
}
|
|
|
|
|
2018-09-25 11:24:09 +00:00
|
|
|
// static
|
2018-07-24 15:58:31 +00:00
|
|
|
void WasmEngine::GlobalTearDown() {
|
|
|
|
if (!FLAG_wasm_shared_engine) return;
|
2019-01-02 11:35:04 +00:00
|
|
|
GetSharedWasmEngine()->reset();
|
2018-07-24 15:58:31 +00:00
|
|
|
}
|
|
|
|
|
2018-09-25 11:24:09 +00:00
|
|
|
// static
|
2018-07-24 15:58:31 +00:00
|
|
|
std::shared_ptr<WasmEngine> WasmEngine::GetWasmEngine() {
|
2019-01-02 11:35:04 +00:00
|
|
|
if (FLAG_wasm_shared_engine) return *GetSharedWasmEngine();
|
|
|
|
return std::make_shared<WasmEngine>();
|
2018-07-24 15:58:31 +00:00
|
|
|
}
|
|
|
|
|
2018-10-30 12:32:17 +00:00
|
|
|
// {max_mem_pages} is declared in wasm-limits.h.
|
|
|
|
uint32_t max_mem_pages() {
|
|
|
|
STATIC_ASSERT(kV8MaxWasmMemoryPages <= kMaxUInt32);
|
|
|
|
return std::min(uint32_t{kV8MaxWasmMemoryPages}, FLAG_wasm_max_mem_pages);
|
|
|
|
}
|
|
|
|
|
2019-03-01 14:26:16 +00:00
|
|
|
// {max_table_init_entries} is declared in wasm-limits.h.
|
|
|
|
uint32_t max_table_init_entries() {
|
|
|
|
return std::min(uint32_t{kV8MaxWasmTableInitEntries},
|
|
|
|
FLAG_wasm_max_table_size);
|
|
|
|
}
|
|
|
|
|
2018-01-17 14:46:27 +00:00
|
|
|
} // namespace wasm
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|