Index: src/full-codegen/arm64/full-codegen-arm64.cc |
diff --git a/src/full-codegen/arm64/full-codegen-arm64.cc b/src/full-codegen/arm64/full-codegen-arm64.cc |
index 4f9ce1ddd87f71687f4abac565a1f5782bf27d6b..4e9c9ca4c6d4718ec383502f27c73aac5d23667c 100644 |
--- a/src/full-codegen/arm64/full-codegen-arm64.cc |
+++ b/src/full-codegen/arm64/full-codegen-arm64.cc |
@@ -3885,10 +3885,11 @@ void FullCodeGenerator::EmitLiteralCompareNil(CompareOperation* expr, |
__ CompareRoot(x0, nil_value); |
Split(eq, if_true, if_false, fall_through); |
} else { |
- Handle<Code> ic = CompareNilICStub::GetUninitialized(isolate(), nil); |
- CallIC(ic, expr->CompareOperationFeedbackId()); |
- __ CompareRoot(x0, Heap::kTrueValueRootIndex); |
- Split(eq, if_true, if_false, fall_through); |
+ __ JumpIfSmi(x0, if_false); |
+ __ Ldr(x0, FieldMemOperand(x0, HeapObject::kMapOffset)); |
+ __ Ldrb(x1, FieldMemOperand(x0, Map::kBitFieldOffset)); |
+ __ TestAndSplit(x1, 1 << Map::kIsUndetectable, if_false, if_true, |
+ fall_through); |
} |
context()->Plug(if_true, if_false); |