Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(782)

Unified Diff: src/debug.cc

Issue 430523002: Fix for constant pool support and debug (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updated reviewer Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug.cc
diff --git a/src/debug.cc b/src/debug.cc
index 3586a1836db64cf8ae8f721af0b6bdf33bbd5982..7b6580266166ec40dae96c91ed2219acc311c590 100644
--- a/src/debug.cc
+++ b/src/debug.cc
@@ -1893,6 +1893,9 @@ static void RedirectActivationsToRecompiledCodeOnThread(
// Patch the return address to return into the code with
// debug break slots.
frame->set_pc(new_pc);
+ if (FLAG_enable_ool_constant_pool) {
+ frame->set_constant_pool(new_code->constant_pool());
+ }
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698