| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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) | 261 TFS_BUILTIN(NewRestParameterElements) |
| 262 TFS_BUILTIN(FastCloneRegExp) | 262 TFS_BUILTIN(FastCloneRegExp) |
| 263 TFS_BUILTIN(FastNewClosure) | 263 TFS_BUILTIN(FastNewClosure) |
| 264 TFS_BUILTIN(FastNewObject) | 264 TFS_BUILTIN(FastNewObject) |
| 265 TFS_BUILTIN(ForInFilter) | 265 TFS_BUILTIN(ForInFilter) |
| 266 TFS_BUILTIN(GetSuperConstructor) | 266 TFS_BUILTIN(GetSuperConstructor) |
| 267 TFS_BUILTIN(LoadIC_Uninitialized) |
| 267 TFS_BUILTIN(KeyedLoadIC_Megamorphic) | 268 TFS_BUILTIN(KeyedLoadIC_Megamorphic) |
| 268 TFS_BUILTIN(PromiseHandleReject) | 269 TFS_BUILTIN(PromiseHandleReject) |
| 269 TFS_BUILTIN(RegExpReplace) | 270 TFS_BUILTIN(RegExpReplace) |
| 270 TFS_BUILTIN(RegExpSplit) | 271 TFS_BUILTIN(RegExpSplit) |
| 271 TFS_BUILTIN(StringCharAt) | 272 TFS_BUILTIN(StringCharAt) |
| 272 TFS_BUILTIN(StringCharCodeAt) | 273 TFS_BUILTIN(StringCharCodeAt) |
| 273 TFS_BUILTIN(StringEqual) | 274 TFS_BUILTIN(StringEqual) |
| 274 TFS_BUILTIN(StringNotEqual) | 275 TFS_BUILTIN(StringNotEqual) |
| 275 TFS_BUILTIN(StringLessThan) | 276 TFS_BUILTIN(StringLessThan) |
| 276 TFS_BUILTIN(StringLessThanOrEqual) | 277 TFS_BUILTIN(StringLessThanOrEqual) |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 } | 501 } |
| 501 | 502 |
| 502 // static | 503 // static |
| 503 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) { | 504 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) { |
| 504 return Callable(isolate->builtins()->FunctionPrototypeBind(), | 505 return Callable(isolate->builtins()->FunctionPrototypeBind(), |
| 505 BuiltinDescriptor(isolate)); | 506 BuiltinDescriptor(isolate)); |
| 506 } | 507 } |
| 507 | 508 |
| 508 } // namespace internal | 509 } // namespace internal |
| 509 } // namespace v8 | 510 } // namespace v8 |
| OLD | NEW |