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(Script, empty_script, EmptyScript) \ | 162 V(Script, empty_script, EmptyScript) \ |
163 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ | 163 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ |
164 V(Cell, undefined_cell, UndefinedCell) \ | 164 V(Cell, undefined_cell, UndefinedCell) \ |
165 V(JSObject, observation_state, ObservationState) \ | 165 V(JSObject, observation_state, ObservationState) \ |
166 V(Object, symbol_registry, SymbolRegistry) \ | 166 V(Object, symbol_registry, SymbolRegistry) \ |
167 V(SeededNumberDictionary, empty_slow_element_dictionary, \ | 167 V(SeededNumberDictionary, empty_slow_element_dictionary, \ |
168 EmptySlowElementDictionary) \ | 168 EmptySlowElementDictionary) \ |
169 V(FixedArray, materialized_objects, MaterializedObjects) \ | 169 V(FixedArray, materialized_objects, MaterializedObjects) \ |
170 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \ | 170 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \ |
171 V(FixedArray, microtask_queue, MicrotaskQueue) \ | 171 V(FixedArray, microtask_queue, MicrotaskQueue) \ |
172 V(FixedArray, keyed_load_dummy_vector, KeyedLoadDummyVector) \ | 172 V(FixedArray, dummy_vector, DummyVector) \ |
173 V(FixedArray, keyed_store_dummy_vector, KeyedStoreDummyVector) \ | |
174 V(FixedArray, detached_contexts, DetachedContexts) \ | 173 V(FixedArray, detached_contexts, DetachedContexts) \ |
175 V(ArrayList, retained_maps, RetainedMaps) \ | 174 V(ArrayList, retained_maps, RetainedMaps) \ |
176 V(WeakHashTable, weak_object_to_code_table, WeakObjectToCodeTable) \ | 175 V(WeakHashTable, weak_object_to_code_table, WeakObjectToCodeTable) \ |
177 V(PropertyCell, array_protector, ArrayProtector) \ | 176 V(PropertyCell, array_protector, ArrayProtector) \ |
178 V(PropertyCell, empty_property_cell, EmptyPropertyCell) \ | 177 V(PropertyCell, empty_property_cell, EmptyPropertyCell) \ |
179 V(Object, weak_stack_trace_list, WeakStackTraceList) \ | 178 V(Object, weak_stack_trace_list, WeakStackTraceList) \ |
180 V(Object, code_stub_context, CodeStubContext) \ | 179 V(Object, code_stub_context, CodeStubContext) \ |
181 V(JSObject, code_stub_exports_object, CodeStubExportsObject) \ | 180 V(JSObject, code_stub_exports_object, CodeStubExportsObject) \ |
182 V(FixedArray, interpreter_table, InterpreterTable) \ | 181 V(FixedArray, interpreter_table, InterpreterTable) \ |
183 V(Map, bytecode_array_map, BytecodeArrayMap) \ | 182 V(Map, bytecode_array_map, BytecodeArrayMap) \ |
(...skipping 2678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2862 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2861 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2863 | 2862 |
2864 private: | 2863 private: |
2865 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2864 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2866 }; | 2865 }; |
2867 #endif // DEBUG | 2866 #endif // DEBUG |
2868 } | 2867 } |
2869 } // namespace v8::internal | 2868 } // namespace v8::internal |
2870 | 2869 |
2871 #endif // V8_HEAP_HEAP_H_ | 2870 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |