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

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

Issue 2541283002: [promises] Port ResolvePromise to TF (Closed)
Patch Set: fix nits Created 4 years 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 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 TFS(HasProperty, BUILTIN, kNoExtraICState, HasProperty) \ 558 TFS(HasProperty, BUILTIN, kNoExtraICState, HasProperty) \
559 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare) \ 559 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare) \
560 TFS(OrdinaryHasInstance, BUILTIN, kNoExtraICState, Compare) \ 560 TFS(OrdinaryHasInstance, BUILTIN, kNoExtraICState, Compare) \
561 TFS(ForInFilter, BUILTIN, kNoExtraICState, ForInFilter) \ 561 TFS(ForInFilter, BUILTIN, kNoExtraICState, ForInFilter) \
562 \ 562 \
563 /* Promise */ \ 563 /* Promise */ \
564 TFJ(PromiseConstructor, 1) \ 564 TFJ(PromiseConstructor, 1) \
565 TFJ(PromiseInternalConstructor, 0) \ 565 TFJ(PromiseInternalConstructor, 0) \
566 TFJ(IsPromise, 1) \ 566 TFJ(IsPromise, 1) \
567 CPP(CreateResolvingFunctions) \ 567 CPP(CreateResolvingFunctions) \
568 CPP(PromiseResolveClosure) \ 568 TFJ(PromiseResolveClosure, 1) \
569 CPP(PromiseRejectClosure) \ 569 CPP(PromiseRejectClosure) \
570 TFJ(PromiseThen, 2) \ 570 TFJ(PromiseThen, 2) \
571 TFJ(PromiseCreateAndSet, 2) \ 571 TFJ(PromiseCreateAndSet, 2) \
572 TFJ(PerformPromiseThen, 4) \ 572 TFJ(PerformPromiseThen, 4) \
573 TFJ(ResolvePromise, 2) \
573 \ 574 \
574 /* Proxy */ \ 575 /* Proxy */ \
575 CPP(ProxyConstructor) \ 576 CPP(ProxyConstructor) \
576 CPP(ProxyConstructor_ConstructStub) \ 577 CPP(ProxyConstructor_ConstructStub) \
577 \ 578 \
578 /* Reflect */ \ 579 /* Reflect */ \
579 ASM(ReflectApply) \ 580 ASM(ReflectApply) \
580 ASM(ReflectConstruct) \ 581 ASM(ReflectConstruct) \
581 CPP(ReflectDefineProperty) \ 582 CPP(ReflectDefineProperty) \
582 CPP(ReflectDeleteProperty) \ 583 CPP(ReflectDeleteProperty) \
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
849 850
850 friend class Isolate; 851 friend class Isolate;
851 852
852 DISALLOW_COPY_AND_ASSIGN(Builtins); 853 DISALLOW_COPY_AND_ASSIGN(Builtins);
853 }; 854 };
854 855
855 } // namespace internal 856 } // namespace internal
856 } // namespace v8 857 } // namespace v8
857 858
858 #endif // V8_BUILTINS_BUILTINS_H_ 859 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-promise.cc » ('j') | src/js/promise.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698