Revision: 21600
Author:   [email protected]
Date:     Mon Jun  2 11:31:32 2014 UTC
Log:      X87: Move LiveEdit-related code.

port r21559 (dfd0cf8)

BUG=
[email protected]

Review URL: https://codereview.chromium.org/303053002
http://code.google.com/p/v8/source/detail?r=21600

Modified:
 /branches/bleeding_edge/src/x87/debug-x87.cc

=======================================
--- /branches/bleeding_edge/src/x87/debug-x87.cc Wed May 28 08:17:21 2014 UTC +++ /branches/bleeding_edge/src/x87/debug-x87.cc Mon Jun 2 11:31:32 2014 UTC
@@ -65,10 +65,6 @@
   ASSERT(IsDebugBreakSlot());
rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength);
 }
-
-
-// All debug break stubs support padding for LiveEdit.
-const bool Debug::FramePaddingLayout::kIsSupported = true;


 #define __ ACCESS_MASM(masm)
@@ -82,11 +78,10 @@
     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 @@
   __ jmp(edx);
 }

-const bool Debug::kFrameDropperSupported = true;
+
+const bool LiveEdit::kFrameDropperSupported = true;

 #undef __

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to