| Index: src/arm/lithium-codegen-arm.h
|
| diff --git a/src/arm/lithium-codegen-arm.h b/src/arm/lithium-codegen-arm.h
|
| index aeba5eaaa7aa17e7b4661328d9636706247a2fa0..cecf152eed1aaa8bab1447e746e52f5a2ed336cd 100644
|
| --- a/src/arm/lithium-codegen-arm.h
|
| +++ b/src/arm/lithium-codegen-arm.h
|
| @@ -171,7 +171,10 @@ class LCodeGen BASE_EMBEDDED {
|
| int additional_offset);
|
|
|
| // Emit frame translation commands for an environment.
|
| - void WriteTranslation(LEnvironment* environment, Translation* translation);
|
| + void WriteTranslation(LEnvironment* environment,
|
| + Translation* translation,
|
| + int* arguments_index,
|
| + int* arguments_count);
|
|
|
| // Declare methods that deal with the individual node types.
|
| #define DECLARE_DO(type) void Do##type(L##type* node);
|
| @@ -290,7 +293,10 @@ class LCodeGen BASE_EMBEDDED {
|
| void AddToTranslation(Translation* translation,
|
| LOperand* op,
|
| bool is_tagged,
|
| - bool is_uint32);
|
| + bool is_uint32,
|
| + bool arguments_known,
|
| + int arguments_index,
|
| + int arguments_count);
|
| void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code);
|
| void PopulateDeoptimizationData(Handle<Code> code);
|
| int DefineDeoptimizationLiteral(Handle<Object> literal);
|
|
|