92c03e01ae00ff28a98ed3e1c6001bde1dfd0c0b
[framework/web/webkit-efl.git] / Source / JavaScriptCore / runtime / GCActivityCallbackEfl.cpp
1 /*
2  * Copyright (C) 2012 Samsung Electronics. All rights reserved.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18
19 #include "config.h"
20 #include "GCActivityCallback.h"
21
22 #include "Heap.h"
23 #include "JSGlobalData.h"
24
25 namespace JSC {
26
27 const double timerInterval = 0.3;
28
29 DefaultGCActivityCallback::DefaultGCActivityCallback(Heap* heap)
30     : GCActivityCallback(heap->globalData())
31 {
32 }
33
34 void DefaultGCActivityCallback::doWork()
35 {
36     JSLockHolder lock(m_globalData);
37     m_globalData->heap.collect(Heap::DoNotSweep);
38 }
39
40 void DefaultGCActivityCallback::didAllocate(size_t bytes)
41 {
42     if (bytes < 1 * MB)
43         return;
44
45     if (m_timer || m_globalData->usingAPI())
46         return;
47
48     m_timer = adoptPtr(ecore_timer_add(timerInterval, reinterpret_cast<Ecore_Task_Cb>(HeapTimer::timerDidFire), this));
49 }
50
51 void DefaultGCActivityCallback::willCollect()
52 {
53     stop();
54 }
55
56 void DefaultGCActivityCallback::cancel()
57 {
58     stop();
59 }
60
61 } // namespace JSC