| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 180eb63536c1f35bf5d07189478a81c55951d281..6048a02b2a3a9a96dab1783f0921ca56b0f9488b 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -11636,6 +11636,13 @@ WeakCell* Code::CachedWeakCell() {
|
| void DeoptimizationInputData::DeoptimizationInputDataPrint(
|
| std::ostream& os) { // NOLINT
|
| disasm::NameConverter converter;
|
| + int const inlined_function_count = InlinedFunctionCount()->value();
|
| + os << "Inlined functions (count = " << inlined_function_count << ")\n";
|
| + for (int id = 0; id < inlined_function_count; ++id) {
|
| + Object* info = LiteralArray()->get(id);
|
| + os << " " << Brief(SharedFunctionInfo::cast(info)) << "\n";
|
| + }
|
| + os << "\n";
|
| int deopt_count = DeoptCount();
|
| os << "Deoptimization Input Data (deopt points = " << deopt_count << ")\n";
|
| if (0 != deopt_count) {
|
|
|