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

Unified Diff: src/heap.cc

Issue 7032005: Unify markbits for old and new spaces. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Created 9 years, 7 months 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/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index 6d4651c43e4c68683a87a0539aed84ce2d574c89..373d90c0be1a82650512d3287d30047666bfd81e 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -5074,9 +5074,6 @@ bool Heap::Setup(bool create_heap_objects) {
lo_space_ = new LargeObjectSpace(this, LO_SPACE);
if (lo_space_ == NULL) return false;
if (!lo_space_->Setup()) return false;
-
- if (!marking()->Setup()) return false;
-
if (create_heap_objects) {
// Create initial maps.
if (!CreateInitialMaps()) return false;
@@ -5174,7 +5171,6 @@ void Heap::TearDown() {
lo_space_ = NULL;
}
- marking()->TearDown();
store_buffer()->TearDown();
isolate_->memory_allocator()->TearDown();
« no previous file with comments | « src/assembler.cc ('k') | src/ia32/macro-assembler-ia32.h » ('j') | src/serialize.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698