blob: 48f040409d77cda83d8b770bd9c083cc5643e0bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#ifndef IncrementalSweeper_h
#define IncrementalSweeper_h
#include "MarkedBlock.h"
#include <wtf/HashSet.h>
#include <wtf/PassOwnPtr.h>
#include <wtf/RetainPtr.h>
#include <wtf/Vector.h>
#if USE(CF)
#include <CoreFoundation/CoreFoundation.h>
#endif
namespace JSC {
class Heap;
class IncrementalSweeper {
public:
~IncrementalSweeper();
static PassOwnPtr<IncrementalSweeper> create(Heap*);
void startSweeping(const HashSet<MarkedBlock*>& blockSnapshot);
private:
#if USE(CF)
IncrementalSweeper(Heap*, CFRunLoopRef);
static void timerDidFire(CFRunLoopTimerRef, void*);
void doSweep(double startTime);
void scheduleTimer();
void cancelTimer();
Heap* m_heap;
unsigned m_currentBlockToSweepIndex;
RetainPtr<CFRunLoopTimerRef> m_timer;
RetainPtr<CFRunLoopRef> m_runLoop;
CFRunLoopTimerContext m_context;
double m_lengthOfLastSweepIncrement;
Vector<MarkedBlock*> m_blocksToSweep;
#else
IncrementalSweeper();
#endif
};
} // namespace JSC
#endif
|