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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 TFS_BUILTIN(ShiftRight) | 245 TFS_BUILTIN(ShiftRight) |
246 TFS_BUILTIN(ShiftRightLogical) | 246 TFS_BUILTIN(ShiftRightLogical) |
247 TFS_BUILTIN(LessThan) | 247 TFS_BUILTIN(LessThan) |
248 TFS_BUILTIN(LessThanOrEqual) | 248 TFS_BUILTIN(LessThanOrEqual) |
249 TFS_BUILTIN(GreaterThan) | 249 TFS_BUILTIN(GreaterThan) |
250 TFS_BUILTIN(GreaterThanOrEqual) | 250 TFS_BUILTIN(GreaterThanOrEqual) |
251 TFS_BUILTIN(Equal) | 251 TFS_BUILTIN(Equal) |
252 TFS_BUILTIN(NotEqual) | 252 TFS_BUILTIN(NotEqual) |
253 TFS_BUILTIN(StrictEqual) | 253 TFS_BUILTIN(StrictEqual) |
254 TFS_BUILTIN(StrictNotEqual) | 254 TFS_BUILTIN(StrictNotEqual) |
| 255 TFS_BUILTIN(CreateIterResultObject) |
255 TFS_BUILTIN(HasProperty) | 256 TFS_BUILTIN(HasProperty) |
256 TFS_BUILTIN(ToInteger) | 257 TFS_BUILTIN(ToInteger) |
257 TFS_BUILTIN(ToLength) | 258 TFS_BUILTIN(ToLength) |
258 TFS_BUILTIN(ToObject) | 259 TFS_BUILTIN(ToObject) |
259 TFS_BUILTIN(Typeof) | 260 TFS_BUILTIN(Typeof) |
260 TFS_BUILTIN(InstanceOf) | 261 TFS_BUILTIN(InstanceOf) |
261 TFS_BUILTIN(OrdinaryHasInstance) | 262 TFS_BUILTIN(OrdinaryHasInstance) |
262 TFS_BUILTIN(ForInFilter) | 263 TFS_BUILTIN(ForInFilter) |
263 TFS_BUILTIN(NewUnmappedArgumentsElements) | 264 TFS_BUILTIN(NewUnmappedArgumentsElements) |
264 TFS_BUILTIN(NewRestParameterElements) | 265 TFS_BUILTIN(NewRestParameterElements) |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 } | 514 } |
514 | 515 |
515 // static | 516 // static |
516 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) { | 517 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) { |
517 return Callable(isolate->builtins()->FunctionPrototypeBind(), | 518 return Callable(isolate->builtins()->FunctionPrototypeBind(), |
518 BuiltinDescriptor(isolate)); | 519 BuiltinDescriptor(isolate)); |
519 } | 520 } |
520 | 521 |
521 } // namespace internal | 522 } // namespace internal |
522 } // namespace v8 | 523 } // namespace v8 |
OLD | NEW |