Index: src/arm64/interface-descriptors-arm64.cc |
diff --git a/src/arm64/interface-descriptors-arm64.cc b/src/arm64/interface-descriptors-arm64.cc |
index b6c957cb1fbf42323d5f7da8292c9a2ab272a1c8..009701025a7975da87f0ccbdd80a91acf96d2f59 100644 |
--- a/src/arm64/interface-descriptors-arm64.cc |
+++ b/src/arm64/interface-descriptors-arm64.cc |
@@ -152,6 +152,16 @@ void CallFunctionWithFeedbackDescriptor::Initialize( |
} |
+void CallFunctionWithFeedbackAndVectorDescriptor::Initialize( |
+ CallInterfaceDescriptorData* data) { |
+ Register registers[] = {cp, x1, x3, x2}; |
+ Representation representations[] = { |
+ Representation::Tagged(), Representation::Tagged(), Representation::Smi(), |
+ Representation::Tagged()}; |
+ data->Initialize(arraysize(registers), registers, representations); |
+} |
+ |
+ |
void CallConstructDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
// x0 : number of arguments |
// x1 : the function to call |