Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index 6c051c5b9c01caf55ca2633b20ce090551dcc009..e0a55a76ae4f22b01ad03199982dc7ac3d832361 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -14396,6 +14396,17 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint( |
break; |
} |
+ case Translation::BUILTIN_CONTINUATION_FRAME: { |
+ int bailout_id = iterator.Next(); |
+ int shared_info_id = iterator.Next(); |
+ Object* shared_info = LiteralArray()->get(shared_info_id); |
+ unsigned height = iterator.Next(); |
+ os << "{bailout_id=" << bailout_id << ", function=" |
+ << Brief(SharedFunctionInfo::cast(shared_info)->DebugName()) |
+ << ", height=" << height << "}"; |
+ break; |
+ } |
+ |
case Translation::COMPILED_STUB_FRAME: { |
Code::Kind stub_kind = static_cast<Code::Kind>(iterator.Next()); |
os << "{kind=" << stub_kind << "}"; |