summaryrefslogtreecommitdiff
path: root/deps/v8/src/debug/x64/debug-x64.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/debug/x64/debug-x64.cc')
-rw-r--r--deps/v8/src/debug/x64/debug-x64.cc10
1 files changed, 3 insertions, 7 deletions
diff --git a/deps/v8/src/debug/x64/debug-x64.cc b/deps/v8/src/debug/x64/debug-x64.cc
index 0000445e90..6cdfba151f 100644
--- a/deps/v8/src/debug/x64/debug-x64.cc
+++ b/deps/v8/src/debug/x64/debug-x64.cc
@@ -35,16 +35,12 @@ void DebugCodegen::GenerateFrameDropperTrampoline(MacroAssembler* masm) {
// - Leave the frame.
// - Restart the frame by calling the function.
- Register decompr_scratch_for_debug =
- COMPRESS_POINTERS_BOOL ? kScratchRegister : no_reg;
-
- __ movp(rbp, rbx);
- __ movp(rdi, Operand(rbp, JavaScriptFrameConstants::kFunctionOffset));
+ __ movq(rbp, rbx);
+ __ movq(rdi, Operand(rbp, JavaScriptFrameConstants::kFunctionOffset));
__ leave();
__ LoadTaggedPointerField(
- rbx, FieldOperand(rdi, JSFunction::kSharedFunctionInfoOffset),
- decompr_scratch_for_debug);
+ rbx, FieldOperand(rdi, JSFunction::kSharedFunctionInfoOffset));
__ movzxwq(
rbx, FieldOperand(rbx, SharedFunctionInfo::kFormalParameterCountOffset));