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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 V(Object, instanceof_cache_function, InstanceofCacheFunction) \ | 178 V(Object, instanceof_cache_function, InstanceofCacheFunction) \ |
179 V(Object, instanceof_cache_map, InstanceofCacheMap) \ | 179 V(Object, instanceof_cache_map, InstanceofCacheMap) \ |
180 V(Object, instanceof_cache_answer, InstanceofCacheAnswer) \ | 180 V(Object, instanceof_cache_answer, InstanceofCacheAnswer) \ |
181 V(FixedArray, natives_source_cache, NativesSourceCache) \ | 181 V(FixedArray, natives_source_cache, NativesSourceCache) \ |
182 V(FixedArray, experimental_natives_source_cache, \ | 182 V(FixedArray, experimental_natives_source_cache, \ |
183 ExperimentalNativesSourceCache) \ | 183 ExperimentalNativesSourceCache) \ |
184 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ | 184 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ |
185 V(FixedArray, experimental_extra_natives_source_cache, \ | 185 V(FixedArray, experimental_extra_natives_source_cache, \ |
186 ExperimentalExtraNativesSourceCache) \ | 186 ExperimentalExtraNativesSourceCache) \ |
187 /* Lists and dictionaries */ \ | 187 /* Lists and dictionaries */ \ |
188 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ | |
189 V(NameDictionary, empty_properties_dictionary, EmptyPropertiesDictionary) \ | 188 V(NameDictionary, empty_properties_dictionary, EmptyPropertiesDictionary) \ |
190 V(Object, symbol_registry, SymbolRegistry) \ | 189 V(Object, symbol_registry, SymbolRegistry) \ |
191 V(Object, script_list, ScriptList) \ | 190 V(Object, script_list, ScriptList) \ |
192 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ | 191 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ |
193 V(FixedArray, materialized_objects, MaterializedObjects) \ | 192 V(FixedArray, materialized_objects, MaterializedObjects) \ |
194 V(FixedArray, microtask_queue, MicrotaskQueue) \ | 193 V(FixedArray, microtask_queue, MicrotaskQueue) \ |
195 V(FixedArray, detached_contexts, DetachedContexts) \ | 194 V(FixedArray, detached_contexts, DetachedContexts) \ |
196 V(ArrayList, retained_maps, RetainedMaps) \ | 195 V(ArrayList, retained_maps, RetainedMaps) \ |
197 V(WeakHashTable, weak_object_to_code_table, WeakObjectToCodeTable) \ | 196 V(WeakHashTable, weak_object_to_code_table, WeakObjectToCodeTable) \ |
198 /* weak_new_space_object_to_code_list is an array of weak cells, where */ \ | 197 /* weak_new_space_object_to_code_list is an array of weak cells, where */ \ |
(...skipping 2439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2638 friend class LargeObjectSpace; | 2637 friend class LargeObjectSpace; |
2639 friend class NewSpace; | 2638 friend class NewSpace; |
2640 friend class PagedSpace; | 2639 friend class PagedSpace; |
2641 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); | 2640 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); |
2642 }; | 2641 }; |
2643 | 2642 |
2644 } // namespace internal | 2643 } // namespace internal |
2645 } // namespace v8 | 2644 } // namespace v8 |
2646 | 2645 |
2647 #endif // V8_HEAP_HEAP_H_ | 2646 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |