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

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

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/code-factory.h ('k') | src/interface-descriptors.h » ('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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #include "src/code-factory.h" 5 #include "src/code-factory.h"
6 6
7 #include "src/bootstrapper.h" 7 #include "src/bootstrapper.h"
8 #include "src/ic/ic.h" 8 #include "src/ic/ic.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 TFS_BUILTIN(GrowFastSmiOrObjectElements) 244 TFS_BUILTIN(GrowFastSmiOrObjectElements)
245 TFS_BUILTIN(NewUnmappedArgumentsElements) 245 TFS_BUILTIN(NewUnmappedArgumentsElements)
246 TFS_BUILTIN(NewRestParameterElements) 246 TFS_BUILTIN(NewRestParameterElements)
247 TFS_BUILTIN(FastCloneRegExp) 247 TFS_BUILTIN(FastCloneRegExp)
248 TFS_BUILTIN(FastNewClosure) 248 TFS_BUILTIN(FastNewClosure)
249 TFS_BUILTIN(FastNewObject) 249 TFS_BUILTIN(FastNewObject)
250 TFS_BUILTIN(ForInFilter) 250 TFS_BUILTIN(ForInFilter)
251 TFS_BUILTIN(GetSuperConstructor) 251 TFS_BUILTIN(GetSuperConstructor)
252 TFS_BUILTIN(KeyedLoadIC_Megamorphic) 252 TFS_BUILTIN(KeyedLoadIC_Megamorphic)
253 TFS_BUILTIN(PromiseHandleReject) 253 TFS_BUILTIN(PromiseHandleReject)
254 TFS_BUILTIN(RegExpReplace)
255 TFS_BUILTIN(RegExpSplit)
254 TFS_BUILTIN(StringCharAt) 256 TFS_BUILTIN(StringCharAt)
255 TFS_BUILTIN(StringCharCodeAt) 257 TFS_BUILTIN(StringCharCodeAt)
256 TFS_BUILTIN(StringEqual) 258 TFS_BUILTIN(StringEqual)
257 TFS_BUILTIN(StringNotEqual) 259 TFS_BUILTIN(StringNotEqual)
258 TFS_BUILTIN(StringLessThan) 260 TFS_BUILTIN(StringLessThan)
259 TFS_BUILTIN(StringLessThanOrEqual) 261 TFS_BUILTIN(StringLessThanOrEqual)
260 TFS_BUILTIN(StringGreaterThan) 262 TFS_BUILTIN(StringGreaterThan)
261 TFS_BUILTIN(StringGreaterThanOrEqual) 263 TFS_BUILTIN(StringGreaterThanOrEqual)
262 264
263 #undef TFS_BUILTIN 265 #undef TFS_BUILTIN
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 } 477 }
476 478
477 // static 479 // static
478 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) { 480 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) {
479 return Callable(isolate->builtins()->FunctionPrototypeBind(), 481 return Callable(isolate->builtins()->FunctionPrototypeBind(),
480 BuiltinDescriptor(isolate)); 482 BuiltinDescriptor(isolate));
481 } 483 }
482 484
483 } // namespace internal 485 } // namespace internal
484 } // namespace v8 486 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-factory.h ('k') | src/interface-descriptors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698