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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 V(JSObject, message_listeners, MessageListeners) \ | 155 V(JSObject, message_listeners, MessageListeners) \ |
156 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ | 156 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ |
157 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ | 157 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ |
158 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \ | 158 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \ |
159 V(Code, js_entry_code, JsEntryCode) \ | 159 V(Code, js_entry_code, JsEntryCode) \ |
160 V(Code, js_construct_entry_code, JsConstructEntryCode) \ | 160 V(Code, js_construct_entry_code, JsConstructEntryCode) \ |
161 V(FixedArray, natives_source_cache, NativesSourceCache) \ | 161 V(FixedArray, natives_source_cache, NativesSourceCache) \ |
162 V(FixedArray, experimental_natives_source_cache, \ | 162 V(FixedArray, experimental_natives_source_cache, \ |
163 ExperimentalNativesSourceCache) \ | 163 ExperimentalNativesSourceCache) \ |
164 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ | 164 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ |
| 165 V(FixedArray, experimental_extra_natives_source_cache, \ |
| 166 ExperimentalExtraNativesSourceCache) \ |
165 V(FixedArray, code_stub_natives_source_cache, CodeStubNativesSourceCache) \ | 167 V(FixedArray, code_stub_natives_source_cache, CodeStubNativesSourceCache) \ |
166 V(Script, empty_script, EmptyScript) \ | 168 V(Script, empty_script, EmptyScript) \ |
167 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ | 169 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ |
168 V(Cell, undefined_cell, UndefinedCell) \ | 170 V(Cell, undefined_cell, UndefinedCell) \ |
169 V(JSObject, observation_state, ObservationState) \ | 171 V(JSObject, observation_state, ObservationState) \ |
170 V(Object, symbol_registry, SymbolRegistry) \ | 172 V(Object, symbol_registry, SymbolRegistry) \ |
171 V(SeededNumberDictionary, empty_slow_element_dictionary, \ | 173 V(SeededNumberDictionary, empty_slow_element_dictionary, \ |
172 EmptySlowElementDictionary) \ | 174 EmptySlowElementDictionary) \ |
173 V(FixedArray, materialized_objects, MaterializedObjects) \ | 175 V(FixedArray, materialized_objects, MaterializedObjects) \ |
174 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \ | 176 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \ |
(...skipping 2528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2703 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2705 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2704 | 2706 |
2705 private: | 2707 private: |
2706 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2708 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2707 }; | 2709 }; |
2708 #endif // DEBUG | 2710 #endif // DEBUG |
2709 } | 2711 } |
2710 } // namespace v8::internal | 2712 } // namespace v8::internal |
2711 | 2713 |
2712 #endif // V8_HEAP_HEAP_H_ | 2714 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |