| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 #ifndef V8_BUILTINS_BUILTINS_H_ | 5 #ifndef V8_BUILTINS_BUILTINS_H_ |
| 6 #define V8_BUILTINS_BUILTINS_H_ | 6 #define V8_BUILTINS_BUILTINS_H_ |
| 7 | 7 |
| 8 #include "src/base/flags.h" | 8 #include "src/base/flags.h" |
| 9 #include "src/handles.h" | 9 #include "src/handles.h" |
| 10 | 10 |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 TFJ(IsPromise, 1) \ | 597 TFJ(IsPromise, 1) \ |
| 598 TFJ(CreateResolvingFunctions, 2) \ | 598 TFJ(CreateResolvingFunctions, 2) \ |
| 599 TFJ(PromiseResolveClosure, 1) \ | 599 TFJ(PromiseResolveClosure, 1) \ |
| 600 CPP(PromiseRejectClosure) \ | 600 CPP(PromiseRejectClosure) \ |
| 601 TFJ(PromiseThen, 2) \ | 601 TFJ(PromiseThen, 2) \ |
| 602 TFJ(PromiseCatch, 1) \ | 602 TFJ(PromiseCatch, 1) \ |
| 603 TFJ(PromiseCreateAndSet, 2) \ | 603 TFJ(PromiseCreateAndSet, 2) \ |
| 604 TFJ(PerformPromiseThen, 4) \ | 604 TFJ(PerformPromiseThen, 4) \ |
| 605 TFJ(ResolvePromise, 2) \ | 605 TFJ(ResolvePromise, 2) \ |
| 606 TFS(PromiseHandleReject, BUILTIN, kNoExtraICState, PromiseHandleReject) \ | 606 TFS(PromiseHandleReject, BUILTIN, kNoExtraICState, PromiseHandleReject) \ |
| 607 TFJ(PromiseHandle, 4) \ | 607 TFJ(PromiseHandle, 6) \ |
| 608 \ | 608 \ |
| 609 /* Proxy */ \ | 609 /* Proxy */ \ |
| 610 CPP(ProxyConstructor) \ | 610 CPP(ProxyConstructor) \ |
| 611 CPP(ProxyConstructor_ConstructStub) \ | 611 CPP(ProxyConstructor_ConstructStub) \ |
| 612 \ | 612 \ |
| 613 /* Reflect */ \ | 613 /* Reflect */ \ |
| 614 ASM(ReflectApply) \ | 614 ASM(ReflectApply) \ |
| 615 ASM(ReflectConstruct) \ | 615 ASM(ReflectConstruct) \ |
| 616 CPP(ReflectDefineProperty) \ | 616 CPP(ReflectDefineProperty) \ |
| 617 CPP(ReflectDeleteProperty) \ | 617 CPP(ReflectDeleteProperty) \ |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 | 883 |
| 884 friend class Isolate; | 884 friend class Isolate; |
| 885 | 885 |
| 886 DISALLOW_COPY_AND_ASSIGN(Builtins); | 886 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 887 }; | 887 }; |
| 888 | 888 |
| 889 } // namespace internal | 889 } // namespace internal |
| 890 } // namespace v8 | 890 } // namespace v8 |
| 891 | 891 |
| 892 #endif // V8_BUILTINS_BUILTINS_H_ | 892 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |