| Index: src/arm/interface-descriptors-arm.cc
|
| diff --git a/src/arm/interface-descriptors-arm.cc b/src/arm/interface-descriptors-arm.cc
|
| index aa49843bd05bc25021d0e3a756ffa324409b4059..23badf5e314d0b68f868f532323b71cb863fed35 100644
|
| --- a/src/arm/interface-descriptors-arm.cc
|
| +++ b/src/arm/interface-descriptors-arm.cc
|
| @@ -417,7 +417,7 @@ void MathRoundVariantCallFromOptimizedCodeDescriptor::
|
| }
|
|
|
|
|
| -void PushArgsAndCallDescriptor::InitializePlatformSpecific(
|
| +void InterpreterPushArgsAndCallDescriptor::InitializePlatformSpecific(
|
| CallInterfaceDescriptorData* data) {
|
| Register registers[] = {
|
| r0, // argument count (including receiver)
|
| @@ -427,6 +427,17 @@ void PushArgsAndCallDescriptor::InitializePlatformSpecific(
|
| data->InitializePlatformSpecific(arraysize(registers), registers);
|
| }
|
|
|
| +
|
| +void InterpreterCEntryDescriptor::InitializePlatformSpecific(
|
| + CallInterfaceDescriptorData* data) {
|
| + Register registers[] = {
|
| + r0, // argument count (argc)
|
| + r2, // address of first argument (argv)
|
| + r1 // the runtime function to call
|
| + };
|
| + data->InitializePlatformSpecific(arraysize(registers), registers);
|
| +}
|
| +
|
| } // namespace internal
|
| } // namespace v8
|
|
|
|
|