Revision: 16372
Author:   [email protected]
Date:     Tue Aug 27 22:55:30 2013 UTC
Log:      MIPS: Fix Cluster Fuzz stack frame corruption bug.

Port r16358 (a8a679b9)

BUG=

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

Modified:
 /branches/bleeding_edge/src/mips/code-stubs-mips.cc

=======================================
--- /branches/bleeding_edge/src/mips/code-stubs-mips.cc Tue Aug 27 22:53:25 2013 UTC +++ /branches/bleeding_edge/src/mips/code-stubs-mips.cc Tue Aug 27 22:55:30 2013 UTC
@@ -4691,12 +4691,14 @@
         1 << 5  |  // a1
         1 << 6;    // a2

+    __ SmiTag(a0);
     __ MultiPush(kSavedRegs);

     CreateAllocationSiteStub create_stub;
     __ CallStub(&create_stub);

     __ MultiPop(kSavedRegs);
+    __ SmiUntag(a0);
   }
   __ Branch(&done);

--
--
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