OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |