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

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

Issue 2567333002: [promises] port NewPromiseCapability to TF (Closed)
Patch Set: git rid of stuff that snuck into patch Created 3 years, 12 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
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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 CPP(ObjectPrototypeSetProto) \ 557 CPP(ObjectPrototypeSetProto) \
558 CPP(ObjectSeal) \ 558 CPP(ObjectSeal) \
559 CPP(ObjectValues) \ 559 CPP(ObjectValues) \
560 \ 560 \
561 TFS(HasProperty, BUILTIN, kNoExtraICState, HasProperty) \ 561 TFS(HasProperty, BUILTIN, kNoExtraICState, HasProperty) \
562 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare) \ 562 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare) \
563 TFS(OrdinaryHasInstance, BUILTIN, kNoExtraICState, Compare) \ 563 TFS(OrdinaryHasInstance, BUILTIN, kNoExtraICState, Compare) \
564 TFS(ForInFilter, BUILTIN, kNoExtraICState, ForInFilter) \ 564 TFS(ForInFilter, BUILTIN, kNoExtraICState, ForInFilter) \
565 \ 565 \
566 /* Promise */ \ 566 /* Promise */ \
567 TFJ(PromiseGetCapabilitiesExecutor, 2) \
568 TFJ(NewPromiseCapability, 2) \
569 TFJ(NewInternalPromiseCapability, 1) \
567 TFJ(PromiseConstructor, 1) \ 570 TFJ(PromiseConstructor, 1) \
568 TFJ(PromiseInternalConstructor, 1) \ 571 TFJ(PromiseInternalConstructor, 1) \
569 TFJ(IsPromise, 1) \ 572 TFJ(IsPromise, 1) \
570 TFJ(CreateResolvingFunctions, 2) \
571 TFJ(PromiseResolveClosure, 1) \ 573 TFJ(PromiseResolveClosure, 1) \
572 CPP(PromiseRejectClosure) \ 574 CPP(PromiseRejectClosure) \
573 TFJ(PromiseThen, 2) \ 575 TFJ(PromiseThen, 2) \
574 TFJ(PromiseCatch, 1) \ 576 TFJ(PromiseCatch, 1) \
575 TFJ(PromiseCreateAndSet, 2) \ 577 TFJ(PromiseCreateAndSet, 2) \
576 TFJ(PerformPromiseThen, 4) \ 578 TFJ(PerformPromiseThen, 4) \
577 TFJ(ResolvePromise, 2) \ 579 TFJ(ResolvePromise, 2) \
578 TFS(PromiseHandleReject, BUILTIN, kNoExtraICState, PromiseHandleReject) \ 580 TFS(PromiseHandleReject, BUILTIN, kNoExtraICState, PromiseHandleReject) \
579 TFJ(PromiseHandle, 4) \ 581 TFJ(PromiseHandle, 4) \
580 \ 582 \
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 854
853 friend class Isolate; 855 friend class Isolate;
854 856
855 DISALLOW_COPY_AND_ASSIGN(Builtins); 857 DISALLOW_COPY_AND_ASSIGN(Builtins);
856 }; 858 };
857 859
858 } // namespace internal 860 } // namespace internal
859 } // namespace v8 861 } // namespace v8
860 862
861 #endif // V8_BUILTINS_BUILTINS_H_ 863 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698