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

Unified Diff: src/store-buffer.cc

Issue 374073002: We can iterate a scan on scavange page if it was precisely swept or just added to the old generatio… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/store-buffer.cc
diff --git a/src/store-buffer.cc b/src/store-buffer.cc
index 0e4fd6429bce7b7a103b907b9eebcfd712b1bf96..a9e135647f689aecfbd9350d6b2afe5d592ee8b5 100644
--- a/src/store-buffer.cc
+++ b/src/store-buffer.cc
@@ -524,7 +524,7 @@ void StoreBuffer::IteratePointersToNewSpace(ObjectSlotCallback slot_callback,
Page* page = reinterpret_cast<Page*>(chunk);
ASSERT(page->owner() == heap_->map_space() ||
page->owner() == heap_->old_pointer_space());
- CHECK(page->WasSweptPrecisely());
+ CHECK(!page->WasSweptConservatively());
HeapObjectIterator iterator(page, NULL);
for (HeapObject* heap_object = iterator.Next();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698