| Index: Source/platform/heap/Heap.cpp
|
| diff --git a/Source/platform/heap/Heap.cpp b/Source/platform/heap/Heap.cpp
|
| index 8782ccbf3cb2d1443903535692aa667e85abc194..1c17b8878840299e57918db5efd3079adfc073ff 100644
|
| --- a/Source/platform/heap/Heap.cpp
|
| +++ b/Source/platform/heap/Heap.cpp
|
| @@ -2275,6 +2275,8 @@ void Heap::collectGarbage(ThreadState::StackState stackState, ThreadState::GCTyp
|
| ThreadState::NoAllocationScope noAllocationScope(state);
|
|
|
| preGC();
|
| + s_markingVisitor->configureEagerTraceLimit();
|
| + ASSERT(s_markingVisitor->canTraceEagerly());
|
|
|
| Heap::resetMarkedObjectSize();
|
| Heap::resetAllocatedObjectSize();
|
| @@ -2331,6 +2333,7 @@ void Heap::collectGarbageForTerminatingThread(ThreadState* state)
|
| ThreadState::NoAllocationScope noAllocationScope(state);
|
|
|
| state->preGC();
|
| + s_markingVisitor->configureEagerTraceLimit();
|
|
|
| // 1. Trace the thread local persistent roots. For thread local GCs we
|
| // don't trace the stack (ie. no conservative scanning) since this is
|
|
|