Index: src/interface-descriptors.h |
diff --git a/src/interface-descriptors.h b/src/interface-descriptors.h |
index 2de7469758a7e93594b92492feb90943b140ffe2..8308d83a27688635556e940098dd9a66510589b3 100644 |
--- a/src/interface-descriptors.h |
+++ b/src/interface-descriptors.h |
@@ -30,6 +30,7 @@ class PlatformInterfaceDescriptor; |
V(CreateAllocationSite) \ |
V(CallFunction) \ |
V(CallFunctionWithFeedback) \ |
+ V(CallFunctionWithFeedbackAndVector) \ |
V(CallConstruct) \ |
V(RegExpConstructResult) \ |
V(TransitionElementsKind) \ |
@@ -330,6 +331,14 @@ class CallFunctionWithFeedbackDescriptor : public CallInterfaceDescriptor { |
}; |
+class CallFunctionWithFeedbackAndVectorDescriptor |
+ : public CallInterfaceDescriptor { |
+ public: |
+ DECLARE_DESCRIPTOR(CallFunctionWithFeedbackAndVectorDescriptor, |
+ CallInterfaceDescriptor) |
+}; |
+ |
+ |
class CallConstructDescriptor : public CallInterfaceDescriptor { |
public: |
DECLARE_DESCRIPTOR(CallConstructDescriptor, CallInterfaceDescriptor) |