Index: src/full-codegen/mips64/full-codegen-mips64.cc |
diff --git a/src/full-codegen/mips64/full-codegen-mips64.cc b/src/full-codegen/mips64/full-codegen-mips64.cc |
index ebcc0b6b927b56690604d632deb83c1783194863..f76f93cb17d48da109a9dee0fd0e936718ffa11b 100644 |
--- a/src/full-codegen/mips64/full-codegen-mips64.cc |
+++ b/src/full-codegen/mips64/full-codegen-mips64.cc |
@@ -4064,18 +4064,18 @@ void FullCodeGenerator::EmitLiteralCompareNil(CompareOperation* expr, |
VisitForAccumulatorValue(sub_expr); |
PrepareForBailoutBeforeSplit(expr, true, if_true, if_false); |
- __ mov(a0, result_register()); |
if (expr->op() == Token::EQ_STRICT) { |
Heap::RootListIndex nil_value = nil == kNullValue ? |
Heap::kNullValueRootIndex : |
Heap::kUndefinedValueRootIndex; |
__ LoadRoot(a1, nil_value); |
- Split(eq, a0, Operand(a1), if_true, if_false, fall_through); |
- } else { |
- Handle<Code> ic = CompareNilICStub::GetUninitialized(isolate(), nil); |
- CallIC(ic, expr->CompareOperationFeedbackId()); |
- __ LoadRoot(a1, Heap::kTrueValueRootIndex); |
Split(eq, v0, Operand(a1), if_true, if_false, fall_through); |
+ } else { |
+ __ JumpIfSmi(v0, if_false); |
+ __ ld(v0, FieldMemOperand(v0, HeapObject::kMapOffset)); |
+ __ lbu(a1, FieldMemOperand(v0, Map::kBitFieldOffset)); |
+ __ And(a1, a1, Operand(1 << Map::kIsUndetectable)); |
+ Split(ne, a1, Operand(zero_reg), if_true, if_false, fall_through); |
} |
context()->Plug(if_true, if_false); |
} |