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