| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index a521bc3fe940d84b62b07406a4c1af6f50d642cc..747a4f0511da020ba1feb3ca599793fa8102c545 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -5230,6 +5230,12 @@ class DeoptimizationInputData: public FixedArray {
|
|
|
| inline int DeoptCount();
|
|
|
| + static const int kNotInlinedIndex = -1;
|
| +
|
| + // Returns the inlined function at the given position in LiteralArray, or the
|
| + // outer function if index == kNotInlinedIndex.
|
| + class SharedFunctionInfo* GetInlinedFunction(int index);
|
| +
|
| // Allocates a DeoptimizationInputData.
|
| static Handle<DeoptimizationInputData> New(Isolate* isolate,
|
| int deopt_entry_count,
|
|
|