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

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

Issue 1864703003: Turn StoreIC::Megamorphic into a builtin, get rid of the non-monomorphic-cache (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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/builtins.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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 V(Map, message_object_map, JSMessageObjectMap) \ 155 V(Map, message_object_map, JSMessageObjectMap) \
156 V(Map, foreign_map, ForeignMap) \ 156 V(Map, foreign_map, ForeignMap) \
157 V(Map, neander_map, NeanderMap) \ 157 V(Map, neander_map, NeanderMap) \
158 V(Map, external_map, ExternalMap) \ 158 V(Map, external_map, ExternalMap) \
159 V(HeapNumber, nan_value, NanValue) \ 159 V(HeapNumber, nan_value, NanValue) \
160 V(HeapNumber, infinity_value, InfinityValue) \ 160 V(HeapNumber, infinity_value, InfinityValue) \
161 V(HeapNumber, minus_zero_value, MinusZeroValue) \ 161 V(HeapNumber, minus_zero_value, MinusZeroValue) \
162 V(HeapNumber, minus_infinity_value, MinusInfinityValue) \ 162 V(HeapNumber, minus_infinity_value, MinusInfinityValue) \
163 V(JSObject, message_listeners, MessageListeners) \ 163 V(JSObject, message_listeners, MessageListeners) \
164 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ 164 V(UnseededNumberDictionary, code_stubs, CodeStubs) \
165 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \
166 V(Code, js_entry_code, JsEntryCode) \ 165 V(Code, js_entry_code, JsEntryCode) \
167 V(Code, js_construct_entry_code, JsConstructEntryCode) \ 166 V(Code, js_construct_entry_code, JsConstructEntryCode) \
168 V(FixedArray, natives_source_cache, NativesSourceCache) \ 167 V(FixedArray, natives_source_cache, NativesSourceCache) \
169 V(FixedArray, experimental_natives_source_cache, \ 168 V(FixedArray, experimental_natives_source_cache, \
170 ExperimentalNativesSourceCache) \ 169 ExperimentalNativesSourceCache) \
171 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ 170 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \
172 V(FixedArray, experimental_extra_natives_source_cache, \ 171 V(FixedArray, experimental_extra_natives_source_cache, \
173 ExperimentalExtraNativesSourceCache) \ 172 ExperimentalExtraNativesSourceCache) \
174 V(Script, empty_script, EmptyScript) \ 173 V(Script, empty_script, EmptyScript) \
175 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ 174 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \
(...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after
970 } 969 }
971 970
972 // Generated code can embed this address to get access to the roots. 971 // Generated code can embed this address to get access to the roots.
973 Object** roots_array_start() { return roots_; } 972 Object** roots_array_start() { return roots_; }
974 973
975 // Sets the stub_cache_ (only used when expanding the dictionary). 974 // Sets the stub_cache_ (only used when expanding the dictionary).
976 void SetRootCodeStubs(UnseededNumberDictionary* value) { 975 void SetRootCodeStubs(UnseededNumberDictionary* value) {
977 roots_[kCodeStubsRootIndex] = value; 976 roots_[kCodeStubsRootIndex] = value;
978 } 977 }
979 978
980 // Sets the non_monomorphic_cache_ (only used when expanding the dictionary).
981 void SetRootNonMonomorphicCache(UnseededNumberDictionary* value) {
982 roots_[kNonMonomorphicCacheRootIndex] = value;
983 }
984
985 void SetRootMaterializedObjects(FixedArray* objects) { 979 void SetRootMaterializedObjects(FixedArray* objects) {
986 roots_[kMaterializedObjectsRootIndex] = objects; 980 roots_[kMaterializedObjectsRootIndex] = objects;
987 } 981 }
988 982
989 void SetRootScriptList(Object* value) { 983 void SetRootScriptList(Object* value) {
990 roots_[kScriptListRootIndex] = value; 984 roots_[kScriptListRootIndex] = value;
991 } 985 }
992 986
993 void SetRootStringTable(StringTable* value) { 987 void SetRootStringTable(StringTable* value) {
994 roots_[kStringTableRootIndex] = value; 988 roots_[kStringTableRootIndex] = value;
(...skipping 1666 matching lines...) Expand 10 before | Expand all | Expand 10 after
2661 friend class LargeObjectSpace; 2655 friend class LargeObjectSpace;
2662 friend class NewSpace; 2656 friend class NewSpace;
2663 friend class PagedSpace; 2657 friend class PagedSpace;
2664 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); 2658 DISALLOW_COPY_AND_ASSIGN(AllocationObserver);
2665 }; 2659 };
2666 2660
2667 } // namespace internal 2661 } // namespace internal
2668 } // namespace v8 2662 } // namespace v8
2669 2663
2670 #endif // V8_HEAP_HEAP_H_ 2664 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698