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

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

Issue 2663803002: [string] Migrate String.prototype.{split,replace} to TF (Closed)
Patch Set: Whitelist new builtins and fix fast-regexp check Created 3 years, 10 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 798 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 F(Bool8x16Xor, 2, 1) \ 809 F(Bool8x16Xor, 2, 1) \
810 F(Bool8x16Not, 1, 1) \ 810 F(Bool8x16Not, 1, 1) \
811 F(Bool8x16AnyTrue, 1, 1) \ 811 F(Bool8x16AnyTrue, 1, 1) \
812 F(Bool8x16AllTrue, 1, 1) \ 812 F(Bool8x16AllTrue, 1, 1) \
813 F(Bool8x16Swizzle, 17, 1) \ 813 F(Bool8x16Swizzle, 17, 1) \
814 F(Bool8x16Shuffle, 18, 1) \ 814 F(Bool8x16Shuffle, 18, 1) \
815 F(Bool8x16Equal, 2, 1) \ 815 F(Bool8x16Equal, 2, 1) \
816 F(Bool8x16NotEqual, 2, 1) 816 F(Bool8x16NotEqual, 2, 1)
817 817
818 #define FOR_EACH_INTRINSIC_STRINGS(F) \ 818 #define FOR_EACH_INTRINSIC_STRINGS(F) \
819 F(GetSubstitution, 4, 1) \
819 F(StringReplaceOneCharWithString, 3, 1) \ 820 F(StringReplaceOneCharWithString, 3, 1) \
820 F(StringIndexOf, 3, 1) \ 821 F(StringIndexOf, 3, 1) \
821 F(StringIndexOfUnchecked, 3, 1) \ 822 F(StringIndexOfUnchecked, 3, 1) \
822 F(StringLastIndexOf, 2, 1) \ 823 F(StringLastIndexOf, 2, 1) \
823 F(SubString, 3, 1) \ 824 F(SubString, 3, 1) \
824 F(StringAdd, 2, 1) \ 825 F(StringAdd, 2, 1) \
825 F(InternalizeString, 1, 1) \ 826 F(InternalizeString, 1, 1) \
826 F(StringCharCodeAtRT, 2, 1) \ 827 F(StringCharCodeAtRT, 2, 1) \
827 F(StringCompare, 2, 1) \ 828 F(StringCompare, 2, 1) \
828 F(StringBuilderConcat, 3, 1) \ 829 F(StringBuilderConcat, 3, 1) \
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
1161 kMaybeDeopted = 1 << 3, 1162 kMaybeDeopted = 1 << 3,
1162 kOptimized = 1 << 4, 1163 kOptimized = 1 << 4,
1163 kTurboFanned = 1 << 5, 1164 kTurboFanned = 1 << 5,
1164 kInterpreted = 1 << 6, 1165 kInterpreted = 1 << 6,
1165 }; 1166 };
1166 1167
1167 } // namespace internal 1168 } // namespace internal
1168 } // namespace v8 1169 } // namespace v8
1169 1170
1170 #endif // V8_RUNTIME_RUNTIME_H_ 1171 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698