| Index: src/deoptimizer.h
|
| diff --git a/src/deoptimizer.h b/src/deoptimizer.h
|
| index f518546018bfcbab66a7ac7ee8f7dcaca269082f..aace2208673f74b7aeb697932dab5de6792704cf 100644
|
| --- a/src/deoptimizer.h
|
| +++ b/src/deoptimizer.h
|
| @@ -543,6 +543,11 @@ class FrameDescription {
|
| intptr_t GetContext() const { return context_; }
|
| void SetContext(intptr_t context) { context_ = context; }
|
|
|
| + intptr_t GetConstantPool() const { return constant_pool_; }
|
| + void SetConstantPool(intptr_t constant_pool) {
|
| + constant_pool_ = constant_pool;
|
| + }
|
| +
|
| Smi* GetState() const { return state_; }
|
| void SetState(Smi* state) { state_ = state; }
|
|
|
| @@ -605,6 +610,7 @@ class FrameDescription {
|
| intptr_t pc_;
|
| intptr_t fp_;
|
| intptr_t context_;
|
| + intptr_t constant_pool_;
|
| StackFrame::Type type_;
|
| Smi* state_;
|
|
|
|
|