| Index: runtime/vm/intermediate_language_mips.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language_mips.cc (revision 25088)
|
| +++ runtime/vm/intermediate_language_mips.cc (working copy)
|
| @@ -3712,25 +3712,6 @@
|
| }
|
|
|
|
|
| -LocationSummary* ChainContextInstr::MakeLocationSummary() const {
|
| - return LocationSummary::Make(1,
|
| - Location::NoLocation(),
|
| - LocationSummary::kNoCall);
|
| -}
|
| -
|
| -
|
| -void ChainContextInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| - Register context_value = locs()->in(0).reg();
|
| -
|
| - // Chain the new context in context_value to its parent in CTX.
|
| - __ StoreIntoObject(context_value,
|
| - FieldAddress(context_value, Context::parent_offset()),
|
| - CTX);
|
| - // Set new context as current context.
|
| - __ mov(CTX, context_value);
|
| -}
|
| -
|
| -
|
| LocationSummary* StoreVMFieldInstr::MakeLocationSummary() const {
|
| const intptr_t kNumInputs = 2;
|
| const intptr_t kNumTemps = 0;
|
|
|