| Index: src/ic/x64/ic-x64.cc
|
| diff --git a/src/ic/x64/ic-x64.cc b/src/ic/x64/ic-x64.cc
|
| index 84667696f11764326bbef80df967762fb3a9c2bf..7cb600809a47301caa0408eb4771e966088c7c43 100644
|
| --- a/src/ic/x64/ic-x64.cc
|
| +++ b/src/ic/x64/ic-x64.cc
|
| @@ -765,31 +765,6 @@ static Operand GenerateUnmappedArgumentsLookup(MacroAssembler* masm,
|
| }
|
|
|
|
|
| -void KeyedLoadIC::GenerateSloppyArguments(MacroAssembler* masm) {
|
| - // The return address is on the stack.
|
| - Register receiver = LoadDescriptor::ReceiverRegister();
|
| - Register key = LoadDescriptor::NameRegister();
|
| - DCHECK(receiver.is(rdx));
|
| - DCHECK(key.is(rcx));
|
| -
|
| - Label slow, notin;
|
| - Operand mapped_location = GenerateMappedArgumentsLookup(
|
| - masm, receiver, key, rbx, rax, rdi, ¬in, &slow);
|
| - __ movp(rax, mapped_location);
|
| - __ Ret();
|
| - __ bind(¬in);
|
| - // The unmapped lookup expects that the parameter map is in rbx.
|
| - Operand unmapped_location =
|
| - GenerateUnmappedArgumentsLookup(masm, key, rbx, rax, &slow);
|
| - __ CompareRoot(unmapped_location, Heap::kTheHoleValueRootIndex);
|
| - __ j(equal, &slow);
|
| - __ movp(rax, unmapped_location);
|
| - __ Ret();
|
| - __ bind(&slow);
|
| - GenerateMiss(masm);
|
| -}
|
| -
|
| -
|
| void KeyedStoreIC::GenerateSloppyArguments(MacroAssembler* masm) {
|
| // The return address is on the stack.
|
| Label slow, notin;
|
|
|