| Index: src/crankshaft/mips/lithium-codegen-mips.cc
 | 
| diff --git a/src/crankshaft/mips/lithium-codegen-mips.cc b/src/crankshaft/mips/lithium-codegen-mips.cc
 | 
| index 22209c7e296b45a1bd245fb15890f79c64066976..ac40b2c337567ed3fe820419454d81ae3482ef5b 100644
 | 
| --- a/src/crankshaft/mips/lithium-codegen-mips.cc
 | 
| +++ b/src/crankshaft/mips/lithium-codegen-mips.cc
 | 
| @@ -2755,24 +2755,6 @@ void LCodeGen::DoLoadGlobalGeneric(LLoadGlobalGeneric* instr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void LCodeGen::DoLoadGlobalViaContext(LLoadGlobalViaContext* instr) {
 | 
| -  DCHECK(ToRegister(instr->context()).is(cp));
 | 
| -  DCHECK(ToRegister(instr->result()).is(v0));
 | 
| -
 | 
| -  int const slot = instr->slot_index();
 | 
| -  int const depth = instr->depth();
 | 
| -  if (depth <= LoadGlobalViaContextStub::kMaximumDepth) {
 | 
| -    __ li(LoadGlobalViaContextDescriptor::SlotRegister(), Operand(slot));
 | 
| -    Handle<Code> stub =
 | 
| -        CodeFactory::LoadGlobalViaContext(isolate(), depth).code();
 | 
| -    CallCode(stub, RelocInfo::CODE_TARGET, instr);
 | 
| -  } else {
 | 
| -    __ Push(Smi::FromInt(slot));
 | 
| -    __ CallRuntime(Runtime::kLoadGlobalViaContext, 1);
 | 
| -  }
 | 
| -}
 | 
| -
 | 
| -
 | 
|  void LCodeGen::DoLoadContextSlot(LLoadContextSlot* instr) {
 | 
|    Register context = ToRegister(instr->context());
 | 
|    Register result = ToRegister(instr->result());
 | 
| @@ -4047,30 +4029,6 @@ void LCodeGen::DoStoreNamedGeneric(LStoreNamedGeneric* instr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void LCodeGen::DoStoreGlobalViaContext(LStoreGlobalViaContext* instr) {
 | 
| -  DCHECK(ToRegister(instr->context()).is(cp));
 | 
| -  DCHECK(ToRegister(instr->value())
 | 
| -             .is(StoreGlobalViaContextDescriptor::ValueRegister()));
 | 
| -
 | 
| -  int const slot = instr->slot_index();
 | 
| -  int const depth = instr->depth();
 | 
| -  if (depth <= StoreGlobalViaContextStub::kMaximumDepth) {
 | 
| -    __ li(StoreGlobalViaContextDescriptor::SlotRegister(), Operand(slot));
 | 
| -    Handle<Code> stub = CodeFactory::StoreGlobalViaContext(
 | 
| -                            isolate(), depth, instr->language_mode())
 | 
| -                            .code();
 | 
| -    CallCode(stub, RelocInfo::CODE_TARGET, instr);
 | 
| -  } else {
 | 
| -    __ Push(Smi::FromInt(slot));
 | 
| -    __ Push(StoreGlobalViaContextDescriptor::ValueRegister());
 | 
| -    __ CallRuntime(is_strict(language_mode())
 | 
| -                       ? Runtime::kStoreGlobalViaContext_Strict
 | 
| -                       : Runtime::kStoreGlobalViaContext_Sloppy,
 | 
| -                   2);
 | 
| -  }
 | 
| -}
 | 
| -
 | 
| -
 | 
|  void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) {
 | 
|    Condition cc = instr->hydrogen()->allow_equality() ? hi : hs;
 | 
|    Operand operand(0);
 | 
| 
 |