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

Unified Diff: src/interface-descriptors.h

Issue 1688283003: [Interpreter] Implements calls through CallICStub in the interpreter. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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
Index: src/interface-descriptors.h
diff --git a/src/interface-descriptors.h b/src/interface-descriptors.h
index d6d1e0e28ffedff7b2b61a20223c43bdb66f598c..624946a580dfa701df2fa46c79a42fa9ef89b206 100644
--- a/src/interface-descriptors.h
+++ b/src/interface-descriptors.h
@@ -26,7 +26,7 @@ class PlatformInterfaceDescriptor;
V(FastNewClosure) \
V(FastNewContext) \
V(FastNewRestParameter) \
- V(FastNewStrictArguments) \
+ V(FastNewStrictArguments) \
V(ToNumber) \
V(ToLength) \
V(ToString) \
@@ -78,6 +78,7 @@ class PlatformInterfaceDescriptor;
V(GrowArrayElements) \
V(InterpreterDispatch) \
V(InterpreterPushArgsAndCall) \
+ V(InterpreterPushArgsAndCallIC) \
V(InterpreterPushArgsAndConstruct) \
V(InterpreterCEntry)
@@ -763,13 +764,18 @@ class InterpreterDispatchDescriptor : public CallInterfaceDescriptor {
static const int kContextParameter = 5;
};
+class InterpreterPushArgsAndCallICDescriptor : public CallInterfaceDescriptor {
+ public:
+ DECLARE_DESCRIPTOR(InterpreterPushArgsAndCallICDescriptor,
+ CallInterfaceDescriptor)
+};
+
class InterpreterPushArgsAndCallDescriptor : public CallInterfaceDescriptor {
public:
DECLARE_DESCRIPTOR(InterpreterPushArgsAndCallDescriptor,
CallInterfaceDescriptor)
};
-
class InterpreterPushArgsAndConstructDescriptor
: public CallInterfaceDescriptor {
public:

Powered by Google App Engine
This is Rietveld 408576698