OLD | NEW |
1 // Copyright 2017 the V8 project authors. All rights reserved. | 1 // Copyright 2017 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 #include <stdlib.h> | 5 #include <stdlib.h> |
6 | 6 |
7 #include "src/v8.h" | 7 #include "src/v8.h" |
8 | 8 |
9 #include "src/heap/concurrent-marking.h" | 9 #include "src/heap/concurrent-marking.h" |
10 #include "src/heap/heap-inl.h" | 10 #include "src/heap/heap-inl.h" |
11 #include "src/heap/heap.h" | 11 #include "src/heap/heap.h" |
12 #include "test/cctest/cctest.h" | 12 #include "test/cctest/cctest.h" |
13 #include "test/cctest/heap/heap-utils.h" | 13 #include "test/cctest/heap/heap-utils.h" |
14 | 14 |
15 namespace v8 { | 15 namespace v8 { |
16 namespace internal { | 16 namespace internal { |
17 TEST(ConcurrentMarking) { | 17 TEST(ConcurrentMarking) { |
18 i::FLAG_concurrent_marking = true; | 18 if (!i::FLAG_concurrent_marking) return; |
19 CcTest::InitializeVM(); | 19 CcTest::InitializeVM(); |
20 Heap* heap = CcTest::heap(); | 20 Heap* heap = CcTest::heap(); |
21 ConcurrentMarking* concurrent_marking = new ConcurrentMarking(heap); | 21 ConcurrentMarking* concurrent_marking = new ConcurrentMarking(heap); |
22 concurrent_marking->AddRoot(heap->undefined_value()); | 22 concurrent_marking->AddRoot(heap->undefined_value()); |
23 concurrent_marking->StartMarkingTask(); | 23 concurrent_marking->StartTask(); |
24 concurrent_marking->WaitForTaskToComplete(); | 24 concurrent_marking->WaitForTaskToComplete(); |
25 delete concurrent_marking; | 25 delete concurrent_marking; |
26 } | 26 } |
27 | 27 |
28 } // namespace internal | 28 } // namespace internal |
29 } // namespace v8 | 29 } // namespace v8 |
OLD | NEW |