| Index: src/x64/debug-x64.cc
|
| diff --git a/src/x64/debug-x64.cc b/src/x64/debug-x64.cc
|
| index af20154238626c63afe57f692834e58f38e265ee..bf15e95189e2e764eb0779b69716d56e7c84256a 100644
|
| --- a/src/x64/debug-x64.cc
|
| +++ b/src/x64/debug-x64.cc
|
| @@ -65,8 +65,6 @@ void BreakLocationIterator::ClearDebugBreakAtSlot() {
|
| rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength);
|
| }
|
|
|
| -const bool Debug::FramePaddingLayout::kIsSupported = true;
|
| -
|
|
|
| #define __ ACCESS_MASM(masm)
|
|
|
| @@ -80,10 +78,10 @@ static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
|
| FrameScope scope(masm, StackFrame::INTERNAL);
|
|
|
| // Load padding words on stack.
|
| - for (int i = 0; i < Debug::FramePaddingLayout::kInitialSize; i++) {
|
| - __ Push(Smi::FromInt(Debug::FramePaddingLayout::kPaddingValue));
|
| + for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) {
|
| + __ Push(Smi::FromInt(LiveEdit::kFramePaddingValue));
|
| }
|
| - __ Push(Smi::FromInt(Debug::FramePaddingLayout::kInitialSize));
|
| + __ Push(Smi::FromInt(LiveEdit::kFramePaddingInitialSize));
|
|
|
| // Store the registers containing live values on the expression stack to
|
| // make sure that these are correctly updated during GC. Non object values
|
| @@ -309,7 +307,7 @@ void DebugCodegen::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
|
| __ jmp(rdx);
|
| }
|
|
|
| -const bool Debug::kFrameDropperSupported = true;
|
| +const bool LiveEdit::kFrameDropperSupported = true;
|
|
|
| #undef __
|
|
|
|
|