| Index: src/mips/code-stubs-mips.cc
|
| diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc
|
| index 20f0e335ac2ea9828a7df04707856f9347ce74bb..7c764de988286fa88f9dd7d9d086d12ad38f350e 100644
|
| --- a/src/mips/code-stubs-mips.cc
|
| +++ b/src/mips/code-stubs-mips.cc
|
| @@ -3717,11 +3717,8 @@ void LoadICStub::GenerateImpl(MacroAssembler* masm, bool in_frame) {
|
| __ bind(¬_array);
|
| __ LoadRoot(at, Heap::kmegamorphic_symbolRootIndex);
|
| __ Branch(&miss, ne, at, Operand(feedback));
|
| - Code::Flags code_flags =
|
| - Code::RemoveHolderFromFlags(Code::ComputeHandlerFlags(Code::LOAD_IC));
|
| - masm->isolate()->stub_cache()->GenerateProbe(masm, Code::LOAD_IC, code_flags,
|
| - receiver, name, feedback,
|
| - receiver_map, scratch1, t5);
|
| + masm->isolate()->load_stub_cache()->GenerateProbe(
|
| + masm, receiver, name, feedback, receiver_map, scratch1, t5);
|
|
|
| __ bind(&miss);
|
| LoadIC::GenerateMiss(masm);
|
| @@ -3859,11 +3856,8 @@ void VectorStoreICStub::GenerateImpl(MacroAssembler* masm, bool in_frame) {
|
| __ bind(¬_array);
|
| __ LoadRoot(at, Heap::kmegamorphic_symbolRootIndex);
|
| __ Branch(&miss, ne, feedback, Operand(at));
|
| - Code::Flags code_flags =
|
| - Code::RemoveHolderFromFlags(Code::ComputeHandlerFlags(Code::STORE_IC));
|
| - masm->isolate()->stub_cache()->GenerateProbe(
|
| - masm, Code::STORE_IC, code_flags, receiver, key, feedback, receiver_map,
|
| - scratch1, scratch2);
|
| + masm->isolate()->store_stub_cache()->GenerateProbe(
|
| + masm, receiver, key, feedback, receiver_map, scratch1, scratch2);
|
|
|
| __ bind(&miss);
|
| StoreIC::GenerateMiss(masm);
|
|
|