| Index: runtime/vm/intermediate_language.h
|
| diff --git a/runtime/vm/intermediate_language.h b/runtime/vm/intermediate_language.h
|
| index 3bd24baa1e00e6516e2dd689315cd259460405e8..627a4a54d59d9a0e73501f08e4abd5cd80f87092 100644
|
| --- a/runtime/vm/intermediate_language.h
|
| +++ b/runtime/vm/intermediate_language.h
|
| @@ -4200,6 +4200,9 @@ class MaterializeObjectInstr : public Definition {
|
|
|
| virtual bool MayThrow() const { return false; }
|
|
|
| + void RemapRegisters(intptr_t* fpu_reg_slots,
|
| + intptr_t* cpu_reg_slots);
|
| +
|
| private:
|
| virtual void RawSetInputAt(intptr_t i, Value* value) {
|
| (*values_)[i] = value;
|
| @@ -7720,6 +7723,7 @@ class Environment : public ZoneAllocated {
|
| void DeepCopyToOuter(Instruction* instr) const;
|
|
|
| void PrintTo(BufferFormatter* f) const;
|
| + const char* ToCString() const;
|
|
|
| private:
|
| friend class ShallowIterator;
|
|
|