| Index: src/crankshaft/mips/lithium-codegen-mips.cc
|
| diff --git a/src/crankshaft/mips/lithium-codegen-mips.cc b/src/crankshaft/mips/lithium-codegen-mips.cc
|
| index 6927818f9ae841724959d8322bdb9c9bd6bf95a4..dc3d62df90f2cec797be2595be7378a8f492b6c4 100644
|
| --- a/src/crankshaft/mips/lithium-codegen-mips.cc
|
| +++ b/src/crankshaft/mips/lithium-codegen-mips.cc
|
| @@ -2221,32 +2221,6 @@ void LCodeGen::DoCmpHoleAndBranch(LCmpHoleAndBranch* instr) {
|
| }
|
|
|
|
|
| -void LCodeGen::DoCompareMinusZeroAndBranch(LCompareMinusZeroAndBranch* instr) {
|
| - Representation rep = instr->hydrogen()->value()->representation();
|
| - DCHECK(!rep.IsInteger32());
|
| - Register scratch = ToRegister(instr->temp());
|
| -
|
| - if (rep.IsDouble()) {
|
| - DoubleRegister value = ToDoubleRegister(instr->value());
|
| - EmitFalseBranchF(instr, ne, value, kDoubleRegZero);
|
| - __ FmoveHigh(scratch, value);
|
| - __ li(at, 0x80000000);
|
| - } else {
|
| - Register value = ToRegister(instr->value());
|
| - __ CheckMap(value,
|
| - scratch,
|
| - Heap::kHeapNumberMapRootIndex,
|
| - instr->FalseLabel(chunk()),
|
| - DO_SMI_CHECK);
|
| - __ lw(scratch, FieldMemOperand(value, HeapNumber::kExponentOffset));
|
| - EmitFalseBranch(instr, ne, scratch, Operand(0x80000000));
|
| - __ lw(scratch, FieldMemOperand(value, HeapNumber::kMantissaOffset));
|
| - __ mov(at, zero_reg);
|
| - }
|
| - EmitBranch(instr, eq, scratch, Operand(at));
|
| -}
|
| -
|
| -
|
| Condition LCodeGen::EmitIsString(Register input,
|
| Register temp1,
|
| Label* is_not_string,
|
|
|