| Index: src/arm/code-stubs-arm.cc
|
| diff --git a/src/arm/code-stubs-arm.cc b/src/arm/code-stubs-arm.cc
|
| index be876b6eee89c27378fcd2f79826bd0ad364a75a..5b06fa03bd3d9dd8ee7573fb3ca814a3093fb5b8 100644
|
| --- a/src/arm/code-stubs-arm.cc
|
| +++ b/src/arm/code-stubs-arm.cc
|
| @@ -86,6 +86,11 @@ void FastCloneShallowArrayStub::InitializeInterfaceDescriptor(
|
| static Register registers[] = { r3, r2, r1 };
|
| descriptor->register_param_count_ = 3;
|
| descriptor->register_params_ = registers;
|
| + static Representation representations[] = {
|
| + Representation::Tagged(),
|
| + Representation::Smi(),
|
| + Representation::Tagged() };
|
| + descriptor->register_param_representations_ = representations;
|
| descriptor->deoptimization_handler_ =
|
| Runtime::FunctionForId(
|
| Runtime::kHiddenCreateArrayLiteralStubBailout)->entry;
|
| @@ -242,6 +247,11 @@ static void InitializeArrayConstructorDescriptor(
|
| descriptor->stack_parameter_count_ = r0;
|
| descriptor->register_param_count_ = 3;
|
| descriptor->register_params_ = registers_variable_args;
|
| + static Representation representations[] = {
|
| + Representation::Tagged(),
|
| + Representation::Tagged(),
|
| + Representation::Integer32() };
|
| + descriptor->register_param_representations_ = representations;
|
| }
|
|
|
| descriptor->hint_stack_parameter_count_ = constant_stack_parameter_count;
|
| @@ -270,6 +280,10 @@ static void InitializeInternalArrayConstructorDescriptor(
|
| descriptor->stack_parameter_count_ = r0;
|
| descriptor->register_param_count_ = 2;
|
| descriptor->register_params_ = registers_variable_args;
|
| + static Representation representations[] = {
|
| + Representation::Tagged(),
|
| + Representation::Integer32() };
|
| + descriptor->register_param_representations_ = representations;
|
| }
|
|
|
| descriptor->hint_stack_parameter_count_ = constant_stack_parameter_count;
|
|
|