| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index ec884691f45e028a04bf52349b911a97e11e647c..9a6f4cb3b172365910eea9e95ffd89a258138e25 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -10587,6 +10587,14 @@ Handle<DeoptimizationOutputData> DeoptimizationOutputData::New(
|
| return Handle<DeoptimizationOutputData>::cast(result);
|
| }
|
|
|
| +SharedFunctionInfo* DeoptimizationInputData::GetInlinedFunction(int index) {
|
| + if (index == -1) {
|
| + return SharedFunctionInfo::cast(this->SharedFunctionInfo());
|
| + } else {
|
| + return SharedFunctionInfo::cast(LiteralArray()->get(index));
|
| + }
|
| +}
|
| +
|
| const int LiteralsArray::kFeedbackVectorOffset =
|
| LiteralsArray::OffsetOfElementAt(LiteralsArray::kVectorIndex);
|
|
|
|
|