| Index: src/x64/builtins-x64.cc
|
| diff --git a/src/x64/builtins-x64.cc b/src/x64/builtins-x64.cc
|
| index f65b25c6520885b4e414afe6831b16589aba99af..30cd314255d7d24d65184278221fb236a4312503 100644
|
| --- a/src/x64/builtins-x64.cc
|
| +++ b/src/x64/builtins-x64.cc
|
| @@ -158,7 +158,7 @@ static void Generate_JSConstructStubHelper(MacroAssembler* masm,
|
| #ifdef ENABLE_DEBUGGER_SUPPORT
|
| ExternalReference debug_step_in_fp =
|
| ExternalReference::debug_step_in_fp_address(masm->isolate());
|
| - __ movq(kScratchRegister, debug_step_in_fp);
|
| + __ Move(kScratchRegister, debug_step_in_fp);
|
| __ cmpq(Operand(kScratchRegister, 0), Immediate(0));
|
| __ j(not_equal, &rt_call);
|
| #endif
|
| @@ -600,8 +600,7 @@ static void GenerateMakeCodeYoungAgainCommon(MacroAssembler* masm) {
|
| // the stub returns.
|
| __ subq(Operand(rsp, 0), Immediate(5));
|
| __ Pushad();
|
| - __ movq(arg_reg_2,
|
| - ExternalReference::isolate_address(masm->isolate()));
|
| + __ Move(arg_reg_2, ExternalReference::isolate_address(masm->isolate()));
|
| __ movq(arg_reg_1, Operand(rsp, kNumSafepointRegisters * kPointerSize));
|
| { // NOLINT
|
| FrameScope scope(masm, StackFrame::MANUAL);
|
| @@ -633,7 +632,7 @@ void Builtins::Generate_MarkCodeAsExecutedOnce(MacroAssembler* masm) {
|
| // save/restore the registers without worrying about which of them contain
|
| // pointers.
|
| __ Pushad();
|
| - __ movq(arg_reg_2, ExternalReference::isolate_address(masm->isolate()));
|
| + __ Move(arg_reg_2, ExternalReference::isolate_address(masm->isolate()));
|
| __ movq(arg_reg_1, Operand(rsp, kNumSafepointRegisters * kPointerSize));
|
| __ subq(arg_reg_1, Immediate(Assembler::kShortCallInstructionLength));
|
| { // NOLINT
|
|
|