]>
git.saurik.com Git - apple/javascriptcore.git/blob - heap/HandleHeap.cpp
9b05db22dd798cbc5e9ae15199be19e5a6e7fef1
2 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
27 #include "HandleHeap.h"
33 WeakHandleOwner::~WeakHandleOwner()
37 bool WeakHandleOwner::isReachableFromOpaqueRoots(Handle
<Unknown
>, void*, SlotVisitor
&)
42 void WeakHandleOwner::finalize(Handle
<Unknown
>, void*)
46 HandleHeap::HandleHeap(JSGlobalData
* globalData
)
47 : m_globalData(globalData
)
53 void HandleHeap::grow()
55 Node
* block
= m_blockStack
.grow();
56 for (int i
= m_blockStack
.blockLength
- 1; i
>= 0; --i
) {
57 Node
* node
= &block
[i
];
58 new (node
) Node(this);
59 m_freeList
.push(node
);
63 void HandleHeap::markStrongHandles(HeapRootVisitor
& heapRootMarker
)
65 Node
* end
= m_strongList
.end();
66 for (Node
* node
= m_strongList
.begin(); node
!= end
; node
= node
->next())
67 heapRootMarker
.mark(node
->slot());
70 void HandleHeap::markWeakHandles(HeapRootVisitor
& heapRootVisitor
)
72 SlotVisitor
& visitor
= heapRootVisitor
.visitor();
74 Node
* end
= m_weakList
.end();
75 for (Node
* node
= m_weakList
.begin(); node
!= end
; node
= node
->next()) {
76 ASSERT(isValidWeakNode(node
));
77 JSCell
* cell
= node
->slot()->asCell();
78 if (Heap::isMarked(cell
))
81 WeakHandleOwner
* weakOwner
= node
->weakOwner();
85 if (!weakOwner
->isReachableFromOpaqueRoots(Handle
<Unknown
>::wrapSlot(node
->slot()), node
->weakOwnerContext(), visitor
))
88 heapRootVisitor
.mark(node
->slot());
92 void HandleHeap::finalizeWeakHandles()
94 Node
* end
= m_weakList
.end();
95 for (Node
* node
= m_weakList
.begin(); node
!= end
; node
= m_nextToFinalize
) {
96 m_nextToFinalize
= node
->next();
98 ASSERT(isValidWeakNode(node
));
99 JSCell
* cell
= node
->slot()->asCell();
100 if (Heap::isMarked(cell
))
103 if (WeakHandleOwner
* weakOwner
= node
->weakOwner()) {
104 weakOwner
->finalize(Handle
<Unknown
>::wrapSlot(node
->slot()), node
->weakOwnerContext());
105 if (m_nextToFinalize
!= node
->next()) // Owner deallocated node.
109 *node
->slot() = JSValue();
110 SentinelLinkedList
<Node
>::remove(node
);
111 m_immediateList
.push(node
);
114 m_nextToFinalize
= 0;
117 void HandleHeap::writeBarrier(HandleSlot slot
, const JSValue
& value
)
119 ASSERT(!m_nextToFinalize
); // Forbid assignment to handles during the finalization phase, since it would violate many GC invariants.
121 if (!value
== !*slot
&& slot
->isCell() == value
.isCell())
124 Node
* node
= toNode(slot
);
125 SentinelLinkedList
<Node
>::remove(node
);
126 if (!value
|| !value
.isCell()) {
127 m_immediateList
.push(node
);
131 if (node
->isWeak()) {
132 m_weakList
.push(node
);
136 m_strongList
.push(node
);
139 unsigned HandleHeap::protectedGlobalObjectCount()
142 Node
* end
= m_strongList
.end();
143 for (Node
* node
= m_strongList
.begin(); node
!= end
; node
= node
->next()) {
144 JSValue value
= *node
->slot();
145 if (value
.isObject() && asObject(value
.asCell())->isGlobalObject())
152 bool HandleHeap::isValidWeakNode(Node
* node
)
157 JSValue value
= *node
->slot();
158 if (!value
|| !value
.isCell())
161 JSCell
* cell
= value
.asCell();
162 if (!cell
|| !cell
->structure())
165 #if ENABLE(JSC_ZOMBIES)
166 if (cell
->isZombie())