]>
git.saurik.com Git - apple/javascriptcore.git/blob - heap/GCActivityCallback.cpp
2 * Copyright (C) 2010 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
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of Apple Inc. ("Apple") nor the names of
14 * its contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include "GCActivityCallback.h"
37 #include <wtf/RetainPtr.h>
38 #include <wtf/WTFThreadData.h>
41 #include <wtf/MainThread.h>
46 bool GCActivityCallback::s_shouldCreateGCTimer
= true;
48 #if USE(CF) || PLATFORM(EFL)
50 const double timerSlop
= 2.0; // Fudge factor to avoid performance cost of resetting timer.
53 GCActivityCallback::GCActivityCallback(Heap
* heap
)
54 : GCActivityCallback(heap
->vm(), CFRunLoopGetCurrent())
58 GCActivityCallback::GCActivityCallback(Heap
* heap
, CFRunLoopRef runLoop
)
59 : GCActivityCallback(heap
->vm(), runLoop
)
63 GCActivityCallback::GCActivityCallback(Heap
* heap
)
64 : GCActivityCallback(heap
->vm(), WTF::isMainThread())
69 void GCActivityCallback::doWork()
71 Heap
* heap
= &m_vm
->heap
;
75 JSLockHolder
locker(m_vm
);
76 if (heap
->isDeferred()) {
85 void GCActivityCallback::scheduleTimer(double newDelay
)
87 if (newDelay
* timerSlop
> m_delay
)
89 double delta
= m_delay
- newDelay
;
91 CFRunLoopTimerSetNextFireDate(m_timer
.get(), CFRunLoopTimerGetNextFireDate(m_timer
.get()) - delta
);
94 void GCActivityCallback::cancelTimer()
97 CFRunLoopTimerSetNextFireDate(m_timer
.get(), CFAbsoluteTimeGetCurrent() + s_decade
);
100 void GCActivityCallback::scheduleTimer(double newDelay
)
102 if (newDelay
* timerSlop
> m_delay
)
109 m_timer
= add(newDelay
, this);
112 void GCActivityCallback::cancelTimer()
119 void GCActivityCallback::didAllocate(size_t bytes
)
125 ASSERT(WTF::isMainThread());
128 // The first byte allocated in an allocation cycle will report 0 bytes to didAllocate.
129 // We pretend it's one byte so that we don't ignore this allocation entirely.
132 double bytesExpectedToReclaim
= static_cast<double>(bytes
) * deathRate();
133 double newDelay
= lastGCLength() / gcTimeSlice(bytesExpectedToReclaim
);
134 scheduleTimer(newDelay
);
137 void GCActivityCallback::willCollect()
142 void GCActivityCallback::cancel()
149 GCActivityCallback::GCActivityCallback(Heap
* heap
)
150 : GCActivityCallback(heap
->vm())
154 void GCActivityCallback::doWork()
158 void GCActivityCallback::didAllocate(size_t)
162 void GCActivityCallback::willCollect()
166 void GCActivityCallback::cancel()