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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 V(Map, byte_array_map, ByteArrayMap) \ | 43 V(Map, byte_array_map, ByteArrayMap) \ |
44 V(Map, fixed_array_map, FixedArrayMap) \ | 44 V(Map, fixed_array_map, FixedArrayMap) \ |
45 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \ | 45 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \ |
46 V(Map, hash_table_map, HashTableMap) \ | 46 V(Map, hash_table_map, HashTableMap) \ |
47 V(Map, symbol_map, SymbolMap) \ | 47 V(Map, symbol_map, SymbolMap) \ |
48 V(Map, one_byte_string_map, OneByteStringMap) \ | 48 V(Map, one_byte_string_map, OneByteStringMap) \ |
49 V(Map, one_byte_internalized_string_map, OneByteInternalizedStringMap) \ | 49 V(Map, one_byte_internalized_string_map, OneByteInternalizedStringMap) \ |
50 V(Map, scope_info_map, ScopeInfoMap) \ | 50 V(Map, scope_info_map, ScopeInfoMap) \ |
51 V(Map, module_info_entry_map, ModuleInfoEntryMap) \ | 51 V(Map, module_info_entry_map, ModuleInfoEntryMap) \ |
52 V(Map, module_info_map, ModuleInfoMap) \ | 52 V(Map, module_info_map, ModuleInfoMap) \ |
53 V(Map, js_module_map, JSModuleMap) \ | |
54 V(Map, shared_function_info_map, SharedFunctionInfoMap) \ | 53 V(Map, shared_function_info_map, SharedFunctionInfoMap) \ |
55 V(Map, code_map, CodeMap) \ | 54 V(Map, code_map, CodeMap) \ |
56 V(Map, function_context_map, FunctionContextMap) \ | 55 V(Map, function_context_map, FunctionContextMap) \ |
57 V(Map, cell_map, CellMap) \ | 56 V(Map, cell_map, CellMap) \ |
58 V(Map, weak_cell_map, WeakCellMap) \ | 57 V(Map, weak_cell_map, WeakCellMap) \ |
59 V(Map, global_property_cell_map, GlobalPropertyCellMap) \ | 58 V(Map, global_property_cell_map, GlobalPropertyCellMap) \ |
60 V(Map, foreign_map, ForeignMap) \ | 59 V(Map, foreign_map, ForeignMap) \ |
61 V(Map, heap_number_map, HeapNumberMap) \ | 60 V(Map, heap_number_map, HeapNumberMap) \ |
62 V(Map, transition_array_map, TransitionArrayMap) \ | 61 V(Map, transition_array_map, TransitionArrayMap) \ |
63 V(FixedArray, empty_literals_array, EmptyLiteralsArray) \ | 62 V(FixedArray, empty_literals_array, EmptyLiteralsArray) \ |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 V(Bool16x8Map) \ | 271 V(Bool16x8Map) \ |
273 V(Int8x16Map) \ | 272 V(Int8x16Map) \ |
274 V(Uint8x16Map) \ | 273 V(Uint8x16Map) \ |
275 V(Bool8x16Map) \ | 274 V(Bool8x16Map) \ |
276 V(NativeContextMap) \ | 275 V(NativeContextMap) \ |
277 V(FixedArrayMap) \ | 276 V(FixedArrayMap) \ |
278 V(CodeMap) \ | 277 V(CodeMap) \ |
279 V(ScopeInfoMap) \ | 278 V(ScopeInfoMap) \ |
280 V(ModuleInfoEntryMap) \ | 279 V(ModuleInfoEntryMap) \ |
281 V(ModuleInfoMap) \ | 280 V(ModuleInfoMap) \ |
282 V(JSModuleMap) \ | |
283 V(FixedCOWArrayMap) \ | 281 V(FixedCOWArrayMap) \ |
284 V(FixedDoubleArrayMap) \ | 282 V(FixedDoubleArrayMap) \ |
285 V(WeakCellMap) \ | 283 V(WeakCellMap) \ |
286 V(TransitionArrayMap) \ | 284 V(TransitionArrayMap) \ |
287 V(NoInterceptorResultSentinel) \ | 285 V(NoInterceptorResultSentinel) \ |
288 V(HashTableMap) \ | 286 V(HashTableMap) \ |
289 V(OrderedHashTableMap) \ | 287 V(OrderedHashTableMap) \ |
290 V(EmptyFixedArray) \ | 288 V(EmptyFixedArray) \ |
291 V(EmptyByteArray) \ | 289 V(EmptyByteArray) \ |
292 V(EmptyDescriptorArray) \ | 290 V(EmptyDescriptorArray) \ |
(...skipping 2345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2638 friend class LargeObjectSpace; | 2636 friend class LargeObjectSpace; |
2639 friend class NewSpace; | 2637 friend class NewSpace; |
2640 friend class PagedSpace; | 2638 friend class PagedSpace; |
2641 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); | 2639 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); |
2642 }; | 2640 }; |
2643 | 2641 |
2644 } // namespace internal | 2642 } // namespace internal |
2645 } // namespace v8 | 2643 } // namespace v8 |
2646 | 2644 |
2647 #endif // V8_HEAP_HEAP_H_ | 2645 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |