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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 V(ScriptContextMap) \ | 265 V(ScriptContextMap) \ |
266 V(UndefinedMap) \ | 266 V(UndefinedMap) \ |
267 V(TheHoleMap) \ | 267 V(TheHoleMap) \ |
268 V(NullMap) \ | 268 V(NullMap) \ |
269 V(BooleanMap) \ | 269 V(BooleanMap) \ |
270 V(UninitializedMap) \ | 270 V(UninitializedMap) \ |
271 V(ArgumentsMarkerMap) \ | 271 V(ArgumentsMarkerMap) \ |
272 V(JSMessageObjectMap) \ | 272 V(JSMessageObjectMap) \ |
273 V(ForeignMap) \ | 273 V(ForeignMap) \ |
274 V(NeanderMap) \ | 274 V(NeanderMap) \ |
| 275 V(NanValue) \ |
| 276 V(InfinityValue) \ |
| 277 V(MinusZeroValue) \ |
| 278 V(MinusInfinityValue) \ |
275 V(EmptyWeakCell) \ | 279 V(EmptyWeakCell) \ |
276 V(empty_string) \ | 280 V(empty_string) \ |
277 PRIVATE_SYMBOL_LIST(V) | 281 PRIVATE_SYMBOL_LIST(V) |
278 | 282 |
279 // Forward declarations. | 283 // Forward declarations. |
280 class AllocationObserver; | 284 class AllocationObserver; |
281 class ArrayBufferTracker; | 285 class ArrayBufferTracker; |
282 class GCIdleTimeAction; | 286 class GCIdleTimeAction; |
283 class GCIdleTimeHandler; | 287 class GCIdleTimeHandler; |
284 class GCIdleTimeHeapState; | 288 class GCIdleTimeHeapState; |
(...skipping 2349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2634 friend class LargeObjectSpace; | 2638 friend class LargeObjectSpace; |
2635 friend class NewSpace; | 2639 friend class NewSpace; |
2636 friend class PagedSpace; | 2640 friend class PagedSpace; |
2637 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); | 2641 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); |
2638 }; | 2642 }; |
2639 | 2643 |
2640 } // namespace internal | 2644 } // namespace internal |
2641 } // namespace v8 | 2645 } // namespace v8 |
2642 | 2646 |
2643 #endif // V8_HEAP_HEAP_H_ | 2647 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |