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

Side by Side Diff: src/code-factory.h

Issue 2668703002: [stubs] Add RegExpReplace and RegExpSplit stubs (Closed)
Patch Set: BranchIfFastRegExp/IsFastRegExpMap 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/builtins/builtins-string.cc ('k') | src/code-factory.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_CODE_FACTORY_H_ 5 #ifndef V8_CODE_FACTORY_H_
6 #define V8_CODE_FACTORY_H_ 6 #define V8_CODE_FACTORY_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/assembler.h" 9 #include "src/assembler.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 static Callable StringCompare(Isolate* isolate, Token::Value token); 125 static Callable StringCompare(Isolate* isolate, Token::Value token);
126 static Callable StringEqual(Isolate* isolate); 126 static Callable StringEqual(Isolate* isolate);
127 static Callable StringNotEqual(Isolate* isolate); 127 static Callable StringNotEqual(Isolate* isolate);
128 static Callable StringLessThan(Isolate* isolate); 128 static Callable StringLessThan(Isolate* isolate);
129 static Callable StringLessThanOrEqual(Isolate* isolate); 129 static Callable StringLessThanOrEqual(Isolate* isolate);
130 static Callable StringGreaterThan(Isolate* isolate); 130 static Callable StringGreaterThan(Isolate* isolate);
131 static Callable StringGreaterThanOrEqual(Isolate* isolate); 131 static Callable StringGreaterThanOrEqual(Isolate* isolate);
132 static Callable SubString(Isolate* isolate); 132 static Callable SubString(Isolate* isolate);
133 static Callable StringIndexOf(Isolate* isolate); 133 static Callable StringIndexOf(Isolate* isolate);
134 134
135 static Callable RegExpReplace(Isolate* isolate);
136 static Callable RegExpSplit(Isolate* isolate);
137
135 static Callable ClassOf(Isolate* isolate); 138 static Callable ClassOf(Isolate* isolate);
136 static Callable Typeof(Isolate* isolate); 139 static Callable Typeof(Isolate* isolate);
137 static Callable GetSuperConstructor(Isolate* isolate); 140 static Callable GetSuperConstructor(Isolate* isolate);
138 141
139 static Callable FastCloneRegExp(Isolate* isolate); 142 static Callable FastCloneRegExp(Isolate* isolate);
140 static Callable FastCloneShallowArray(Isolate* isolate, 143 static Callable FastCloneShallowArray(Isolate* isolate,
141 AllocationSiteMode allocation_mode); 144 AllocationSiteMode allocation_mode);
142 static Callable FastCloneShallowObject(Isolate* isolate, int length); 145 static Callable FastCloneShallowObject(Isolate* isolate, int length);
143 146
144 static Callable FastNewFunctionContext(Isolate* isolate, 147 static Callable FastNewFunctionContext(Isolate* isolate,
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 195
193 static Callable ArrayPush(Isolate* isolate); 196 static Callable ArrayPush(Isolate* isolate);
194 static Callable FunctionPrototypeBind(Isolate* isolate); 197 static Callable FunctionPrototypeBind(Isolate* isolate);
195 static Callable PromiseHandleReject(Isolate* isolate); 198 static Callable PromiseHandleReject(Isolate* isolate);
196 }; 199 };
197 200
198 } // namespace internal 201 } // namespace internal
199 } // namespace v8 202 } // namespace v8
200 203
201 #endif // V8_CODE_FACTORY_H_ 204 #endif // V8_CODE_FACTORY_H_
OLDNEW
« no previous file with comments | « src/builtins/builtins-string.cc ('k') | src/code-factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698