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

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

Issue 2630593004: [promises] Remove runtime call from fastpath in PromiseReject (Closed)
Patch Set: remove helper 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 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, 5) \ 639 TFJ(PromiseHandle, 5) \
640 TFJ(PromiseResolve, 1) \ 640 TFJ(PromiseResolve, 1) \
641 TFJ(PromiseReject, 1) \ 641 TFJ(PromiseReject, 1) \
642 TFJ(InternalPromiseReject, 3) \
642 \ 643 \
643 /* Proxy */ \ 644 /* Proxy */ \
644 CPP(ProxyConstructor) \ 645 CPP(ProxyConstructor) \
645 CPP(ProxyConstructor_ConstructStub) \ 646 CPP(ProxyConstructor_ConstructStub) \
646 \ 647 \
647 /* Reflect */ \ 648 /* Reflect */ \
648 ASM(ReflectApply) \ 649 ASM(ReflectApply) \
649 ASM(ReflectConstruct) \ 650 ASM(ReflectConstruct) \
650 CPP(ReflectDefineProperty) \ 651 CPP(ReflectDefineProperty) \
651 CPP(ReflectDeleteProperty) \ 652 CPP(ReflectDeleteProperty) \
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 918
918 friend class Isolate; 919 friend class Isolate;
919 920
920 DISALLOW_COPY_AND_ASSIGN(Builtins); 921 DISALLOW_COPY_AND_ASSIGN(Builtins);
921 }; 922 };
922 923
923 } // namespace internal 924 } // namespace internal
924 } // namespace v8 925 } // namespace v8
925 926
926 #endif // V8_BUILTINS_BUILTINS_H_ 927 #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