| Index: src/ia32/debug-ia32.cc
|
| diff --git a/src/ia32/debug-ia32.cc b/src/ia32/debug-ia32.cc
|
| index 6fdb28c01566c4cb001e52bf755350fde922cf2b..1e56dc5abfbbf8c8d5d2cb9965f04e6161f43363 100644
|
| --- a/src/ia32/debug-ia32.cc
|
| +++ b/src/ia32/debug-ia32.cc
|
| @@ -67,10 +67,6 @@ void BreakLocationIterator::ClearDebugBreakAtSlot() {
|
| }
|
|
|
|
|
| -// All debug break stubs support padding for LiveEdit.
|
| -const bool Debug::FramePaddingLayout::kIsSupported = true;
|
| -
|
| -
|
| #define __ ACCESS_MASM(masm)
|
|
|
| static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
|
| @@ -82,11 +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(Immediate(Smi::FromInt(
|
| - Debug::FramePaddingLayout::kPaddingValue)));
|
| + for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) {
|
| + __ push(Immediate(Smi::FromInt(LiveEdit::kFramePaddingValue)));
|
| }
|
| - __ push(Immediate(Smi::FromInt(Debug::FramePaddingLayout::kInitialSize)));
|
| + __ push(Immediate(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
|
| @@ -331,7 +326,8 @@ void DebugCodegen::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
|
| __ jmp(edx);
|
| }
|
|
|
| -const bool Debug::kFrameDropperSupported = true;
|
| +
|
| +const bool LiveEdit::kFrameDropperSupported = true;
|
|
|
| #undef __
|
|
|
|
|