Bug 1133759 - Always shrink GC buffers at the end of a shrinking GC, even if we don't compact r=terrence

This commit is contained in:
Jon Coppeard 2015-02-24 09:40:02 +00:00
parent cccd72bd00
commit e77d8570d4

View File

@ -5520,10 +5520,6 @@ GCRuntime::compactPhase(JS::gcreason::Reason reason)
}
#endif
// Ensure execess chunks are returns to the system and free arenas
// decommitted.
shrinkBuffers();
#ifdef DEBUG
CheckHashTablesAfterMovingGC(rt);
for (GCZonesIter zone(rt); !zone.done(); zone.next()) {
@ -5569,6 +5565,10 @@ GCRuntime::finishCollection(JS::gcreason::Reason reason)
MOZ_ASSERT(!zone->wasGCStarted());
}
// Ensure execess chunks are returned to the system and free arenas
// decommitted.
shrinkBuffers();
lastGCTime = currentTime;
// If this is an OOM GC reason, wait on the background sweeping thread