| Index: src/arm/code-stubs-arm.cc
|
| diff --git a/src/arm/code-stubs-arm.cc b/src/arm/code-stubs-arm.cc
|
| index 6ab69b39947c43fc73aa1bfffdaf2f846f2e2a13..c1026fae96a5d410ed8e9ac53b71ea1bc78ec4a4 100644
|
| --- a/src/arm/code-stubs-arm.cc
|
| +++ b/src/arm/code-stubs-arm.cc
|
| @@ -417,6 +417,21 @@ void CallDescriptors::InitializeForIsolate(Isolate* isolate) {
|
| descriptor->param_representations_ = representations;
|
| descriptor->platform_specific_descriptor_ = &noInlineDescriptor;
|
| }
|
| + {
|
| + CallInterfaceDescriptor* descriptor =
|
| + isolate->call_descriptor(Isolate::CallHandler);
|
| + static Register registers[] = { cp, // context
|
| + r0, // receiver
|
| + };
|
| + static Representation representations[] = {
|
| + Representation::Tagged(), // context
|
| + Representation::Tagged(), // receiver
|
| + };
|
| + descriptor->register_param_count_ = 2;
|
| + descriptor->register_params_ = registers;
|
| + descriptor->param_representations_ = representations;
|
| + descriptor->platform_specific_descriptor_ = &default_descriptor;
|
| + }
|
| }
|
|
|
|
|
|
|