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 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 |
OLD | NEW |