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

Unified Diff: src/heap.h

Issue 115706: X64: Omitted creating native builtins and using them in test-heap. (Closed)
Patch Set: Created 11 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.h
diff --git a/src/heap.h b/src/heap.h
index cc8b6091f61f4933db6496190aecbb3dc3331827..c2e488b918987f0b54ef2ad1b6c1b74cd41ba0fb 100644
--- a/src/heap.h
+++ b/src/heap.h
@@ -1047,7 +1047,10 @@ class VerifyPointersAndRSetVisitor: public ObjectVisitor {
ASSERT(Heap::Contains(object));
ASSERT(object->map()->IsMap());
if (Heap::InNewSpace(object)) {
+#ifndef V8_HOST_ARCH_64_BIT
+ // TODO(X64): Reenable when RSet works.
ASSERT(Page::IsRSetSet(reinterpret_cast<Address>(current), 0));
Kevin Millikin (Chromium) 2009/05/22 12:47:49 Same comment---Page::IsRSetSet could return true i
Lasse Reichstein 2009/05/22 13:10:10 Done. Returning true should be a safe approximatio
+#endif // V8_HOST_ARCH_64_BIT
}
}
}

Powered by Google App Engine
This is Rietveld 408576698