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

Unified Diff: src/objects.cc

Issue 11537005: Fix missing printing of deoptimizer input data. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years 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/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index 03ab5d34d587a598dc75f66d8180221ef0cf84f3..f2397f58e15ac73972a482e2665837bcefe805ab 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -9217,8 +9217,12 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(FILE* out) {
break;
}
- case Translation::ARGUMENTS_OBJECT:
+ case Translation::ARGUMENTS_OBJECT: {
+ int args_index = iterator.Next();
+ int args_length = iterator.Next();
+ PrintF(out, "{index=%d, length=%d}", args_index, args_length);
break;
+ }
}
PrintF(out, "\n");
}
« 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