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_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 Loading... |
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 2304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2659 friend class PagedSpace; | 2660 friend class PagedSpace; |
2660 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); | 2661 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); |
2661 }; | 2662 }; |
2662 | 2663 |
2663 V8_EXPORT_PRIVATE const char* AllocationSpaceName(AllocationSpace space); | 2664 V8_EXPORT_PRIVATE const char* AllocationSpaceName(AllocationSpace space); |
2664 | 2665 |
2665 } // namespace internal | 2666 } // namespace internal |
2666 } // namespace v8 | 2667 } // namespace v8 |
2667 | 2668 |
2668 #endif // V8_HEAP_HEAP_H_ | 2669 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |