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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
568 TFJ(PromiseConstructor, 1) \ | 568 TFJ(PromiseConstructor, 1) \ |
569 TFJ(PromiseInternalConstructor, 0) \ | 569 TFJ(PromiseInternalConstructor, 0) \ |
570 TFJ(IsPromise, 1) \ | 570 TFJ(IsPromise, 1) \ |
571 CPP(CreateResolvingFunctions) \ | 571 CPP(CreateResolvingFunctions) \ |
572 TFJ(PromiseResolveClosure, 1) \ | 572 TFJ(PromiseResolveClosure, 1) \ |
573 CPP(PromiseRejectClosure) \ | 573 CPP(PromiseRejectClosure) \ |
574 TFJ(PromiseThen, 2) \ | 574 TFJ(PromiseThen, 2) \ |
575 TFJ(PromiseCreateAndSet, 2) \ | 575 TFJ(PromiseCreateAndSet, 2) \ |
576 TFJ(PerformPromiseThen, 4) \ | 576 TFJ(PerformPromiseThen, 4) \ |
577 TFJ(ResolvePromise, 2) \ | 577 TFJ(ResolvePromise, 2) \ |
| 578 TFS(PromiseHandleReject, BUILTIN, kNoExtraICState, PromiseHandleReject) \ |
| 579 TFJ(PromiseHandle, 3) \ |
578 \ | 580 \ |
579 /* Proxy */ \ | 581 /* Proxy */ \ |
580 CPP(ProxyConstructor) \ | 582 CPP(ProxyConstructor) \ |
581 CPP(ProxyConstructor_ConstructStub) \ | 583 CPP(ProxyConstructor_ConstructStub) \ |
582 \ | 584 \ |
583 /* Reflect */ \ | 585 /* Reflect */ \ |
584 ASM(ReflectApply) \ | 586 ASM(ReflectApply) \ |
585 ASM(ReflectConstruct) \ | 587 ASM(ReflectConstruct) \ |
586 CPP(ReflectDefineProperty) \ | 588 CPP(ReflectDefineProperty) \ |
587 CPP(ReflectDeleteProperty) \ | 589 CPP(ReflectDeleteProperty) \ |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
854 | 856 |
855 friend class Isolate; | 857 friend class Isolate; |
856 | 858 |
857 DISALLOW_COPY_AND_ASSIGN(Builtins); | 859 DISALLOW_COPY_AND_ASSIGN(Builtins); |
858 }; | 860 }; |
859 | 861 |
860 } // namespace internal | 862 } // namespace internal |
861 } // namespace v8 | 863 } // namespace v8 |
862 | 864 |
863 #endif // V8_BUILTINS_BUILTINS_H_ | 865 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |