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

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

Issue 2647833004: [turbofan] Properly implement %_ClassOf intrinsic. (Closed)
Patch Set: Created 3 years, 11 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/code-stub-assembler.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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 TFS_BUILTIN(CreateIterResultObject) 228 TFS_BUILTIN(CreateIterResultObject)
229 TFS_BUILTIN(HasProperty) 229 TFS_BUILTIN(HasProperty)
230 TFS_BUILTIN(NonNumberToNumber) 230 TFS_BUILTIN(NonNumberToNumber)
231 TFS_BUILTIN(StringToNumber) 231 TFS_BUILTIN(StringToNumber)
232 TFS_BUILTIN(ToBoolean) 232 TFS_BUILTIN(ToBoolean)
233 TFS_BUILTIN(ToInteger) 233 TFS_BUILTIN(ToInteger)
234 TFS_BUILTIN(ToLength) 234 TFS_BUILTIN(ToLength)
235 TFS_BUILTIN(ToName) 235 TFS_BUILTIN(ToName)
236 TFS_BUILTIN(ToNumber) 236 TFS_BUILTIN(ToNumber)
237 TFS_BUILTIN(ToObject) 237 TFS_BUILTIN(ToObject)
238 TFS_BUILTIN(ClassOf)
238 TFS_BUILTIN(Typeof) 239 TFS_BUILTIN(Typeof)
239 TFS_BUILTIN(InstanceOf) 240 TFS_BUILTIN(InstanceOf)
240 TFS_BUILTIN(OrdinaryHasInstance) 241 TFS_BUILTIN(OrdinaryHasInstance)
241 TFS_BUILTIN(CopyFastSmiOrObjectElements) 242 TFS_BUILTIN(CopyFastSmiOrObjectElements)
242 TFS_BUILTIN(GrowFastDoubleElements) 243 TFS_BUILTIN(GrowFastDoubleElements)
243 TFS_BUILTIN(GrowFastSmiOrObjectElements) 244 TFS_BUILTIN(GrowFastSmiOrObjectElements)
244 TFS_BUILTIN(NewUnmappedArgumentsElements) 245 TFS_BUILTIN(NewUnmappedArgumentsElements)
245 TFS_BUILTIN(NewRestParameterElements) 246 TFS_BUILTIN(NewRestParameterElements)
246 TFS_BUILTIN(FastCloneRegExp) 247 TFS_BUILTIN(FastCloneRegExp)
247 TFS_BUILTIN(FastNewClosure) 248 TFS_BUILTIN(FastNewClosure)
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 } 439 }
439 440
440 // static 441 // static
441 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) { 442 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) {
442 return Callable(isolate->builtins()->FunctionPrototypeBind(), 443 return Callable(isolate->builtins()->FunctionPrototypeBind(),
443 BuiltinDescriptor(isolate)); 444 BuiltinDescriptor(isolate));
444 } 445 }
445 446
446 } // namespace internal 447 } // namespace internal
447 } // namespace v8 448 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-factory.h ('k') | src/code-stub-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698