| Index: src/mips64/lithium-codegen-mips64.h
|
| diff --git a/src/mips64/lithium-codegen-mips64.h b/src/mips64/lithium-codegen-mips64.h
|
| index cfb689fe1d869fd33068ca016c02c8f68ee44025..9457b9d53a57369232fc94bc6470660013a9106f 100644
|
| --- a/src/mips64/lithium-codegen-mips64.h
|
| +++ b/src/mips64/lithium-codegen-mips64.h
|
| @@ -229,13 +229,11 @@ class LCodeGen: public LCodeGenBase {
|
|
|
| void RegisterEnvironmentForDeoptimization(LEnvironment* environment,
|
| Safepoint::DeoptMode mode);
|
| - void DeoptimizeIf(Condition condition,
|
| - LEnvironment* environment,
|
| + void DeoptimizeIf(Condition condition, LInstruction* instr,
|
| Deoptimizer::BailoutType bailout_type,
|
| Register src1 = zero_reg,
|
| const Operand& src2 = Operand(zero_reg));
|
| - void DeoptimizeIf(Condition condition,
|
| - LEnvironment* environment,
|
| + void DeoptimizeIf(Condition condition, LInstruction* instr,
|
| Register src1 = zero_reg,
|
| const Operand& src2 = Operand(zero_reg));
|
|
|
| @@ -298,12 +296,8 @@ class LCodeGen: public LCodeGenBase {
|
| FPURegister src1,
|
| FPURegister src2);
|
| void EmitCmpI(LOperand* left, LOperand* right);
|
| - void EmitNumberUntagD(Register input,
|
| - DoubleRegister result,
|
| - bool allow_undefined_as_nan,
|
| - bool deoptimize_on_minus_zero,
|
| - LEnvironment* env,
|
| - NumberUntagDMode mode);
|
| + void EmitNumberUntagD(LNumberUntagD* instr, Register input,
|
| + DoubleRegister result, NumberUntagDMode mode);
|
|
|
| // Emits optimized code for typeof x == "y". Modifies input register.
|
| // Returns the condition on which a final split to
|
|
|