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

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

Issue 2860123002: Revert of [js] Avoid %_ClassOf for collection builtins. (Closed)
Patch Set: Created 3 years, 7 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/js/macros.py ('k') | src/runtime/runtime-collections.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_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 F(MapIteratorInitialize, 3, 1) \ 111 F(MapIteratorInitialize, 3, 1) \
112 F(MapIteratorClone, 1, 1) \ 112 F(MapIteratorClone, 1, 1) \
113 F(MapIteratorDetails, 1, 1) \ 113 F(MapIteratorDetails, 1, 1) \
114 F(GetWeakMapEntries, 2, 1) \ 114 F(GetWeakMapEntries, 2, 1) \
115 F(MapIteratorNext, 2, 1) \ 115 F(MapIteratorNext, 2, 1) \
116 F(WeakCollectionInitialize, 1, 1) \ 116 F(WeakCollectionInitialize, 1, 1) \
117 F(WeakCollectionGet, 3, 1) \ 117 F(WeakCollectionGet, 3, 1) \
118 F(WeakCollectionHas, 3, 1) \ 118 F(WeakCollectionHas, 3, 1) \
119 F(WeakCollectionDelete, 3, 1) \ 119 F(WeakCollectionDelete, 3, 1) \
120 F(WeakCollectionSet, 4, 1) \ 120 F(WeakCollectionSet, 4, 1) \
121 F(GetWeakSetValues, 2, 1) \ 121 F(GetWeakSetValues, 2, 1)
122 F(IsJSMap, 1, 1) \
123 F(IsJSSet, 1, 1) \
124 F(IsJSMapIterator, 1, 1) \
125 F(IsJSSetIterator, 1, 1) \
126 F(IsJSWeakMap, 1, 1) \
127 F(IsJSWeakSet, 1, 1)
128 122
129 #define FOR_EACH_INTRINSIC_COMPILER(F) \ 123 #define FOR_EACH_INTRINSIC_COMPILER(F) \
130 F(CompileLazy, 1, 1) \ 124 F(CompileLazy, 1, 1) \
131 F(CompileOptimized_Concurrent, 1, 1) \ 125 F(CompileOptimized_Concurrent, 1, 1) \
132 F(CompileOptimized_NotConcurrent, 1, 1) \ 126 F(CompileOptimized_NotConcurrent, 1, 1) \
133 F(NotifyStubFailure, 0, 1) \ 127 F(NotifyStubFailure, 0, 1) \
134 F(NotifyDeoptimized, 1, 1) \ 128 F(NotifyDeoptimized, 1, 1) \
135 F(CompileForOnStackReplacement, 1, 1) \ 129 F(CompileForOnStackReplacement, 1, 1) \
136 F(TryInstallOptimizedCode, 1, 1) \ 130 F(TryInstallOptimizedCode, 1, 1) \
137 F(ResolvePossiblyDirectEval, 6, 1) \ 131 F(ResolvePossiblyDirectEval, 6, 1) \
(...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 kMaybeDeopted = 1 << 3, 846 kMaybeDeopted = 1 << 3,
853 kOptimized = 1 << 4, 847 kOptimized = 1 << 4,
854 kTurboFanned = 1 << 5, 848 kTurboFanned = 1 << 5,
855 kInterpreted = 1 << 6, 849 kInterpreted = 1 << 6,
856 }; 850 };
857 851
858 } // namespace internal 852 } // namespace internal
859 } // namespace v8 853 } // namespace v8
860 854
861 #endif // V8_RUNTIME_RUNTIME_H_ 855 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/js/macros.py ('k') | src/runtime/runtime-collections.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698