| 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 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 TFJ(PromiseConstructor, 1) \ | 629 TFJ(PromiseConstructor, 1) \ |
| 630 TFJ(PromiseInternalConstructor, 1) \ | 630 TFJ(PromiseInternalConstructor, 1) \ |
| 631 TFJ(IsPromise, 1) \ | 631 TFJ(IsPromise, 1) \ |
| 632 TFJ(PromiseResolveClosure, 1) \ | 632 TFJ(PromiseResolveClosure, 1) \ |
| 633 TFJ(PromiseRejectClosure, 1) \ | 633 TFJ(PromiseRejectClosure, 1) \ |
| 634 TFJ(PromiseThen, 2) \ | 634 TFJ(PromiseThen, 2) \ |
| 635 TFJ(PromiseCatch, 1) \ | 635 TFJ(PromiseCatch, 1) \ |
| 636 TFJ(PerformPromiseThen, 4) \ | 636 TFJ(PerformPromiseThen, 4) \ |
| 637 TFJ(ResolvePromise, 2) \ | 637 TFJ(ResolvePromise, 2) \ |
| 638 TFS(PromiseHandleReject, BUILTIN, kNoExtraICState, PromiseHandleReject) \ | 638 TFS(PromiseHandleReject, BUILTIN, kNoExtraICState, PromiseHandleReject) \ |
| 639 TFJ(PromiseHandle, 6) \ | 639 TFJ(PromiseHandle, 5) \ |
| 640 TFJ(PromiseResolve, 1) \ | 640 TFJ(PromiseResolve, 1) \ |
| 641 TFJ(PromiseReject, 1) \ | 641 TFJ(PromiseReject, 1) \ |
| 642 \ | 642 \ |
| 643 /* Proxy */ \ | 643 /* Proxy */ \ |
| 644 CPP(ProxyConstructor) \ | 644 CPP(ProxyConstructor) \ |
| 645 CPP(ProxyConstructor_ConstructStub) \ | 645 CPP(ProxyConstructor_ConstructStub) \ |
| 646 \ | 646 \ |
| 647 /* Reflect */ \ | 647 /* Reflect */ \ |
| 648 ASM(ReflectApply) \ | 648 ASM(ReflectApply) \ |
| 649 ASM(ReflectConstruct) \ | 649 ASM(ReflectConstruct) \ |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 | 917 |
| 918 friend class Isolate; | 918 friend class Isolate; |
| 919 | 919 |
| 920 DISALLOW_COPY_AND_ASSIGN(Builtins); | 920 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 921 }; | 921 }; |
| 922 | 922 |
| 923 } // namespace internal | 923 } // namespace internal |
| 924 } // namespace v8 | 924 } // namespace v8 |
| 925 | 925 |
| 926 #endif // V8_BUILTINS_BUILTINS_H_ | 926 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |