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

Unified Diff: src/spaces.cc

Issue 6358005: Add missing file. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Fix presubmit and debugging artifacts. Created 9 years, 11 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 | « src/compiler-intrinsics.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/spaces.cc
diff --git a/src/spaces.cc b/src/spaces.cc
index c70126c05c7349444c2872ab29297222420c3fdd..01ec408ee585aebe91ffaca1b2b74714e278f66d 100644
--- a/src/spaces.cc
+++ b/src/spaces.cc
@@ -799,7 +799,7 @@ void PagedSpace::Verify(ObjectVisitor* visitor) {
HeapObjectIterator it(current_page, NULL);
Address end_of_previous_object = current_page->ObjectAreaStart();
- for(HeapObject* object = it.next(); object != NULL; object = it.next()) {
+ for (HeapObject* object = it.next(); object != NULL; object = it.next()) {
ASSERT(end_of_previous_object <= object->address());
// The first word should be a map, and we expect all map pointers to
@@ -811,10 +811,6 @@ void PagedSpace::Verify(ObjectVisitor* visitor) {
// Perform space-specific object verification.
VerifyObject(object);
- if (object->IsCodeCache() && ((uint32_t*)object->address())[2] == 0x2) {
- current_page->PrintMarkbits();
- }
-
// The object itself should look OK.
object->Verify();
« no previous file with comments | « src/compiler-intrinsics.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698