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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 V(HeapNumber, minus_zero_value, MinusZeroValue) \ | 168 V(HeapNumber, minus_zero_value, MinusZeroValue) \ |
169 V(JSObject, message_listeners, MessageListeners) \ | 169 V(JSObject, message_listeners, MessageListeners) \ |
170 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ | 170 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ |
171 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ | 171 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ |
172 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \ | 172 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \ |
173 V(Code, js_entry_code, JsEntryCode) \ | 173 V(Code, js_entry_code, JsEntryCode) \ |
174 V(Code, js_construct_entry_code, JsConstructEntryCode) \ | 174 V(Code, js_construct_entry_code, JsConstructEntryCode) \ |
175 V(FixedArray, natives_source_cache, NativesSourceCache) \ | 175 V(FixedArray, natives_source_cache, NativesSourceCache) \ |
176 V(FixedArray, experimental_natives_source_cache, \ | 176 V(FixedArray, experimental_natives_source_cache, \ |
177 ExperimentalNativesSourceCache) \ | 177 ExperimentalNativesSourceCache) \ |
| 178 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ |
178 V(Script, empty_script, EmptyScript) \ | 179 V(Script, empty_script, EmptyScript) \ |
179 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ | 180 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ |
180 V(Cell, undefined_cell, UndefinedCell) \ | 181 V(Cell, undefined_cell, UndefinedCell) \ |
181 V(JSObject, observation_state, ObservationState) \ | 182 V(JSObject, observation_state, ObservationState) \ |
182 V(Object, symbol_registry, SymbolRegistry) \ | 183 V(Object, symbol_registry, SymbolRegistry) \ |
183 V(SeededNumberDictionary, empty_slow_element_dictionary, \ | 184 V(SeededNumberDictionary, empty_slow_element_dictionary, \ |
184 EmptySlowElementDictionary) \ | 185 EmptySlowElementDictionary) \ |
185 V(FixedArray, materialized_objects, MaterializedObjects) \ | 186 V(FixedArray, materialized_objects, MaterializedObjects) \ |
186 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \ | 187 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \ |
187 V(FixedArray, microtask_queue, MicrotaskQueue) \ | 188 V(FixedArray, microtask_queue, MicrotaskQueue) \ |
(...skipping 2451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2639 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2640 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2640 | 2641 |
2641 private: | 2642 private: |
2642 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2643 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2643 }; | 2644 }; |
2644 #endif // DEBUG | 2645 #endif // DEBUG |
2645 } | 2646 } |
2646 } // namespace v8::internal | 2647 } // namespace v8::internal |
2647 | 2648 |
2648 #endif // V8_HEAP_HEAP_H_ | 2649 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |