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

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

Issue 2814773005: [js] Avoid %_ClassOf for collection builtins. (Closed)
Patch Set: Disable the failing test for CS again. 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
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)
122 128
123 #define FOR_EACH_INTRINSIC_COMPILER(F) \ 129 #define FOR_EACH_INTRINSIC_COMPILER(F) \
124 F(CompileLazy, 1, 1) \ 130 F(CompileLazy, 1, 1) \
125 F(CompileOptimized_Concurrent, 1, 1) \ 131 F(CompileOptimized_Concurrent, 1, 1) \
126 F(CompileOptimized_NotConcurrent, 1, 1) \ 132 F(CompileOptimized_NotConcurrent, 1, 1) \
127 F(NotifyStubFailure, 0, 1) \ 133 F(NotifyStubFailure, 0, 1) \
128 F(NotifyDeoptimized, 1, 1) \ 134 F(NotifyDeoptimized, 1, 1) \
129 F(CompileForOnStackReplacement, 1, 1) \ 135 F(CompileForOnStackReplacement, 1, 1) \
130 F(TryInstallOptimizedCode, 1, 1) \ 136 F(TryInstallOptimizedCode, 1, 1) \
131 F(ResolvePossiblyDirectEval, 6, 1) \ 137 F(ResolvePossiblyDirectEval, 6, 1) \
(...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after
846 kMaybeDeopted = 1 << 3, 852 kMaybeDeopted = 1 << 3,
847 kOptimized = 1 << 4, 853 kOptimized = 1 << 4,
848 kTurboFanned = 1 << 5, 854 kTurboFanned = 1 << 5,
849 kInterpreted = 1 << 6, 855 kInterpreted = 1 << 6,
850 }; 856 };
851 857
852 } // namespace internal 858 } // namespace internal
853 } // namespace v8 859 } // namespace v8
854 860
855 #endif // V8_RUNTIME_RUNTIME_H_ 861 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698