Index: src/heap.cc |
=================================================================== |
--- src/heap.cc (revision 10059) |
+++ src/heap.cc (working copy) |
@@ -6262,7 +6262,19 @@ |
PrintF("mark=%d ", static_cast<int>(scopes_[Scope::MC_MARK])); |
PrintF("sweep=%d ", static_cast<int>(scopes_[Scope::MC_SWEEP])); |
PrintF("sweepns=%d ", static_cast<int>(scopes_[Scope::MC_SWEEP_NEWSPACE])); |
- PrintF("compact=%d ", static_cast<int>(scopes_[Scope::MC_COMPACT])); |
+ PrintF("evacuate=%d ", static_cast<int>(scopes_[Scope::MC_EVACUATE_PAGES])); |
+ PrintF("new_new=%d ", |
+ static_cast<int>(scopes_[Scope::MC_UPDATE_NEW_TO_NEW_POINTERS])); |
+ PrintF("root_new=%d ", |
+ static_cast<int>(scopes_[Scope::MC_UPDATE_ROOT_TO_NEW_POINTERS])); |
+ PrintF("old_new=%d ", |
+ static_cast<int>(scopes_[Scope::MC_UPDATE_OLD_TO_NEW_POINTERS])); |
+ PrintF("compaction_ptrs=%d ", |
+ static_cast<int>(scopes_[Scope::MC_UPDATE_POINTERS_TO_EVACUATED])); |
+ PrintF("intracompaction_ptrs=%d ", static_cast<int>(scopes_[ |
+ Scope::MC_UPDATE_POINTERS_BETWEEN_EVACUATED])); |
+ PrintF("misc_compaction=%d ", |
+ static_cast<int>(scopes_[Scope::MC_UPDATE_MISC_POINTERS])); |
PrintF("total_size_before=%" V8_PTR_PREFIX "d ", start_size_); |
PrintF("total_size_after=%" V8_PTR_PREFIX "d ", heap_->SizeOfObjects()); |