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

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

Issue 1210583002: Vector ICs: Like megamorphic keyed koads, use a dummy vector for stores (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Created 5 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 | « no previous file | 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ 180 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \
181 V(Cell, undefined_cell, UndefinedCell) \ 181 V(Cell, undefined_cell, UndefinedCell) \
182 V(JSObject, observation_state, ObservationState) \ 182 V(JSObject, observation_state, ObservationState) \
183 V(Object, symbol_registry, SymbolRegistry) \ 183 V(Object, symbol_registry, SymbolRegistry) \
184 V(SeededNumberDictionary, empty_slow_element_dictionary, \ 184 V(SeededNumberDictionary, empty_slow_element_dictionary, \
185 EmptySlowElementDictionary) \ 185 EmptySlowElementDictionary) \
186 V(FixedArray, materialized_objects, MaterializedObjects) \ 186 V(FixedArray, materialized_objects, MaterializedObjects) \
187 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \ 187 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \
188 V(FixedArray, microtask_queue, MicrotaskQueue) \ 188 V(FixedArray, microtask_queue, MicrotaskQueue) \
189 V(FixedArray, keyed_load_dummy_vector, KeyedLoadDummyVector) \ 189 V(FixedArray, keyed_load_dummy_vector, KeyedLoadDummyVector) \
190 V(FixedArray, keyed_store_dummy_vector, KeyedStoreDummyVector) \
190 V(FixedArray, detached_contexts, DetachedContexts) \ 191 V(FixedArray, detached_contexts, DetachedContexts) \
191 V(ArrayList, retained_maps, RetainedMaps) \ 192 V(ArrayList, retained_maps, RetainedMaps) \
192 V(WeakHashTable, weak_object_to_code_table, WeakObjectToCodeTable) \ 193 V(WeakHashTable, weak_object_to_code_table, WeakObjectToCodeTable) \
193 V(PropertyCell, array_protector, ArrayProtector) \ 194 V(PropertyCell, array_protector, ArrayProtector) \
194 V(Object, weak_stack_trace_list, WeakStackTraceList) 195 V(Object, weak_stack_trace_list, WeakStackTraceList)
195 196
196 // Entries in this list are limited to Smis and are not visited during GC. 197 // Entries in this list are limited to Smis and are not visited during GC.
197 #define SMI_ROOT_LIST(V) \ 198 #define SMI_ROOT_LIST(V) \
198 V(Smi, stack_limit, StackLimit) \ 199 V(Smi, stack_limit, StackLimit) \
199 V(Smi, real_stack_limit, RealStackLimit) \ 200 V(Smi, real_stack_limit, RealStackLimit) \
(...skipping 2651 matching lines...) Expand 10 before | Expand all | Expand 10 after
2851 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2852 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2852 2853
2853 private: 2854 private:
2854 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2855 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2855 }; 2856 };
2856 #endif // DEBUG 2857 #endif // DEBUG
2857 } 2858 }
2858 } // namespace v8::internal 2859 } // namespace v8::internal
2859 2860
2860 #endif // V8_HEAP_HEAP_H_ 2861 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698