Revision: 14509
Author:   [email protected]
Date:     Tue Apr 30 12:09:33 2013
Log:      MIPS: Allow setting debugger breakpoints on CompareNilICs

Port r14487 (022d1fc3)

BUG=

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

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

=======================================
--- /branches/bleeding_edge/src/mips/debug-mips.cc      Thu May  3 10:31:34 2012
+++ /branches/bleeding_edge/src/mips/debug-mips.cc      Tue Apr 30 12:09:33 2013
@@ -234,6 +234,15 @@
   //  -- ra     : return address
   Generate_DebugBreakCallHelper(masm, a0.bit() | a1.bit() | a2.bit(), 0);
 }
+
+
+void Debug::GenerateCompareNilICDebugBreak(MacroAssembler* masm) {
+  // Register state for CompareNil IC
+  // ----------- S t a t e -------------
+  //  -- a0    : value
+  // -----------------------------------
+  Generate_DebugBreakCallHelper(masm, a0.bit(), 0);
+}


 void Debug::GenerateCallICDebugBreak(MacroAssembler* masm) {

--
--
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/groups/opt_out.


Reply via email to