/* * Copyright (C) 2011-2013, 2015 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef SlotVisitor_h #define SlotVisitor_h #include "CellState.h" #include "CopyToken.h" #include "HandleTypes.h" #include "MarkStack.h" #include "OpaqueRootSet.h" namespace JSC { class ConservativeRoots; class GCThreadSharedData; class Heap; class HeapSnapshotBuilder; template class JITWriteBarrier; class UnconditionalFinalizer; template class Weak; class WeakReferenceHarvester; template class WriteBarrierBase; class SlotVisitor { WTF_MAKE_NONCOPYABLE(SlotVisitor); WTF_MAKE_FAST_ALLOCATED; friend class SetCurrentCellScope; friend class HeapRootVisitor; // Allowed to mark a JSValue* or JSCell** directly. friend class Heap; public: SlotVisitor(Heap&); ~SlotVisitor(); MarkStackArray& markStack() { return m_stack; } const MarkStackArray& markStack() const { return m_stack; } VM& vm(); const VM& vm() const; Heap* heap() const; void append(ConservativeRoots&); template void append(JITWriteBarrier*); template void append(WriteBarrierBase*); template void appendHidden(WriteBarrierBase*); template void append(Iterator begin , Iterator end); void appendValues(WriteBarrierBase*, size_t count); void appendValuesHidden(WriteBarrierBase*, size_t count); template void appendUnbarrieredPointer(T**); void appendUnbarrieredValue(JSValue*); template void appendUnbarrieredWeak(Weak*); template void appendUnbarrieredReadOnlyPointer(T*); void appendUnbarrieredReadOnlyValue(JSValue); JS_EXPORT_PRIVATE void addOpaqueRoot(void*); JS_EXPORT_PRIVATE bool containsOpaqueRoot(void*) const; TriState containsOpaqueRootTriState(void*) const; int opaqueRootCount(); bool isEmpty() { return m_stack.isEmpty(); } void didStartMarking(); void reset(); void clearMarkStack(); size_t bytesVisited() const { return m_bytesVisited; } size_t bytesCopied() const { return m_bytesCopied; } size_t visitCount() const { return m_visitCount; } void donate(); void drain(); void donateAndDrain(); enum SharedDrainMode { SlaveDrain, MasterDrain }; void drainFromShared(SharedDrainMode); void harvestWeakReferences(); void finalizeUnconditionalFinalizers(); void copyLater(JSCell*, CopyToken, void*, size_t); void reportExtraMemoryVisited(size_t); void addWeakReferenceHarvester(WeakReferenceHarvester*); void addUnconditionalFinalizer(UnconditionalFinalizer*); void dump(PrintStream&) const; bool isBuildingHeapSnapshot() const { return !!m_heapSnapshotBuilder; } private: friend class ParallelModeEnabler; JS_EXPORT_PRIVATE void append(JSValue); // This is private to encourage clients to use WriteBarrier. void appendHidden(JSValue); JS_EXPORT_PRIVATE void setMarkedAndAppendToMarkStack(JSCell*); void appendToMarkStack(JSCell*); JS_EXPORT_PRIVATE void mergeOpaqueRoots(); void mergeOpaqueRootsIfNecessary(); void mergeOpaqueRootsIfProfitable(); void visitChildren(const JSCell*); void donateKnownParallel(); MarkStackArray m_stack; OpaqueRootSet m_opaqueRoots; // Handle-owning data structures not visible to the garbage collector. size_t m_bytesVisited; size_t m_bytesCopied; size_t m_visitCount; bool m_isInParallelMode; Heap& m_heap; HeapSnapshotBuilder* m_heapSnapshotBuilder { nullptr }; JSCell* m_currentCell { nullptr }; CellState m_currentObjectCellStateBeforeVisiting { CellState::NewWhite }; public: #if !ASSERT_DISABLED bool m_isCheckingForDefaultMarkViolation; bool m_isDraining; #endif }; class ParallelModeEnabler { public: ParallelModeEnabler(SlotVisitor& stack) : m_stack(stack) { ASSERT(!m_stack.m_isInParallelMode); m_stack.m_isInParallelMode = true; } ~ParallelModeEnabler() { ASSERT(m_stack.m_isInParallelMode); m_stack.m_isInParallelMode = false; } private: SlotVisitor& m_stack; }; } // namespace JSC #endif // SlotVisitor_h