Revision: 19948
Author:   [email protected]
Date:     Fri Mar 14 18:26:31 2014 UTC
Log:      MIPS: Fix deoptimization for out-of-line constant pool.

Port r19940 (db96c25)

Original commit message:
Ensure that the stack contains the correct constant pool pointer when a
function deopts.

This CL depends on https://codereview.chromium.org/183803022/ landing first.

BUG=
[email protected]

Review URL: https://codereview.chromium.org/200253006

Patch from Balazs Kilvady <[email protected]>.
http://code.google.com/p/v8/source/detail?r=19948

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

=======================================
--- /branches/bleeding_edge/src/mips/deoptimizer-mips.cc Mon Mar 3 11:11:39 2014 UTC +++ /branches/bleeding_edge/src/mips/deoptimizer-mips.cc Fri Mar 14 18:26:31 2014 UTC
@@ -392,6 +392,12 @@
 void FrameDescription::SetCallerFp(unsigned offset, intptr_t value) {
   SetFrameSlot(offset, value);
 }
+
+
+void FrameDescription::SetCallerConstantPool(unsigned offset, intptr_t value) {
+  // No out-of-line constant pool support.
+  UNREACHABLE();
+}


 #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