c0dd51efdb
BUG=none R=bmeurer@chromium.org LOG=n Review URL: https://codereview.chromium.org/347223004 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21997 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
139 lines
3.3 KiB
C++
139 lines
3.3 KiB
C++
// Copyright 2012 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/v8.h"
|
|
|
|
#include "src/assembler.h"
|
|
#include "src/base/once.h"
|
|
#include "src/bootstrapper.h"
|
|
#include "src/debug.h"
|
|
#include "src/deoptimizer.h"
|
|
#include "src/elements.h"
|
|
#include "src/frames.h"
|
|
#include "src/heap-profiler.h"
|
|
#include "src/hydrogen.h"
|
|
#include "src/isolate.h"
|
|
#ifdef V8_USE_DEFAULT_PLATFORM
|
|
#include "src/libplatform/default-platform.h"
|
|
#endif
|
|
#include "src/lithium-allocator.h"
|
|
#include "src/objects.h"
|
|
#include "src/platform.h"
|
|
#include "src/runtime-profiler.h"
|
|
#include "src/sampler.h"
|
|
#include "src/serialize.h"
|
|
#include "src/store-buffer.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
V8_DECLARE_ONCE(init_once);
|
|
|
|
v8::ArrayBuffer::Allocator* V8::array_buffer_allocator_ = NULL;
|
|
v8::Platform* V8::platform_ = NULL;
|
|
|
|
|
|
bool V8::Initialize(Deserializer* des) {
|
|
InitializeOncePerProcess();
|
|
Isolate* isolate = Isolate::UncheckedCurrent();
|
|
if (isolate == NULL) return true;
|
|
if (isolate->IsDead()) return false;
|
|
if (isolate->IsInitialized()) return true;
|
|
|
|
#ifdef V8_USE_DEFAULT_PLATFORM
|
|
DefaultPlatform* platform = static_cast<DefaultPlatform*>(platform_);
|
|
platform->SetThreadPoolSize(isolate->max_available_threads());
|
|
// We currently only start the threads early, if we know that we'll use them.
|
|
if (FLAG_job_based_sweeping) platform->EnsureInitialized();
|
|
#endif
|
|
|
|
return isolate->Init(des);
|
|
}
|
|
|
|
|
|
void V8::TearDown() {
|
|
Bootstrapper::TearDownExtensions();
|
|
ElementsAccessor::TearDown();
|
|
LOperand::TearDownCaches();
|
|
ExternalReference::TearDownMathExpData();
|
|
RegisteredExtension::UnregisterAll();
|
|
Isolate::GlobalTearDown();
|
|
|
|
Sampler::TearDown();
|
|
|
|
#ifdef V8_USE_DEFAULT_PLATFORM
|
|
DefaultPlatform* platform = static_cast<DefaultPlatform*>(platform_);
|
|
platform_ = NULL;
|
|
delete platform;
|
|
#endif
|
|
}
|
|
|
|
|
|
void V8::SetReturnAddressLocationResolver(
|
|
ReturnAddressLocationResolver resolver) {
|
|
StackFrame::SetReturnAddressLocationResolver(resolver);
|
|
}
|
|
|
|
|
|
void V8::InitializeOncePerProcessImpl() {
|
|
FlagList::EnforceFlagImplications();
|
|
|
|
if (FLAG_predictable && FLAG_random_seed == 0) {
|
|
// Avoid random seeds in predictable mode.
|
|
FLAG_random_seed = 12347;
|
|
}
|
|
|
|
if (FLAG_stress_compaction) {
|
|
FLAG_force_marking_deque_overflows = true;
|
|
FLAG_gc_global = true;
|
|
FLAG_max_semi_space_size = 1;
|
|
}
|
|
|
|
if (FLAG_random_seed != 0) OS::SetRandomSeed(FLAG_random_seed);
|
|
|
|
#ifdef V8_USE_DEFAULT_PLATFORM
|
|
platform_ = new DefaultPlatform;
|
|
#endif
|
|
Sampler::SetUp();
|
|
CpuFeatures::Probe(false);
|
|
init_memcopy_functions();
|
|
// The custom exp implementation needs 16KB of lookup data; initialize it
|
|
// on demand.
|
|
init_fast_sqrt_function();
|
|
#ifdef _WIN64
|
|
init_modulo_function();
|
|
#endif
|
|
ElementsAccessor::InitializeOncePerProcess();
|
|
LOperand::SetUpCaches();
|
|
SetUpJSCallerSavedCodeData();
|
|
ExternalReference::SetUp();
|
|
Bootstrapper::InitializeOncePerProcess();
|
|
}
|
|
|
|
|
|
void V8::InitializeOncePerProcess() {
|
|
base::CallOnce(&init_once, &InitializeOncePerProcessImpl);
|
|
}
|
|
|
|
|
|
void V8::InitializePlatform(v8::Platform* platform) {
|
|
ASSERT(!platform_);
|
|
ASSERT(platform);
|
|
platform_ = platform;
|
|
}
|
|
|
|
|
|
void V8::ShutdownPlatform() {
|
|
ASSERT(platform_);
|
|
platform_ = NULL;
|
|
}
|
|
|
|
|
|
v8::Platform* V8::GetCurrentPlatform() {
|
|
ASSERT(platform_);
|
|
return platform_;
|
|
}
|
|
|
|
} } // namespace v8::internal
|