f284d8b5720d00b952b2cbabc69ae5a6cb551b9f
[framework/web/webkit-efl.git] / Source / JavaScriptCore / heap / IncrementalSweeper.cpp
1 /*
2  * Copyright (C) 2012 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
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.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
24  */
25
26 #include "config.h"
27 #include "IncrementalSweeper.h"
28
29 #include "APIShims.h"
30 #include "Heap.h"
31 #include "JSObject.h"
32 #include "JSString.h"
33 #include "MarkedBlock.h"
34 #include "ScopeChain.h"
35 #include <wtf/HashSet.h>
36 #include <wtf/WTFThreadData.h>
37
38 namespace JSC {
39
40 #if USE(CF)
41
42 static const CFTimeInterval sweepTimeSlice = .01; // seconds
43 static const CFTimeInterval sweepTimeTotal = .10;
44 static const CFTimeInterval sweepTimeMultiplier = 1.0 / sweepTimeTotal;
45
46 void IncrementalSweeper::doWork()
47 {
48     doSweep(WTF::monotonicallyIncreasingTime());
49 }
50     
51 IncrementalSweeper::IncrementalSweeper(Heap* heap, CFRunLoopRef runLoop)
52     : HeapTimer(heap->globalData(), runLoop)
53     , m_currentBlockToSweepIndex(0)
54     , m_structuresCanBeSwept(false)
55 {
56 }
57
58 IncrementalSweeper* IncrementalSweeper::create(Heap* heap)
59 {
60     return new IncrementalSweeper(heap, CFRunLoopGetCurrent());
61 }
62
63 void IncrementalSweeper::scheduleTimer()
64 {
65     CFRunLoopTimerSetNextFireDate(m_timer.get(), CFAbsoluteTimeGetCurrent() + (sweepTimeSlice * sweepTimeMultiplier));
66 }
67
68 void IncrementalSweeper::cancelTimer()
69 {
70     CFRunLoopTimerSetNextFireDate(m_timer.get(), CFAbsoluteTimeGetCurrent() + s_decade);
71 }
72
73 void IncrementalSweeper::doSweep(double sweepBeginTime)
74 {
75     while (m_currentBlockToSweepIndex < m_blocksToSweep.size()) {
76         sweepNextBlock();
77
78         CFTimeInterval elapsedTime = WTF::monotonicallyIncreasingTime() - sweepBeginTime;
79         if (elapsedTime < sweepTimeSlice)
80             continue;
81
82         scheduleTimer();
83         return;
84     }
85
86     m_blocksToSweep.clear();
87     cancelTimer();
88 }
89
90 void IncrementalSweeper::sweepNextBlock()
91 {
92     while (m_currentBlockToSweepIndex < m_blocksToSweep.size()) {
93         MarkedBlock* block = m_blocksToSweep[m_currentBlockToSweepIndex++];
94         if (block->onlyContainsStructures())
95             m_structuresCanBeSwept = true;
96         else
97             ASSERT(!m_structuresCanBeSwept);
98
99         if (!block->needsSweeping())
100             continue;
101
102         block->sweep();
103         m_globalData->heap.objectSpace().freeOrShrinkBlock(block);
104         return;
105     }
106 }
107
108 void IncrementalSweeper::startSweeping(const HashSet<MarkedBlock*>& blockSnapshot)
109 {
110     m_blocksToSweep.resize(blockSnapshot.size());
111     CopyFunctor functor(m_blocksToSweep);
112     m_globalData->heap.objectSpace().forEachBlock(functor);
113     m_currentBlockToSweepIndex = 0;
114     m_structuresCanBeSwept = false;
115     scheduleTimer();
116 }
117
118 void IncrementalSweeper::willFinishSweeping()
119 {
120     m_currentBlockToSweepIndex = 0;
121     m_structuresCanBeSwept = true;
122     m_blocksToSweep.clear();
123     if (m_globalData)
124         cancelTimer();
125 }
126
127 #else
128
129 IncrementalSweeper::IncrementalSweeper(JSGlobalData* globalData)
130     : HeapTimer(globalData)
131     , m_structuresCanBeSwept(false)
132 {
133 }
134
135 void IncrementalSweeper::doWork()
136 {
137 }
138
139 IncrementalSweeper* IncrementalSweeper::create(Heap* heap)
140 {
141     return new IncrementalSweeper(heap->globalData());
142 }
143
144 void IncrementalSweeper::startSweeping(const HashSet<MarkedBlock*>&)
145 {
146     m_structuresCanBeSwept = false;
147 }
148
149 void IncrementalSweeper::willFinishSweeping()
150 {
151     m_structuresCanBeSwept = true;
152 }
153
154 void IncrementalSweeper::sweepNextBlock()
155 {
156 }
157
158 #endif
159
160 bool IncrementalSweeper::structuresCanBeSwept()
161 {
162     return m_structuresCanBeSwept;
163 }
164
165 } // namespace JSC