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 801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 F(Bool8x16Xor, 2, 1) \ | 812 F(Bool8x16Xor, 2, 1) \ |
813 F(Bool8x16Not, 1, 1) \ | 813 F(Bool8x16Not, 1, 1) \ |
814 F(Bool8x16AnyTrue, 1, 1) \ | 814 F(Bool8x16AnyTrue, 1, 1) \ |
815 F(Bool8x16AllTrue, 1, 1) \ | 815 F(Bool8x16AllTrue, 1, 1) \ |
816 F(Bool8x16Swizzle, 17, 1) \ | 816 F(Bool8x16Swizzle, 17, 1) \ |
817 F(Bool8x16Shuffle, 18, 1) \ | 817 F(Bool8x16Shuffle, 18, 1) \ |
818 F(Bool8x16Equal, 2, 1) \ | 818 F(Bool8x16Equal, 2, 1) \ |
819 F(Bool8x16NotEqual, 2, 1) | 819 F(Bool8x16NotEqual, 2, 1) |
820 | 820 |
821 #define FOR_EACH_INTRINSIC_STRINGS(F) \ | 821 #define FOR_EACH_INTRINSIC_STRINGS(F) \ |
822 F(GetSubstitution, 4, 1) \ | |
823 F(StringReplaceOneCharWithString, 3, 1) \ | 822 F(StringReplaceOneCharWithString, 3, 1) \ |
824 F(StringIndexOf, 3, 1) \ | 823 F(StringIndexOf, 3, 1) \ |
825 F(StringIndexOfUnchecked, 3, 1) \ | 824 F(StringIndexOfUnchecked, 3, 1) \ |
826 F(StringLastIndexOf, 2, 1) \ | 825 F(StringLastIndexOf, 2, 1) \ |
827 F(SubString, 3, 1) \ | 826 F(SubString, 3, 1) \ |
828 F(StringAdd, 2, 1) \ | 827 F(StringAdd, 2, 1) \ |
829 F(InternalizeString, 1, 1) \ | 828 F(InternalizeString, 1, 1) \ |
830 F(StringCharCodeAtRT, 2, 1) \ | 829 F(StringCharCodeAtRT, 2, 1) \ |
831 F(StringCompare, 2, 1) \ | 830 F(StringCompare, 2, 1) \ |
832 F(StringBuilderConcat, 3, 1) \ | 831 F(StringBuilderConcat, 3, 1) \ |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1166 kMaybeDeopted = 1 << 3, | 1165 kMaybeDeopted = 1 << 3, |
1167 kOptimized = 1 << 4, | 1166 kOptimized = 1 << 4, |
1168 kTurboFanned = 1 << 5, | 1167 kTurboFanned = 1 << 5, |
1169 kInterpreted = 1 << 6, | 1168 kInterpreted = 1 << 6, |
1170 }; | 1169 }; |
1171 | 1170 |
1172 } // namespace internal | 1171 } // namespace internal |
1173 } // namespace v8 | 1172 } // namespace v8 |
1174 | 1173 |
1175 #endif // V8_RUNTIME_RUNTIME_H_ | 1174 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |