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

Unified Diff: src/code-stubs.h

Issue 697603002: Optimized nodeType dom binding by removing HandleScope and the preparation of ordinary c function c… (Closed) Base URL: https://chromium.googlesource.com/external/v8.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/api.cc ('k') | src/ic/x64/handler-compiler-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.h
diff --git a/src/code-stubs.h b/src/code-stubs.h
index e8b7c8335c2282df3ffff6ff405fa31027987231..0d67afe82881b488f09af40f6e726484c1e516cc 100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -25,6 +25,7 @@ namespace internal {
V(BinaryOpICWithAllocationSite) \
V(CallApiFunction) \
V(CallApiGetter) \
+ V(CallFastApiGetter) \
V(CallConstruct) \
V(CallFunction) \
V(CallIC) \
@@ -1165,6 +1166,14 @@ class CallApiGetterStub : public PlatformCodeStub {
DEFINE_PLATFORM_CODE_STUB(CallApiGetter, PlatformCodeStub);
};
+class CallFastApiGetterStub : public CallApiGetterStub {
+ public:
+ explicit CallFastApiGetterStub(Isolate* isolate)
+ : CallApiGetterStub(isolate) {}
+
+ DEFINE_CALL_INTERFACE_DESCRIPTOR(ApiGetter);
+ DEFINE_PLATFORM_CODE_STUB(CallFastApiGetter, CallApiGetterStub);
+};
class BinaryOpICStub : public HydrogenCodeStub {
public:
« no previous file with comments | « src/api.cc ('k') | src/ic/x64/handler-compiler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698