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

Unified Diff: src/objects.cc

Issue 10910161: Partial ia32 implementation of optimized try/catch (by Kevin Millikin) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fixed build. Created 8 years, 3 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 158de1452bd2b50e4e081950a0f1d276091cffc8..7736bebd89981f99d33e82ff20bd0420c6f387f8 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -8263,6 +8263,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);
@@ -8270,7 +8271,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