| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index b0ad2219b674ccf9e737a414aaaa933eb0910852..4542c5546e09efe53f9335a38a2f74f57af6fc06 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -14557,6 +14557,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 << "}";
|
|
|