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

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

Issue 2692753004: [turbofan] escape analysis supports arguments object and rest elements (Closed)
Patch Set: handle the case where Deoptimizer::function_ is a Smi Created 3 years, 9 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/compiler/code-generator.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 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 #include "src/objects-inl.h" 9 #include "src/objects-inl.h"
10 10
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 TFS_BUILTIN(ToNumber) 251 TFS_BUILTIN(ToNumber)
252 TFS_BUILTIN(ToObject) 252 TFS_BUILTIN(ToObject)
253 TFS_BUILTIN(ClassOf) 253 TFS_BUILTIN(ClassOf)
254 TFS_BUILTIN(Typeof) 254 TFS_BUILTIN(Typeof)
255 TFS_BUILTIN(InstanceOf) 255 TFS_BUILTIN(InstanceOf)
256 TFS_BUILTIN(OrdinaryHasInstance) 256 TFS_BUILTIN(OrdinaryHasInstance)
257 TFS_BUILTIN(CopyFastSmiOrObjectElements) 257 TFS_BUILTIN(CopyFastSmiOrObjectElements)
258 TFS_BUILTIN(GrowFastDoubleElements) 258 TFS_BUILTIN(GrowFastDoubleElements)
259 TFS_BUILTIN(GrowFastSmiOrObjectElements) 259 TFS_BUILTIN(GrowFastSmiOrObjectElements)
260 TFS_BUILTIN(NewUnmappedArgumentsElements) 260 TFS_BUILTIN(NewUnmappedArgumentsElements)
261 TFS_BUILTIN(NewRestParameterElements)
262 TFS_BUILTIN(FastCloneRegExp) 261 TFS_BUILTIN(FastCloneRegExp)
263 TFS_BUILTIN(FastNewClosure) 262 TFS_BUILTIN(FastNewClosure)
264 TFS_BUILTIN(FastNewObject) 263 TFS_BUILTIN(FastNewObject)
265 TFS_BUILTIN(ForInFilter) 264 TFS_BUILTIN(ForInFilter)
266 TFS_BUILTIN(GetSuperConstructor) 265 TFS_BUILTIN(GetSuperConstructor)
267 TFS_BUILTIN(KeyedLoadIC_Megamorphic) 266 TFS_BUILTIN(KeyedLoadIC_Megamorphic)
268 TFS_BUILTIN(PromiseHandleReject) 267 TFS_BUILTIN(PromiseHandleReject)
269 TFS_BUILTIN(RegExpReplace) 268 TFS_BUILTIN(RegExpReplace)
270 TFS_BUILTIN(RegExpSplit) 269 TFS_BUILTIN(RegExpSplit)
271 TFS_BUILTIN(StringCharAt) 270 TFS_BUILTIN(StringCharAt)
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 } 499 }
501 500
502 // static 501 // static
503 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) { 502 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) {
504 return Callable(isolate->builtins()->FunctionPrototypeBind(), 503 return Callable(isolate->builtins()->FunctionPrototypeBind(),
505 BuiltinDescriptor(isolate)); 504 BuiltinDescriptor(isolate));
506 } 505 }
507 506
508 } // namespace internal 507 } // namespace internal
509 } // namespace v8 508 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-factory.h ('k') | src/compiler/code-generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698