blob: 3cc3238b585423bc869a3a8a2d636386950c8f89 [file] [log] [blame]
// Copyright 2013 The Chromium 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 "gin/public/isolate_holder.h"
#include <stdlib.h>
#include <string.h>
#include "base/logging.h"
#include "base/message_loop/message_loop.h"
#include "base/sys_info.h"
#include "gin/debug_impl.h"
#include "gin/function_template.h"
#include "gin/per_isolate_data.h"
#include "gin/run_microtasks_observer.h"
#include "gin/v8_initializer.h"
namespace gin {
namespace {
v8::ArrayBuffer::Allocator* g_array_buffer_allocator = nullptr;
} // namespace
IsolateHolder::IsolateHolder() {
v8::ArrayBuffer::Allocator* allocator = g_array_buffer_allocator;
CHECK(allocator) << "You need to invoke gin::IsolateHolder::Initialize first";
v8::Isolate::CreateParams params;
params.entry_hook = DebugImpl::GetFunctionEntryHook();
params.code_event_handler = DebugImpl::GetJitCodeEventHandler();
params.constraints.ConfigureDefaults(base::SysInfo::AmountOfPhysicalMemory(),
base::SysInfo::AmountOfVirtualMemory(),
base::SysInfo::NumberOfProcessors());
isolate_ = v8::Isolate::New(params);
isolate_data_.reset(new PerIsolateData(isolate_, allocator));
#if defined(OS_WIN)
{
void* code_range;
size_t size;
isolate_->GetCodeRange(&code_range, &size);
Debug::CodeRangeCreatedCallback callback =
DebugImpl::GetCodeRangeCreatedCallback();
if (code_range && size && callback)
callback(code_range, size);
}
#endif
}
IsolateHolder::~IsolateHolder() {
if (task_observer_.get())
base::MessageLoop::current()->RemoveTaskObserver(task_observer_.get());
#if defined(OS_WIN)
{
void* code_range;
size_t size;
isolate_->GetCodeRange(&code_range, &size);
Debug::CodeRangeDeletedCallback callback =
DebugImpl::GetCodeRangeDeletedCallback();
if (code_range && callback)
callback(code_range);
}
#endif
isolate_data_.reset();
isolate_->Dispose();
isolate_ = NULL;
}
// static
void IsolateHolder::Initialize(ScriptMode mode,
v8::ArrayBuffer::Allocator* allocator) {
CHECK(allocator);
gin::V8Initializer::Initialize(mode, allocator);
g_array_buffer_allocator = allocator;
}
void IsolateHolder::AddRunMicrotasksObserver() {
DCHECK(!task_observer_.get());
task_observer_.reset(new RunMicrotasksObserver(isolate_));;
base::MessageLoop::current()->AddTaskObserver(task_observer_.get());
}
void IsolateHolder::RemoveRunMicrotasksObserver() {
DCHECK(task_observer_.get());
base::MessageLoop::current()->RemoveTaskObserver(task_observer_.get());
task_observer_.reset();
}
#if defined(V8_USE_EXTERNAL_STARTUP_DATA)
// static
bool IsolateHolder::LoadV8Snapshot() {
return V8Initializer::LoadV8Snapshot();
}
#endif // V8_USE_EXTERNAL_STARTUP_DATA
} // namespace gin