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

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

Issue 2692753004: [turbofan] escape analysis supports arguments object and rest elements (Closed)
Patch Set: replaced obscure for-loop 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 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 TFS_BUILTIN(ToNumber) 236 TFS_BUILTIN(ToNumber)
237 TFS_BUILTIN(ToObject) 237 TFS_BUILTIN(ToObject)
238 TFS_BUILTIN(ClassOf) 238 TFS_BUILTIN(ClassOf)
239 TFS_BUILTIN(Typeof) 239 TFS_BUILTIN(Typeof)
240 TFS_BUILTIN(InstanceOf) 240 TFS_BUILTIN(InstanceOf)
241 TFS_BUILTIN(OrdinaryHasInstance) 241 TFS_BUILTIN(OrdinaryHasInstance)
242 TFS_BUILTIN(CopyFastSmiOrObjectElements) 242 TFS_BUILTIN(CopyFastSmiOrObjectElements)
243 TFS_BUILTIN(GrowFastDoubleElements) 243 TFS_BUILTIN(GrowFastDoubleElements)
244 TFS_BUILTIN(GrowFastSmiOrObjectElements) 244 TFS_BUILTIN(GrowFastSmiOrObjectElements)
245 TFS_BUILTIN(NewUnmappedArgumentsElements) 245 TFS_BUILTIN(NewUnmappedArgumentsElements)
246 TFS_BUILTIN(NewRestParameterElements)
247 TFS_BUILTIN(FastCloneRegExp) 246 TFS_BUILTIN(FastCloneRegExp)
248 TFS_BUILTIN(FastNewClosure) 247 TFS_BUILTIN(FastNewClosure)
249 TFS_BUILTIN(FastNewObject) 248 TFS_BUILTIN(FastNewObject)
250 TFS_BUILTIN(ForInFilter) 249 TFS_BUILTIN(ForInFilter)
251 TFS_BUILTIN(GetSuperConstructor) 250 TFS_BUILTIN(GetSuperConstructor)
252 TFS_BUILTIN(KeyedLoadIC_Megamorphic) 251 TFS_BUILTIN(KeyedLoadIC_Megamorphic)
253 TFS_BUILTIN(PromiseHandleReject) 252 TFS_BUILTIN(PromiseHandleReject)
254 TFS_BUILTIN(RegExpReplace) 253 TFS_BUILTIN(RegExpReplace)
255 TFS_BUILTIN(RegExpSplit) 254 TFS_BUILTIN(RegExpSplit)
256 TFS_BUILTIN(StringCharAt) 255 TFS_BUILTIN(StringCharAt)
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 } 484 }
486 485
487 // static 486 // static
488 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) { 487 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) {
489 return Callable(isolate->builtins()->FunctionPrototypeBind(), 488 return Callable(isolate->builtins()->FunctionPrototypeBind(),
490 BuiltinDescriptor(isolate)); 489 BuiltinDescriptor(isolate));
491 } 490 }
492 491
493 } // namespace internal 492 } // namespace internal
494 } // namespace v8 493 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698