Changeset 113508 in webkit for trunk/Source/JavaScriptCore/heap/Heap.h
- Timestamp:
- Apr 6, 2012, 3:35:55 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/Heap.h
r113445 r113508 24 24 25 25 #include "DFGCodeBlocks.h" 26 #include "Handle Heap.h"26 #include "HandleSet.h" 27 27 #include "HandleStack.h" 28 28 #include "MarkedAllocator.h" … … 32 32 #include "SlotVisitor.h" 33 33 #include "WeakHandleOwner.h" 34 #include "Weak Heap.h"34 #include "WeakSet.h" 35 35 #include "WriteBarrierSupport.h" 36 36 #include <wtf/DoublyLinkedList.h> … … 139 139 template<typename Functor> typename Functor::ReturnType forEachProtectedCell(); 140 140 141 Weak Heap* weakHeap() { return &m_weakHeap; }142 Handle Heap* handleHeap() { return &m_handleHeap; }141 WeakSet* weakSet() { return &m_weakSet; } 142 HandleSet* handleSet() { return &m_handleSet; } 143 143 HandleStack* handleStack() { return &m_handleStack; } 144 144 … … 238 238 SlotVisitor m_slotVisitor; 239 239 240 Weak Heap m_weakHeap;241 Handle Heap m_handleHeap;240 WeakSet m_weakSet; 241 HandleSet m_handleSet; 242 242 HandleStack m_handleStack; 243 243 DFGCodeBlocks m_dfgCodeBlocks; … … 356 356 for (ProtectCountSet::iterator it = m_protectedValues.begin(); it != end; ++it) 357 357 functor(it->first); 358 m_handle Heap.forEachStrongHandle(functor, m_protectedValues);358 m_handleSet.forEachStrongHandle(functor, m_protectedValues); 359 359 360 360 return functor.returnValue();
Note:
See TracChangeset
for help on using the changeset viewer.