| Index: src/interface-descriptors.cc
|
| diff --git a/src/interface-descriptors.cc b/src/interface-descriptors.cc
|
| index c7288c0d8cfe1c82bc096a73e0e91bb4f55a118f..9ee4269d3e711bd8ef775603a024c9237f29cb38 100644
|
| --- a/src/interface-descriptors.cc
|
| +++ b/src/interface-descriptors.cc
|
| @@ -330,6 +330,15 @@ void GrowArrayElementsDescriptor::InitializePlatformSpecific(
|
| data->InitializePlatformSpecific(arraysize(registers), registers);
|
| }
|
|
|
| +FunctionType* FastArrayPushDescriptor::BuildCallInterfaceDescriptorFunctionType(
|
| + Isolate* isolate, int paramater_count) {
|
| + Zone* zone = isolate->interface_descriptor_zone();
|
| + FunctionType* function =
|
| + Type::Function(AnyTagged(zone), AnyTagged(zone), 1, zone)->AsFunction();
|
| + function->InitParameter(0, UntaggedIntegral32(zone)); // actual #arguments
|
| + return function;
|
| +}
|
| +
|
| FunctionType*
|
| FastCloneRegExpDescriptor::BuildCallInterfaceDescriptorFunctionType(
|
| Isolate* isolate, int paramater_count) {
|
|
|