| OLD | NEW |
| 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 Loading... |
| 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 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 842 kMaybeDeopted = 1 << 3, | 848 kMaybeDeopted = 1 << 3, |
| 843 kOptimized = 1 << 4, | 849 kOptimized = 1 << 4, |
| 844 kTurboFanned = 1 << 5, | 850 kTurboFanned = 1 << 5, |
| 845 kInterpreted = 1 << 6, | 851 kInterpreted = 1 << 6, |
| 846 }; | 852 }; |
| 847 | 853 |
| 848 } // namespace internal | 854 } // namespace internal |
| 849 } // namespace v8 | 855 } // namespace v8 |
| 850 | 856 |
| 851 #endif // V8_RUNTIME_RUNTIME_H_ | 857 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |