| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 V(Code, js_entry_code, JsEntryCode) \ | 162 V(Code, js_entry_code, JsEntryCode) \ |
| 163 V(Code, js_construct_entry_code, JsConstructEntryCode) \ | 163 V(Code, js_construct_entry_code, JsConstructEntryCode) \ |
| 164 V(FixedArray, natives_source_cache, NativesSourceCache) \ | 164 V(FixedArray, natives_source_cache, NativesSourceCache) \ |
| 165 V(FixedArray, experimental_natives_source_cache, \ | 165 V(FixedArray, experimental_natives_source_cache, \ |
| 166 ExperimentalNativesSourceCache) \ | 166 ExperimentalNativesSourceCache) \ |
| 167 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ | 167 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ |
| 168 V(FixedArray, experimental_extra_natives_source_cache, \ | 168 V(FixedArray, experimental_extra_natives_source_cache, \ |
| 169 ExperimentalExtraNativesSourceCache) \ | 169 ExperimentalExtraNativesSourceCache) \ |
| 170 V(Script, empty_script, EmptyScript) \ | 170 V(Script, empty_script, EmptyScript) \ |
| 171 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ | 171 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ |
| 172 V(NameDictionary, empty_properties_dictionary, EmptyPropertiesDictionary) \ |
| 172 V(Cell, undefined_cell, UndefinedCell) \ | 173 V(Cell, undefined_cell, UndefinedCell) \ |
| 173 V(JSObject, observation_state, ObservationState) \ | 174 V(JSObject, observation_state, ObservationState) \ |
| 174 V(Object, symbol_registry, SymbolRegistry) \ | 175 V(Object, symbol_registry, SymbolRegistry) \ |
| 175 V(Object, script_list, ScriptList) \ | 176 V(Object, script_list, ScriptList) \ |
| 176 V(SeededNumberDictionary, empty_slow_element_dictionary, \ | 177 V(SeededNumberDictionary, empty_slow_element_dictionary, \ |
| 177 EmptySlowElementDictionary) \ | 178 EmptySlowElementDictionary) \ |
| 178 V(FixedArray, materialized_objects, MaterializedObjects) \ | 179 V(FixedArray, materialized_objects, MaterializedObjects) \ |
| 179 V(FixedArray, microtask_queue, MicrotaskQueue) \ | 180 V(FixedArray, microtask_queue, MicrotaskQueue) \ |
| 180 V(TypeFeedbackVector, dummy_vector, DummyVector) \ | 181 V(TypeFeedbackVector, dummy_vector, DummyVector) \ |
| 181 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \ | 182 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \ |
| (...skipping 2604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2786 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2787 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2787 | 2788 |
| 2788 private: | 2789 private: |
| 2789 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2790 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2790 }; | 2791 }; |
| 2791 #endif // DEBUG | 2792 #endif // DEBUG |
| 2792 } // namespace internal | 2793 } // namespace internal |
| 2793 } // namespace v8 | 2794 } // namespace v8 |
| 2794 | 2795 |
| 2795 #endif // V8_HEAP_HEAP_H_ | 2796 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |