Reviewers: danno, rmcilroy, Paul Lind, kisg, dusmil, palfia,

Description:
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=

Please review this at https://codereview.chromium.org/200253006/

SVN Base: https://github.com/v8/v8.git@gbl

Affected files (+6, -0 lines):
  M src/mips/deoptimizer-mips.cc


Index: src/mips/deoptimizer-mips.cc
diff --git a/src/mips/deoptimizer-mips.cc b/src/mips/deoptimizer-mips.cc
index d66acb00ba4c0802eae36161152588b81fba176f..0cd5e2ccd20d871c418279ef04b1211b65370180 100644
--- a/src/mips/deoptimizer-mips.cc
+++ b/src/mips/deoptimizer-mips.cc
@@ -394,6 +394,12 @@ void FrameDescription::SetCallerFp(unsigned offset, intptr_t 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