Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/heap/heap.h

Issue 1906823002: Move of the type feedback vector to the closure. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/full-codegen/full-codegen.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ 176 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \
177 V(NameDictionary, empty_properties_dictionary, EmptyPropertiesDictionary) \ 177 V(NameDictionary, empty_properties_dictionary, EmptyPropertiesDictionary) \
178 V(Cell, undefined_cell, UndefinedCell) \ 178 V(Cell, undefined_cell, UndefinedCell) \
179 V(Object, symbol_registry, SymbolRegistry) \ 179 V(Object, symbol_registry, SymbolRegistry) \
180 V(Object, script_list, ScriptList) \ 180 V(Object, script_list, ScriptList) \
181 V(SeededNumberDictionary, empty_slow_element_dictionary, \ 181 V(SeededNumberDictionary, empty_slow_element_dictionary, \
182 EmptySlowElementDictionary) \ 182 EmptySlowElementDictionary) \
183 V(FixedArray, materialized_objects, MaterializedObjects) \ 183 V(FixedArray, materialized_objects, MaterializedObjects) \
184 V(FixedArray, microtask_queue, MicrotaskQueue) \ 184 V(FixedArray, microtask_queue, MicrotaskQueue) \
185 V(TypeFeedbackVector, dummy_vector, DummyVector) \ 185 V(TypeFeedbackVector, dummy_vector, DummyVector) \
186 V(FixedArray, empty_literals_array, EmptyLiteralsArray) \
186 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \ 187 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \
187 V(FixedArray, detached_contexts, DetachedContexts) \ 188 V(FixedArray, detached_contexts, DetachedContexts) \
188 V(ArrayList, retained_maps, RetainedMaps) \ 189 V(ArrayList, retained_maps, RetainedMaps) \
189 V(WeakHashTable, weak_object_to_code_table, WeakObjectToCodeTable) \ 190 V(WeakHashTable, weak_object_to_code_table, WeakObjectToCodeTable) \
190 V(PropertyCell, array_protector, ArrayProtector) \ 191 V(PropertyCell, array_protector, ArrayProtector) \
191 V(Cell, is_concat_spreadable_protector, IsConcatSpreadableProtector) \ 192 V(Cell, is_concat_spreadable_protector, IsConcatSpreadableProtector) \
192 V(PropertyCell, empty_property_cell, EmptyPropertyCell) \ 193 V(PropertyCell, empty_property_cell, EmptyPropertyCell) \
193 V(Object, weak_stack_trace_list, WeakStackTraceList) \ 194 V(Object, weak_stack_trace_list, WeakStackTraceList) \
194 V(Object, noscript_shared_function_infos, NoScriptSharedFunctionInfos) \ 195 V(Object, noscript_shared_function_infos, NoScriptSharedFunctionInfos) \
195 V(Map, bytecode_array_map, BytecodeArrayMap) \ 196 V(Map, bytecode_array_map, BytecodeArrayMap) \
(...skipping 2461 matching lines...) Expand 10 before | Expand all | Expand 10 after
2657 friend class LargeObjectSpace; 2658 friend class LargeObjectSpace;
2658 friend class NewSpace; 2659 friend class NewSpace;
2659 friend class PagedSpace; 2660 friend class PagedSpace;
2660 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); 2661 DISALLOW_COPY_AND_ASSIGN(AllocationObserver);
2661 }; 2662 };
2662 2663
2663 } // namespace internal 2664 } // namespace internal
2664 } // namespace v8 2665 } // namespace v8
2665 2666
2666 #endif // V8_HEAP_HEAP_H_ 2667 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/full-codegen/full-codegen.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698