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

Unified Diff: src/objects.cc

Issue 20680002: Rebase of partial ia32 implementation of optimized try/catch (started by Kevin Millikin, continued … (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix detection of CATCH frames (fixes debuger exception reporting anf breaks another assertion...). Created 7 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 | « src/objects.h ('k') | src/objects-inl.h » ('j') | 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 cfeecadf7b581b87006fcab43eb6963099e2e5d3..0eb315544b5f048613ccf314013ee1d3e7dc01d6 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -10420,6 +10420,7 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(FILE* out) {
int ast_id = iterator.Next();
int function_id = iterator.Next();
unsigned height = iterator.Next();
+ int handler_count = iterator.Next();
PrintF(out, "{ast_id=%d, function=", ast_id);
if (function_id != Translation::kSelfLiteralId) {
Object* function = LiteralArray()->get(function_id);
@@ -10427,7 +10428,7 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(FILE* out) {
} else {
PrintF(out, "<self>");
}
- PrintF(out, ", height=%u}", height);
+ PrintF(out, ", height=%u, handlers=%d}", height, handler_count);
break;
}
« no previous file with comments | « src/objects.h ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698