OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_SWEEPER_THREAD_H_ | 5 #ifndef V8_SWEEPER_THREAD_H_ |
6 #define V8_SWEEPER_THREAD_H_ | 6 #define V8_SWEEPER_THREAD_H_ |
7 | 7 |
8 #include "src/atomicops.h" | 8 #include "src/base/atomicops.h" |
9 #include "src/flags.h" | 9 #include "src/flags.h" |
10 #include "src/platform.h" | 10 #include "src/platform.h" |
11 #include "src/utils.h" | 11 #include "src/utils.h" |
12 | 12 |
13 #include "src/spaces.h" | 13 #include "src/spaces.h" |
14 | 14 |
15 #include "src/heap.h" | 15 #include "src/heap.h" |
16 | 16 |
17 namespace v8 { | 17 namespace v8 { |
18 namespace internal { | 18 namespace internal { |
(...skipping 11 matching lines...) Expand all Loading... |
30 | 30 |
31 static int NumberOfThreads(int max_available); | 31 static int NumberOfThreads(int max_available); |
32 | 32 |
33 private: | 33 private: |
34 Isolate* isolate_; | 34 Isolate* isolate_; |
35 Heap* heap_; | 35 Heap* heap_; |
36 MarkCompactCollector* collector_; | 36 MarkCompactCollector* collector_; |
37 Semaphore start_sweeping_semaphore_; | 37 Semaphore start_sweeping_semaphore_; |
38 Semaphore end_sweeping_semaphore_; | 38 Semaphore end_sweeping_semaphore_; |
39 Semaphore stop_semaphore_; | 39 Semaphore stop_semaphore_; |
40 volatile AtomicWord stop_thread_; | 40 volatile base::AtomicWord stop_thread_; |
41 }; | 41 }; |
42 | 42 |
43 } } // namespace v8::internal | 43 } } // namespace v8::internal |
44 | 44 |
45 #endif // V8_SWEEPER_THREAD_H_ | 45 #endif // V8_SWEEPER_THREAD_H_ |
OLD | NEW |