Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1823)

Unified Diff: src/v8.cc

Issue 5826004: Add a write buffer, aligned so that a single bit tells us whether it has... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/v8.cc
===================================================================
--- src/v8.cc (revision 6011)
+++ src/v8.cc (working copy)
@@ -39,6 +39,7 @@
#include "serialize.h"
#include "simulator.h"
#include "stub-cache.h"
+#include "write-buffer.h"
namespace v8 {
namespace internal {
@@ -93,6 +94,8 @@
StackGuard::InitThread(lock);
}
+ WriteBuffer::Setup();
+
// Setup the object heap
ASSERT(!Heap::HasBeenSetup());
if (!Heap::Setup(create_heap_objects)) {
@@ -180,6 +183,8 @@
Logger::TearDown();
Heap::TearDown();
+ WriteBuffer::TearDown();
+
is_running_ = false;
has_been_disposed_ = true;
}

Powered by Google App Engine
This is Rietveld 408576698