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

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

Issue 2663803002: [string] Migrate String.prototype.{split,replace} to TF (Closed)
Patch Set: Remove debug-evaluate whitelisting 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
« no previous file with comments | « src/js/string.js ('k') | src/runtime/runtime-strings.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 801 matching lines...) Expand 10 before | Expand all | Expand 10 after
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) \
822 F(StringReplaceOneCharWithString, 3, 1) \ 823 F(StringReplaceOneCharWithString, 3, 1) \
823 F(StringIndexOf, 3, 1) \ 824 F(StringIndexOf, 3, 1) \
824 F(StringIndexOfUnchecked, 3, 1) \ 825 F(StringIndexOfUnchecked, 3, 1) \
825 F(StringLastIndexOf, 2, 1) \ 826 F(StringLastIndexOf, 2, 1) \
826 F(SubString, 3, 1) \ 827 F(SubString, 3, 1) \
827 F(StringAdd, 2, 1) \ 828 F(StringAdd, 2, 1) \
828 F(InternalizeString, 1, 1) \ 829 F(InternalizeString, 1, 1) \
829 F(StringCharCodeAtRT, 2, 1) \ 830 F(StringCharCodeAtRT, 2, 1) \
830 F(StringCompare, 2, 1) \ 831 F(StringCompare, 2, 1) \
831 F(StringBuilderConcat, 3, 1) \ 832 F(StringBuilderConcat, 3, 1) \
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
1165 kMaybeDeopted = 1 << 3, 1166 kMaybeDeopted = 1 << 3,
1166 kOptimized = 1 << 4, 1167 kOptimized = 1 << 4,
1167 kTurboFanned = 1 << 5, 1168 kTurboFanned = 1 << 5,
1168 kInterpreted = 1 << 6, 1169 kInterpreted = 1 << 6,
1169 }; 1170 };
1170 1171
1171 } // namespace internal 1172 } // namespace internal
1172 } // namespace v8 1173 } // namespace v8
1173 1174
1174 #endif // V8_RUNTIME_RUNTIME_H_ 1175 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/js/string.js ('k') | src/runtime/runtime-strings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698