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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 V(NameDictionary, empty_properties_dictionary, EmptyPropertiesDictionary) \ | 177 V(NameDictionary, empty_properties_dictionary, EmptyPropertiesDictionary) \ |
178 V(Cell, undefined_cell, UndefinedCell) \ | 178 V(Cell, undefined_cell, UndefinedCell) \ |
179 V(Object, symbol_registry, SymbolRegistry) \ | 179 V(Object, symbol_registry, SymbolRegistry) \ |
180 V(Object, script_list, ScriptList) \ | 180 V(Object, script_list, ScriptList) \ |
181 V(SeededNumberDictionary, empty_slow_element_dictionary, \ | 181 V(SeededNumberDictionary, empty_slow_element_dictionary, \ |
182 EmptySlowElementDictionary) \ | 182 EmptySlowElementDictionary) \ |
183 V(FixedArray, materialized_objects, MaterializedObjects) \ | 183 V(FixedArray, materialized_objects, MaterializedObjects) \ |
184 V(FixedArray, microtask_queue, MicrotaskQueue) \ | 184 V(FixedArray, microtask_queue, MicrotaskQueue) \ |
185 V(TypeFeedbackVector, dummy_vector, DummyVector) \ | 185 V(TypeFeedbackVector, dummy_vector, DummyVector) \ |
186 V(FixedArray, empty_literals_array, EmptyLiteralsArray) \ | 186 V(FixedArray, empty_literals_array, EmptyLiteralsArray) \ |
| 187 V(FixedArray, empty_sloppy_arguments_elements, EmptySloppyArgumentsElements) \ |
187 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \ | 188 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \ |
188 V(FixedArray, detached_contexts, DetachedContexts) \ | 189 V(FixedArray, detached_contexts, DetachedContexts) \ |
189 V(ArrayList, retained_maps, RetainedMaps) \ | 190 V(ArrayList, retained_maps, RetainedMaps) \ |
190 V(WeakHashTable, weak_object_to_code_table, WeakObjectToCodeTable) \ | 191 V(WeakHashTable, weak_object_to_code_table, WeakObjectToCodeTable) \ |
191 V(PropertyCell, array_protector, ArrayProtector) \ | 192 V(PropertyCell, array_protector, ArrayProtector) \ |
192 V(Cell, is_concat_spreadable_protector, IsConcatSpreadableProtector) \ | 193 V(Cell, is_concat_spreadable_protector, IsConcatSpreadableProtector) \ |
193 V(PropertyCell, empty_property_cell, EmptyPropertyCell) \ | 194 V(PropertyCell, empty_property_cell, EmptyPropertyCell) \ |
194 V(Object, weak_stack_trace_list, WeakStackTraceList) \ | 195 V(Object, weak_stack_trace_list, WeakStackTraceList) \ |
195 V(Object, noscript_shared_function_infos, NoScriptSharedFunctionInfos) \ | 196 V(Object, noscript_shared_function_infos, NoScriptSharedFunctionInfos) \ |
196 V(Map, bytecode_array_map, BytecodeArrayMap) \ | 197 V(Map, bytecode_array_map, BytecodeArrayMap) \ |
(...skipping 2461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2658 friend class LargeObjectSpace; | 2659 friend class LargeObjectSpace; |
2659 friend class NewSpace; | 2660 friend class NewSpace; |
2660 friend class PagedSpace; | 2661 friend class PagedSpace; |
2661 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); | 2662 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); |
2662 }; | 2663 }; |
2663 | 2664 |
2664 } // namespace internal | 2665 } // namespace internal |
2665 } // namespace v8 | 2666 } // namespace v8 |
2666 | 2667 |
2667 #endif // V8_HEAP_HEAP_H_ | 2668 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |