summaryrefslogtreecommitdiff
path: root/deps/v8/src/isolate.cc
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-06-09 08:09:42 -0700
committerisaacs <i@izs.me>2012-06-09 08:09:42 -0700
commit940a6863ead6622e5439e07be631359c31e63b68 (patch)
treec5aa25c048b8f0fd622d4c42fa134ca645fcbcd7 /deps/v8/src/isolate.cc
parent569acea0eefed2c7da7453b7dcef6ff47491ca1c (diff)
downloadnode-940a6863ead6622e5439e07be631359c31e63b68.tar.gz
Roll V8 back to 3.9.24.31
Diffstat (limited to 'deps/v8/src/isolate.cc')
-rw-r--r--deps/v8/src/isolate.cc9
1 files changed, 1 insertions, 8 deletions
diff --git a/deps/v8/src/isolate.cc b/deps/v8/src/isolate.cc
index 0c97abd89..e80512239 100644
--- a/deps/v8/src/isolate.cc
+++ b/deps/v8/src/isolate.cc
@@ -1430,7 +1430,6 @@ void Isolate::ThreadDataTable::RemoveAllThreads(Isolate* isolate) {
Isolate::Isolate()
: state_(UNINITIALIZED),
- embedder_data_(NULL),
entry_stack_(NULL),
stack_trace_nesting_level_(0),
incomplete_message_(NULL),
@@ -1473,6 +1472,7 @@ Isolate::Isolate()
string_tracker_(NULL),
regexp_stack_(NULL),
date_cache_(NULL),
+ embedder_data_(NULL),
context_exit_happened_(false) {
TRACE_ISOLATE(constructor);
@@ -1857,13 +1857,6 @@ bool Isolate::Init(Deserializer* des) {
LOG(this, LogCompiledFunctions());
}
- CHECK_EQ(static_cast<int>(OFFSET_OF(Isolate, state_)),
- Internals::kIsolateStateOffset);
- CHECK_EQ(static_cast<int>(OFFSET_OF(Isolate, embedder_data_)),
- Internals::kIsolateEmbedderDataOffset);
- CHECK_EQ(static_cast<int>(OFFSET_OF(Isolate, heap_.roots_)),
- Internals::kIsolateRootsOffset);
-
state_ = INITIALIZED;
time_millis_at_init_ = OS::TimeCurrentMillis();
return true;