]>
git.saurik.com Git - apple/javascriptcore.git/blob - heap/MarkedSpace.cpp
77f6e523aa6f7cbacc03de8c7d89d336cb5d1f64
2 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "MarkedSpace.h"
24 #include "JSGlobalObject.h"
26 #include "JSGlobalData.h"
29 #include "ScopeChain.h"
35 MarkedSpace::MarkedSpace(JSGlobalData
* globalData
)
38 , m_globalData(globalData
)
40 for (size_t cellSize
= preciseStep
; cellSize
< preciseCutoff
; cellSize
+= preciseStep
)
41 sizeClassFor(cellSize
).cellSize
= cellSize
;
43 for (size_t cellSize
= impreciseStep
; cellSize
< impreciseCutoff
; cellSize
+= impreciseStep
)
44 sizeClassFor(cellSize
).cellSize
= cellSize
;
47 void MarkedSpace::destroy()
54 MarkedBlock
* MarkedSpace::allocateBlock(SizeClass
& sizeClass
)
56 MarkedBlock
* block
= MarkedBlock::create(globalData(), sizeClass
.cellSize
);
57 sizeClass
.blockList
.append(block
);
58 sizeClass
.nextBlock
= block
;
64 void MarkedSpace::freeBlocks(DoublyLinkedList
<MarkedBlock
>& blocks
)
67 for (MarkedBlock
* block
= blocks
.head(); block
; block
= next
) {
71 m_blocks
.remove(block
);
72 MarkedBlock::destroy(block
);
76 void* MarkedSpace::allocateFromSizeClass(SizeClass
& sizeClass
)
78 for (MarkedBlock
*& block
= sizeClass
.nextBlock
; block
; block
= block
->next()) {
79 if (void* result
= block
->allocate())
82 m_waterMark
+= block
->capacity();
85 if (m_waterMark
< m_highWaterMark
)
86 return allocateBlock(sizeClass
)->allocate();
91 void MarkedSpace::shrink()
93 // We record a temporary list of empties to avoid modifying m_blocks while iterating it.
94 DoublyLinkedList
<MarkedBlock
> empties
;
96 BlockIterator end
= m_blocks
.end();
97 for (BlockIterator it
= m_blocks
.begin(); it
!= end
; ++it
) {
98 MarkedBlock
* block
= *it
;
99 if (block
->isEmpty()) {
100 SizeClass
& sizeClass
= sizeClassFor(block
->cellSize());
101 sizeClass
.blockList
.remove(block
);
102 sizeClass
.nextBlock
= sizeClass
.blockList
.head();
103 empties
.append(block
);
108 ASSERT(empties
.isEmpty());
111 void MarkedSpace::clearMarks()
113 BlockIterator end
= m_blocks
.end();
114 for (BlockIterator it
= m_blocks
.begin(); it
!= end
; ++it
)
118 void MarkedSpace::sweep()
120 BlockIterator end
= m_blocks
.end();
121 for (BlockIterator it
= m_blocks
.begin(); it
!= end
; ++it
)
125 size_t MarkedSpace::objectCount() const
128 BlockIterator end
= m_blocks
.end();
129 for (BlockIterator it
= m_blocks
.begin(); it
!= end
; ++it
)
130 result
+= (*it
)->markCount();
134 size_t MarkedSpace::size() const
137 BlockIterator end
= m_blocks
.end();
138 for (BlockIterator it
= m_blocks
.begin(); it
!= end
; ++it
)
139 result
+= (*it
)->size();
143 size_t MarkedSpace::capacity() const
146 BlockIterator end
= m_blocks
.end();
147 for (BlockIterator it
= m_blocks
.begin(); it
!= end
; ++it
)
148 result
+= (*it
)->capacity();
152 void MarkedSpace::reset()
156 for (size_t cellSize
= preciseStep
; cellSize
< preciseCutoff
; cellSize
+= preciseStep
)
157 sizeClassFor(cellSize
).reset();
159 for (size_t cellSize
= impreciseStep
; cellSize
< impreciseCutoff
; cellSize
+= impreciseStep
)
160 sizeClassFor(cellSize
).reset();
162 BlockIterator end
= m_blocks
.end();
163 for (BlockIterator it
= m_blocks
.begin(); it
!= end
; ++it
)