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

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

Issue 2415103002: [regexp] Turn last match info into a simple FixedArray (Closed)
Patch Set: Don't check instance type before map check Created 4 years, 2 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/regexp/regexp-utils.cc ('k') | src/runtime/runtime-regexp.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 794 matching lines...) Expand 10 before | Expand all | Expand 10 after
805 F(Bool8x16Equal, 2, 1) \ 805 F(Bool8x16Equal, 2, 1) \
806 F(Bool8x16NotEqual, 2, 1) 806 F(Bool8x16NotEqual, 2, 1)
807 807
808 #define FOR_EACH_INTRINSIC_STRINGS(F) \ 808 #define FOR_EACH_INTRINSIC_STRINGS(F) \
809 F(StringReplaceOneCharWithString, 3, 1) \ 809 F(StringReplaceOneCharWithString, 3, 1) \
810 F(StringIndexOf, 3, 1) \ 810 F(StringIndexOf, 3, 1) \
811 F(StringLastIndexOf, 2, 1) \ 811 F(StringLastIndexOf, 2, 1) \
812 F(SubString, 3, 1) \ 812 F(SubString, 3, 1) \
813 F(StringAdd, 2, 1) \ 813 F(StringAdd, 2, 1) \
814 F(InternalizeString, 1, 1) \ 814 F(InternalizeString, 1, 1) \
815 F(StringMatch, 3, 1) \
816 F(StringCharCodeAtRT, 2, 1) \ 815 F(StringCharCodeAtRT, 2, 1) \
817 F(StringCompare, 2, 1) \ 816 F(StringCompare, 2, 1) \
818 F(StringBuilderConcat, 3, 1) \ 817 F(StringBuilderConcat, 3, 1) \
819 F(StringBuilderJoin, 3, 1) \ 818 F(StringBuilderJoin, 3, 1) \
820 F(SparseJoinWithSeparator, 3, 1) \ 819 F(SparseJoinWithSeparator, 3, 1) \
821 F(StringToArray, 2, 1) \ 820 F(StringToArray, 2, 1) \
822 F(StringToLowerCase, 1, 1) \ 821 F(StringToLowerCase, 1, 1) \
823 F(StringToUpperCase, 1, 1) \ 822 F(StringToUpperCase, 1, 1) \
824 F(StringLessThan, 2, 1) \ 823 F(StringLessThan, 2, 1) \
825 F(StringLessThanOrEqual, 2, 1) \ 824 F(StringLessThanOrEqual, 2, 1) \
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
1131 1130
1132 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1131 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1133 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1132 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1134 STATIC_ASSERT(LANGUAGE_END == 2); 1133 STATIC_ASSERT(LANGUAGE_END == 2);
1135 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; 1134 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {};
1136 1135
1137 } // namespace internal 1136 } // namespace internal
1138 } // namespace v8 1137 } // namespace v8
1139 1138
1140 #endif // V8_RUNTIME_RUNTIME_H_ 1139 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/regexp/regexp-utils.cc ('k') | src/runtime/runtime-regexp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698