Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(278)

Side by Side Diff: test/cctest/heap/test-concurrent-marking.cc

Issue 2728363002: [heap] Implement concurrent marking boilerplate. (Closed)
Patch Set: Add missing test file Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« src/heap/concurrent-marking.h ('K') | « test/cctest/cctest.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« src/heap/concurrent-marking.h ('K') | « test/cctest/cctest.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698