Ignore:
Timestamp:
Jun 7, 2011, 9:57:08 PM (14 years ago)
Author:
[email protected]
Message:

2011-06-07 Geoffrey Garen <[email protected]>

Reviewed by Sam Weinig.

Renamed some more marks to visits
https://bugs.webkit.org/show_bug.cgi?id=62254

  • heap/HandleHeap.cpp: (JSC::HandleHeap::visitStrongHandles): (JSC::HandleHeap::visitWeakHandles):
  • heap/HandleHeap.h:
  • heap/HandleStack.cpp: (JSC::HandleStack::visit):
  • heap/HandleStack.h:
  • heap/Heap.cpp: (JSC::Heap::markProtectedObjects): (JSC::Heap::markTempSortVectors): (JSC::Heap::markRoots):
  • heap/HeapRootVisitor.h: (JSC::HeapRootVisitor::visit):
  • runtime/ArgList.cpp: (JSC::MarkedArgumentBuffer::markLists):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/heap/HandleStack.cpp

    r87230 r88324  
    3939}
    4040
    41 void HandleStack::mark(HeapRootVisitor& heapRootMarker)
     41void HandleStack::visit(HeapRootVisitor& heapRootVisitor)
    4242{
    4343    const Vector<HandleSlot>& blocks = m_blockStack.blocks();
     
    4747    for (int i = 0; i < end; ++i) {
    4848        HandleSlot block = blocks[i];
    49         heapRootMarker.mark(block, blockLength);
     49        heapRootVisitor.visit(block, blockLength);
    5050    }
    5151    HandleSlot block = blocks[end];
    52     heapRootMarker.mark(block, m_frame.m_next - block);
     52    heapRootVisitor.visit(block, m_frame.m_next - block);
    5353}
    5454
Note: See TracChangeset for help on using the changeset viewer.