| Index: src/ic/mips/ic-mips.cc | 
| diff --git a/src/ic/mips/ic-mips.cc b/src/ic/mips/ic-mips.cc | 
| index 80527b2668f42091fbd35fdb795697415cbb2387..6fdb0ee27c82d9aa47df961e3269f18eb1ba0b3b 100644 | 
| --- a/src/ic/mips/ic-mips.cc | 
| +++ b/src/ic/mips/ic-mips.cc | 
| @@ -330,117 +330,6 @@ void LoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm) { | 
| } | 
|  | 
|  | 
| -static MemOperand GenerateMappedArgumentsLookup( | 
| -    MacroAssembler* masm, Register object, Register key, Register scratch1, | 
| -    Register scratch2, Register scratch3, Label* unmapped_case, | 
| -    Label* slow_case) { | 
| -  Heap* heap = masm->isolate()->heap(); | 
| - | 
| -  // Check that the receiver is a JSObject. Because of the map check | 
| -  // later, we do not need to check for interceptors or whether it | 
| -  // requires access checks. | 
| -  __ JumpIfSmi(object, slow_case); | 
| -  // Check that the object is some kind of JSObject. | 
| -  __ GetObjectType(object, scratch1, scratch2); | 
| -  __ Branch(slow_case, lt, scratch2, Operand(FIRST_JS_RECEIVER_TYPE)); | 
| - | 
| -  // Check that the key is a positive smi. | 
| -  __ And(scratch1, key, Operand(0x80000001)); | 
| -  __ Branch(slow_case, ne, scratch1, Operand(zero_reg)); | 
| - | 
| -  // Load the elements into scratch1 and check its map. | 
| -  Handle<Map> arguments_map(heap->sloppy_arguments_elements_map()); | 
| -  __ lw(scratch1, FieldMemOperand(object, JSObject::kElementsOffset)); | 
| -  __ CheckMap(scratch1, scratch2, arguments_map, slow_case, DONT_DO_SMI_CHECK); | 
| -  // Check if element is in the range of mapped arguments. If not, jump | 
| -  // to the unmapped lookup with the parameter map in scratch1. | 
| -  __ lw(scratch2, FieldMemOperand(scratch1, FixedArray::kLengthOffset)); | 
| -  __ Subu(scratch2, scratch2, Operand(Smi::FromInt(2))); | 
| -  __ Branch(unmapped_case, Ugreater_equal, key, Operand(scratch2)); | 
| - | 
| -  // Load element index and check whether it is the hole. | 
| -  const int kOffset = | 
| -      FixedArray::kHeaderSize + 2 * kPointerSize - kHeapObjectTag; | 
| - | 
| -  __ li(scratch3, Operand(kPointerSize >> 1)); | 
| -  __ Mul(scratch3, key, scratch3); | 
| -  __ Addu(scratch3, scratch3, Operand(kOffset)); | 
| - | 
| -  __ Addu(scratch2, scratch1, scratch3); | 
| -  __ lw(scratch2, MemOperand(scratch2)); | 
| -  __ LoadRoot(scratch3, Heap::kTheHoleValueRootIndex); | 
| -  __ Branch(unmapped_case, eq, scratch2, Operand(scratch3)); | 
| - | 
| -  // Load value from context and return it. We can reuse scratch1 because | 
| -  // we do not jump to the unmapped lookup (which requires the parameter | 
| -  // map in scratch1). | 
| -  __ lw(scratch1, FieldMemOperand(scratch1, FixedArray::kHeaderSize)); | 
| -  __ li(scratch3, Operand(kPointerSize >> 1)); | 
| -  __ Mul(scratch3, scratch2, scratch3); | 
| -  __ Addu(scratch3, scratch3, Operand(Context::kHeaderSize - kHeapObjectTag)); | 
| -  __ Addu(scratch2, scratch1, scratch3); | 
| -  return MemOperand(scratch2); | 
| -} | 
| - | 
| - | 
| -static MemOperand GenerateUnmappedArgumentsLookup(MacroAssembler* masm, | 
| -                                                  Register key, | 
| -                                                  Register parameter_map, | 
| -                                                  Register scratch, | 
| -                                                  Label* slow_case) { | 
| -  // Element is in arguments backing store, which is referenced by the | 
| -  // second element of the parameter_map. The parameter_map register | 
| -  // must be loaded with the parameter map of the arguments object and is | 
| -  // overwritten. | 
| -  const int kBackingStoreOffset = FixedArray::kHeaderSize + kPointerSize; | 
| -  Register backing_store = parameter_map; | 
| -  __ lw(backing_store, FieldMemOperand(parameter_map, kBackingStoreOffset)); | 
| -  __ CheckMap(backing_store, scratch, Heap::kFixedArrayMapRootIndex, slow_case, | 
| -              DONT_DO_SMI_CHECK); | 
| -  __ lw(scratch, FieldMemOperand(backing_store, FixedArray::kLengthOffset)); | 
| -  __ Branch(slow_case, Ugreater_equal, key, Operand(scratch)); | 
| -  __ li(scratch, Operand(kPointerSize >> 1)); | 
| -  __ Mul(scratch, key, scratch); | 
| -  __ Addu(scratch, scratch, Operand(FixedArray::kHeaderSize - kHeapObjectTag)); | 
| -  __ Addu(scratch, backing_store, scratch); | 
| -  return MemOperand(scratch); | 
| -} | 
| - | 
| - | 
| -void KeyedStoreIC::GenerateSloppyArguments(MacroAssembler* masm) { | 
| -  Register receiver = StoreDescriptor::ReceiverRegister(); | 
| -  Register key = StoreDescriptor::NameRegister(); | 
| -  Register value = StoreDescriptor::ValueRegister(); | 
| -  DCHECK(value.is(a0)); | 
| - | 
| -  Label slow, notin; | 
| -  // Store address is returned in register (of MemOperand) mapped_location. | 
| -  MemOperand mapped_location = GenerateMappedArgumentsLookup( | 
| -      masm, receiver, key, a3, t0, t1, ¬in, &slow); | 
| -  __ sw(value, mapped_location); | 
| -  __ mov(t5, value); | 
| -  DCHECK_EQ(mapped_location.offset(), 0); | 
| -  __ RecordWrite(a3, mapped_location.rm(), t5, kRAHasNotBeenSaved, | 
| -                 kDontSaveFPRegs); | 
| -  __ Ret(USE_DELAY_SLOT); | 
| -  __ mov(v0, value);  // (In delay slot) return the value stored in v0. | 
| -  __ bind(¬in); | 
| -  // The unmapped lookup expects that the parameter map is in a3. | 
| -  // Store address is returned in register (of MemOperand) unmapped_location. | 
| -  MemOperand unmapped_location = | 
| -      GenerateUnmappedArgumentsLookup(masm, key, a3, t0, &slow); | 
| -  __ sw(value, unmapped_location); | 
| -  __ mov(t5, value); | 
| -  DCHECK_EQ(unmapped_location.offset(), 0); | 
| -  __ RecordWrite(a3, unmapped_location.rm(), t5, kRAHasNotBeenSaved, | 
| -                 kDontSaveFPRegs); | 
| -  __ Ret(USE_DELAY_SLOT); | 
| -  __ mov(v0, a0);  // (In delay slot) return the value stored in v0. | 
| -  __ bind(&slow); | 
| -  GenerateMiss(masm); | 
| -} | 
| - | 
| - | 
| void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) { | 
| // The return address is in ra. | 
| Isolate* isolate = masm->isolate(); | 
|  |