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 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 TFS(OrdinaryHasInstance, BUILTIN, kNoExtraICState, Compare) \ | 619 TFS(OrdinaryHasInstance, BUILTIN, kNoExtraICState, Compare) \ |
620 TFS(ForInFilter, BUILTIN, kNoExtraICState, ForInFilter) \ | 620 TFS(ForInFilter, BUILTIN, kNoExtraICState, ForInFilter) \ |
621 \ | 621 \ |
622 /* Promise */ \ | 622 /* Promise */ \ |
623 TFJ(PromiseGetCapabilitiesExecutor, 2) \ | 623 TFJ(PromiseGetCapabilitiesExecutor, 2) \ |
624 TFJ(NewPromiseCapability, 2) \ | 624 TFJ(NewPromiseCapability, 2) \ |
625 TFJ(PromiseConstructor, 1) \ | 625 TFJ(PromiseConstructor, 1) \ |
626 TFJ(PromiseInternalConstructor, 1) \ | 626 TFJ(PromiseInternalConstructor, 1) \ |
627 TFJ(IsPromise, 1) \ | 627 TFJ(IsPromise, 1) \ |
628 TFJ(PromiseResolveClosure, 1) \ | 628 TFJ(PromiseResolveClosure, 1) \ |
629 CPP(PromiseRejectClosure) \ | 629 TFJ(PromiseRejectClosure, 1) \ |
630 TFJ(PromiseThen, 2) \ | 630 TFJ(PromiseThen, 2) \ |
631 TFJ(PromiseCatch, 1) \ | 631 TFJ(PromiseCatch, 1) \ |
632 TFJ(PromiseCreateAndSet, 2) \ | |
633 TFJ(PerformPromiseThen, 4) \ | 632 TFJ(PerformPromiseThen, 4) \ |
634 TFJ(ResolvePromise, 2) \ | 633 TFJ(ResolvePromise, 2) \ |
635 TFS(PromiseHandleReject, BUILTIN, kNoExtraICState, PromiseHandleReject) \ | 634 TFS(PromiseHandleReject, BUILTIN, kNoExtraICState, PromiseHandleReject) \ |
636 TFJ(PromiseHandle, 6) \ | 635 TFJ(PromiseHandle, 6) \ |
637 TFJ(PromiseResolve, 1) \ | 636 TFJ(PromiseResolve, 1) \ |
| 637 TFJ(PromiseReject, 1) \ |
638 \ | 638 \ |
639 /* Proxy */ \ | 639 /* Proxy */ \ |
640 CPP(ProxyConstructor) \ | 640 CPP(ProxyConstructor) \ |
641 CPP(ProxyConstructor_ConstructStub) \ | 641 CPP(ProxyConstructor_ConstructStub) \ |
642 \ | 642 \ |
643 /* Reflect */ \ | 643 /* Reflect */ \ |
644 ASM(ReflectApply) \ | 644 ASM(ReflectApply) \ |
645 ASM(ReflectConstruct) \ | 645 ASM(ReflectConstruct) \ |
646 CPP(ReflectDefineProperty) \ | 646 CPP(ReflectDefineProperty) \ |
647 CPP(ReflectDeleteProperty) \ | 647 CPP(ReflectDeleteProperty) \ |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
913 | 913 |
914 friend class Isolate; | 914 friend class Isolate; |
915 | 915 |
916 DISALLOW_COPY_AND_ASSIGN(Builtins); | 916 DISALLOW_COPY_AND_ASSIGN(Builtins); |
917 }; | 917 }; |
918 | 918 |
919 } // namespace internal | 919 } // namespace internal |
920 } // namespace v8 | 920 } // namespace v8 |
921 | 921 |
922 #endif // V8_BUILTINS_BUILTINS_H_ | 922 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |