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

Unified Diff: src/heap/mark-compact.cc

Issue 2798843004: [heap] Enable verification of evacuation for old space (Closed)
Patch Set: Created 3 years, 8 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/heap/mark-compact.cc
diff --git a/src/heap/mark-compact.cc b/src/heap/mark-compact.cc
index 0a372f866f54dd1af80e6e75b0e033c24d3b0848..19b2eb66992874cfa24e6a5fb9e545d1a68178f6 100644
--- a/src/heap/mark-compact.cc
+++ b/src/heap/mark-compact.cc
@@ -254,9 +254,6 @@ void EvacuationVerifier::VerifyEvacuation(NewSpace* space) {
}
void EvacuationVerifier::VerifyEvacuation(PagedSpace* space) {
- if (FLAG_use_allocation_folding && (space == heap_->old_space())) {
- return;
- }
for (Page* p : *space) {
if (p->IsEvacuationCandidate()) continue;
if (p->Contains(space->top()))
« 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