Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/builtins/builtins.h

Issue 2592933004: [promises] Move Promise.resolve to TF (Closed)
Patch Set: fix rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-promise.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
627 TFJ(IsPromise, 1) \ 627 TFJ(IsPromise, 1) \
628 TFJ(PromiseResolveClosure, 1) \ 628 TFJ(PromiseResolveClosure, 1) \
629 CPP(PromiseRejectClosure) \ 629 CPP(PromiseRejectClosure) \
630 TFJ(PromiseThen, 2) \ 630 TFJ(PromiseThen, 2) \
631 TFJ(PromiseCatch, 1) \ 631 TFJ(PromiseCatch, 1) \
632 TFJ(PromiseCreateAndSet, 2) \ 632 TFJ(PromiseCreateAndSet, 2) \
633 TFJ(PerformPromiseThen, 4) \ 633 TFJ(PerformPromiseThen, 4) \
634 TFJ(ResolvePromise, 2) \ 634 TFJ(ResolvePromise, 2) \
635 TFS(PromiseHandleReject, BUILTIN, kNoExtraICState, PromiseHandleReject) \ 635 TFS(PromiseHandleReject, BUILTIN, kNoExtraICState, PromiseHandleReject) \
636 TFJ(PromiseHandle, 6) \ 636 TFJ(PromiseHandle, 6) \
637 TFJ(PromiseResolve, 1) \
637 \ 638 \
638 /* Proxy */ \ 639 /* Proxy */ \
639 CPP(ProxyConstructor) \ 640 CPP(ProxyConstructor) \
640 CPP(ProxyConstructor_ConstructStub) \ 641 CPP(ProxyConstructor_ConstructStub) \
641 \ 642 \
642 /* Reflect */ \ 643 /* Reflect */ \
643 ASM(ReflectApply) \ 644 ASM(ReflectApply) \
644 ASM(ReflectConstruct) \ 645 ASM(ReflectConstruct) \
645 CPP(ReflectDefineProperty) \ 646 CPP(ReflectDefineProperty) \
646 CPP(ReflectDeleteProperty) \ 647 CPP(ReflectDeleteProperty) \
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
912 913
913 friend class Isolate; 914 friend class Isolate;
914 915
915 DISALLOW_COPY_AND_ASSIGN(Builtins); 916 DISALLOW_COPY_AND_ASSIGN(Builtins);
916 }; 917 };
917 918
918 } // namespace internal 919 } // namespace internal
919 } // namespace v8 920 } // namespace v8
920 921
921 #endif // V8_BUILTINS_BUILTINS_H_ 922 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-promise.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698