X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/14957cd040308e3eeec43d26bae5d76da13fcd85..ed1e77d3adeb83d26fd1dfb16dd84cabdcefd250:/heap/HandleStack.cpp diff --git a/heap/HandleStack.cpp b/heap/HandleStack.cpp index ada4f99..178bbcc 100644 --- a/heap/HandleStack.cpp +++ b/heap/HandleStack.cpp @@ -24,10 +24,11 @@ */ #include "config.h" - #include "HandleStack.h" -#include "MarkStack.h" +#include "HeapRootVisitor.h" +#include "JSObject.h" +#include "JSCInlines.h" namespace JSC { @@ -39,7 +40,7 @@ HandleStack::HandleStack() grow(); } -void HandleStack::mark(HeapRootVisitor& heapRootMarker) +void HandleStack::visit(HeapRootVisitor& heapRootVisitor) { const Vector& blocks = m_blockStack.blocks(); size_t blockLength = m_blockStack.blockLength; @@ -47,10 +48,10 @@ void HandleStack::mark(HeapRootVisitor& heapRootMarker) int end = blocks.size() - 1; for (int i = 0; i < end; ++i) { HandleSlot block = blocks[i]; - heapRootMarker.mark(block, blockLength); + heapRootVisitor.visit(block, blockLength); } HandleSlot block = blocks[end]; - heapRootMarker.mark(block, m_frame.m_next - block); + heapRootVisitor.visit(block, m_frame.m_next - block); } void HandleStack::grow()