| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 56ce80753c1cc42c569ded00cc03d7d954f6945e..bb7c573d51c7acb969b885fc750391d148e7845a 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -2940,6 +2940,12 @@ class DeoptInfo : public Object {
|
| void ToInstructions(const Array& table,
|
| GrowableArray<DeoptInstr*>* instructions) const;
|
|
|
| +
|
| + // Returns true iff decompression yields the same instructions as the
|
| + // original.
|
| + bool VerifyDecompression(const GrowableArray<DeoptInstr*>& original,
|
| + const Array& deopt_table) const;
|
| +
|
| private:
|
| intptr_t* EntryAddr(intptr_t index, intptr_t entry_offset) const {
|
| ASSERT((index >=0) && (index < Length()));
|
|
|