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

Side by Side Diff: src/heap/heap.h

Issue 2810893002: [heap] Implement simple concurrent marking deque. (Closed)
Patch Set: revert flags Created 3 years, 7 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
OLDNEW
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_HEAP_HEAP_H_ 5 #ifndef V8_HEAP_HEAP_H_
6 #define V8_HEAP_HEAP_H_ 6 #define V8_HEAP_HEAP_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 #include <map> 9 #include <map>
10 10
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 V(UninitializedMap) \ 335 V(UninitializedMap) \
336 V(UninitializedValue) \ 336 V(UninitializedValue) \
337 V(WeakCellMap) \ 337 V(WeakCellMap) \
338 V(WithContextMap) \ 338 V(WithContextMap) \
339 PRIVATE_SYMBOL_LIST(V) 339 PRIVATE_SYMBOL_LIST(V)
340 340
341 // Forward declarations. 341 // Forward declarations.
342 class AllocationObserver; 342 class AllocationObserver;
343 class ArrayBufferTracker; 343 class ArrayBufferTracker;
344 class ConcurrentMarking; 344 class ConcurrentMarking;
345 class ConcurrentMarkingDeque;
345 class GCIdleTimeAction; 346 class GCIdleTimeAction;
346 class GCIdleTimeHandler; 347 class GCIdleTimeHandler;
347 class GCIdleTimeHeapState; 348 class GCIdleTimeHeapState;
348 class GCTracer; 349 class GCTracer;
349 class HeapObjectsFilter; 350 class HeapObjectsFilter;
350 class HeapStats; 351 class HeapStats;
351 class HistogramTimer; 352 class HistogramTimer;
352 class Isolate; 353 class Isolate;
353 class LocalEmbedderHeapTracer; 354 class LocalEmbedderHeapTracer;
354 class MemoryAllocator; 355 class MemoryAllocator;
(...skipping 2306 matching lines...) Expand 10 before | Expand all | Expand 10 after
2661 friend class PagedSpace; 2662 friend class PagedSpace;
2662 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); 2663 DISALLOW_COPY_AND_ASSIGN(AllocationObserver);
2663 }; 2664 };
2664 2665
2665 V8_EXPORT_PRIVATE const char* AllocationSpaceName(AllocationSpace space); 2666 V8_EXPORT_PRIVATE const char* AllocationSpaceName(AllocationSpace space);
2666 2667
2667 } // namespace internal 2668 } // namespace internal
2668 } // namespace v8 2669 } // namespace v8
2669 2670
2670 #endif // V8_HEAP_HEAP_H_ 2671 #endif // V8_HEAP_HEAP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698