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

Unified Diff: src/heap.cc

Issue 7104107: Incremental mode now works for x64. The only difference (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 6 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
===================================================================
--- src/heap.cc (revision 8221)
+++ src/heap.cc (working copy)
@@ -4626,6 +4626,10 @@
Object* two_pointer_filler_map = HEAP->two_pointer_filler_map();
while (visitable_end < end_of_page) {
+#ifdef DEBUG
+ int offset = visitable_start - page->ObjectAreaStart();
+ ASSERT(offset == space->RoundSizeDownToObjectAlignment(offset));
+#endif
Object* o = *reinterpret_cast<Object**>(visitable_end);
// Skip fillers but not things that look like fillers in the special
// garbage section which can contain anything.

Powered by Google App Engine
This is Rietveld 408576698