OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include <stdlib.h> |
| 6 |
| 7 #include "src/v8.h" |
| 8 |
| 9 #include "src/heap/concurrent-marking.h" |
| 10 #include "src/heap/heap-inl.h" |
| 11 #include "src/heap/heap.h" |
| 12 #include "test/cctest/cctest.h" |
| 13 #include "test/cctest/heap/heap-utils.h" |
| 14 |
| 15 namespace v8 { |
| 16 namespace internal { |
| 17 TEST(ConcurrentMarking) { |
| 18 i::FLAG_concurrent_marking = true; |
| 19 CcTest::InitializeVM(); |
| 20 Heap* heap = CcTest::heap(); |
| 21 ConcurrentMarking* concurrent_marking = new ConcurrentMarking(heap); |
| 22 for (int i = 0; i < 10; i++) { |
| 23 concurrent_marking->EnqueueObject(heap->undefined_value()); |
| 24 } |
| 25 concurrent_marking->StartMarkingTasks(3); |
| 26 while (!concurrent_marking->IsQueueEmpty()) { |
| 27 } |
| 28 concurrent_marking->WaitForTasksToComplete(); |
| 29 delete concurrent_marking; |
| 30 } |
| 31 |
| 32 } // namespace internal |
| 33 } // namespace v8 |
OLD | NEW |