| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 V(FixedArray, natives_source_cache, NativesSourceCache) \ | 167 V(FixedArray, natives_source_cache, NativesSourceCache) \ |
| 168 V(FixedArray, experimental_natives_source_cache, \ | 168 V(FixedArray, experimental_natives_source_cache, \ |
| 169 ExperimentalNativesSourceCache) \ | 169 ExperimentalNativesSourceCache) \ |
| 170 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ | 170 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ |
| 171 V(FixedArray, experimental_extra_natives_source_cache, \ | 171 V(FixedArray, experimental_extra_natives_source_cache, \ |
| 172 ExperimentalExtraNativesSourceCache) \ | 172 ExperimentalExtraNativesSourceCache) \ |
| 173 V(Script, empty_script, EmptyScript) \ | 173 V(Script, empty_script, EmptyScript) \ |
| 174 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ | 174 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ |
| 175 V(NameDictionary, empty_properties_dictionary, EmptyPropertiesDictionary) \ | 175 V(NameDictionary, empty_properties_dictionary, EmptyPropertiesDictionary) \ |
| 176 V(Cell, undefined_cell, UndefinedCell) \ | 176 V(Cell, undefined_cell, UndefinedCell) \ |
| 177 V(JSObject, observation_state, ObservationState) \ | |
| 178 V(Object, symbol_registry, SymbolRegistry) \ | 177 V(Object, symbol_registry, SymbolRegistry) \ |
| 179 V(Object, script_list, ScriptList) \ | 178 V(Object, script_list, ScriptList) \ |
| 180 V(SeededNumberDictionary, empty_slow_element_dictionary, \ | 179 V(SeededNumberDictionary, empty_slow_element_dictionary, \ |
| 181 EmptySlowElementDictionary) \ | 180 EmptySlowElementDictionary) \ |
| 182 V(FixedArray, materialized_objects, MaterializedObjects) \ | 181 V(FixedArray, materialized_objects, MaterializedObjects) \ |
| 183 V(FixedArray, microtask_queue, MicrotaskQueue) \ | 182 V(FixedArray, microtask_queue, MicrotaskQueue) \ |
| 184 V(TypeFeedbackVector, dummy_vector, DummyVector) \ | 183 V(TypeFeedbackVector, dummy_vector, DummyVector) \ |
| 185 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \ | 184 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \ |
| 186 V(FixedArray, detached_contexts, DetachedContexts) \ | 185 V(FixedArray, detached_contexts, DetachedContexts) \ |
| 187 V(ArrayList, retained_maps, RetainedMaps) \ | 186 V(ArrayList, retained_maps, RetainedMaps) \ |
| (...skipping 2462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2650 friend class LargeObjectSpace; | 2649 friend class LargeObjectSpace; |
| 2651 friend class NewSpace; | 2650 friend class NewSpace; |
| 2652 friend class PagedSpace; | 2651 friend class PagedSpace; |
| 2653 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); | 2652 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); |
| 2654 }; | 2653 }; |
| 2655 | 2654 |
| 2656 } // namespace internal | 2655 } // namespace internal |
| 2657 } // namespace v8 | 2656 } // namespace v8 |
| 2658 | 2657 |
| 2659 #endif // V8_HEAP_HEAP_H_ | 2658 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |