| Index: src/x64/code-stubs-x64.cc
|
| diff --git a/src/x64/code-stubs-x64.cc b/src/x64/code-stubs-x64.cc
|
| index b3ab8c1e7588306dda1dacc8d8f6f6f032700c7f..bfa8fb5aad908ad154e70e62076019f13691c314 100644
|
| --- a/src/x64/code-stubs-x64.cc
|
| +++ b/src/x64/code-stubs-x64.cc
|
| @@ -2222,7 +2222,7 @@ static void CheckInputType(MacroAssembler* masm,
|
| __ JumpIfNotSmi(input, fail);
|
| } else if (expected == CompareIC::NUMBER) {
|
| __ JumpIfSmi(input, &ok);
|
| - __ CompareMap(input, masm->isolate()->factory()->heap_number_map(), NULL);
|
| + __ CompareMap(input, masm->isolate()->factory()->heap_number_map());
|
| __ j(not_equal, fail);
|
| }
|
| // We could be strict about internalized/non-internalized here, but as long as
|
| @@ -3208,7 +3208,7 @@ void InstanceofStub::Generate(MacroAssembler* masm) {
|
| // __ j(not_equal, &cache_miss);
|
| // __ LoadRoot(ToRegister(instr->result()), Heap::kTheHoleValueRootIndex);
|
| // before the offset of the hole value in the root array.
|
| - static const unsigned int kWordBeforeResultValue = 0x458B4909;
|
| + static const unsigned int kWordBeforeResultValue = 0x458B4906;
|
| // Only the inline check flag is supported on X64.
|
| ASSERT(flags_ == kNoFlags || HasCallSiteInlineCheck());
|
| int extra_argument_offset = HasCallSiteInlineCheck() ? 1 : 0;
|
| @@ -4545,7 +4545,7 @@ void ICCompareStub::GenerateNumbers(MacroAssembler* masm) {
|
| // Load left and right operand.
|
| Label done, left, left_smi, right_smi;
|
| __ JumpIfSmi(rax, &right_smi, Label::kNear);
|
| - __ CompareMap(rax, masm->isolate()->factory()->heap_number_map(), NULL);
|
| + __ CompareMap(rax, masm->isolate()->factory()->heap_number_map());
|
| __ j(not_equal, &maybe_undefined1, Label::kNear);
|
| __ movsd(xmm1, FieldOperand(rax, HeapNumber::kValueOffset));
|
| __ jmp(&left, Label::kNear);
|
| @@ -4555,7 +4555,7 @@ void ICCompareStub::GenerateNumbers(MacroAssembler* masm) {
|
|
|
| __ bind(&left);
|
| __ JumpIfSmi(rdx, &left_smi, Label::kNear);
|
| - __ CompareMap(rdx, masm->isolate()->factory()->heap_number_map(), NULL);
|
| + __ CompareMap(rdx, masm->isolate()->factory()->heap_number_map());
|
| __ j(not_equal, &maybe_undefined2, Label::kNear);
|
| __ movsd(xmm0, FieldOperand(rdx, HeapNumber::kValueOffset));
|
| __ jmp(&done);
|
|
|