| Index: src/ic/mips/stub-cache-mips.cc
|
| diff --git a/src/ic/mips/stub-cache-mips.cc b/src/ic/mips/stub-cache-mips.cc
|
| index f7f7957ef01258ec4812ac0236927e025543c938..ec9f043be63ce534d372b7ee83447124c80f0419 100644
|
| --- a/src/ic/mips/stub-cache-mips.cc
|
| +++ b/src/ic/mips/stub-cache-mips.cc
|
| @@ -14,10 +14,9 @@ namespace internal {
|
|
|
| #define __ ACCESS_MASM(masm)
|
|
|
| -
|
| static void ProbeTable(Isolate* isolate, MacroAssembler* masm,
|
| - Code::Kind ic_kind, Code::Flags flags,
|
| - StubCache::Table table, Register receiver, Register name,
|
| + Code::Flags flags, StubCache::Table table,
|
| + Register receiver, Register name,
|
| // Number of the cache entry, not scaled.
|
| Register offset, Register scratch, Register scratch2,
|
| Register offset_scratch) {
|
| @@ -142,8 +141,8 @@ void StubCache::GenerateProbe(MacroAssembler* masm, Code::Kind ic_kind,
|
| __ And(scratch, scratch, Operand(mask));
|
|
|
| // Probe the primary table.
|
| - ProbeTable(isolate, masm, ic_kind, flags, kPrimary, receiver, name, scratch,
|
| - extra, extra2, extra3);
|
| + ProbeTable(isolate, masm, flags, kPrimary, receiver, name, scratch, extra,
|
| + extra2, extra3);
|
|
|
| // Primary miss: Compute hash for secondary probe.
|
| __ srl(at, name, kCacheIndexShift);
|
| @@ -153,8 +152,8 @@ void StubCache::GenerateProbe(MacroAssembler* masm, Code::Kind ic_kind,
|
| __ And(scratch, scratch, Operand(mask2));
|
|
|
| // Probe the secondary table.
|
| - ProbeTable(isolate, masm, ic_kind, flags, kSecondary, receiver, name, scratch,
|
| - extra, extra2, extra3);
|
| + ProbeTable(isolate, masm, flags, kSecondary, receiver, name, scratch, extra,
|
| + extra2, extra3);
|
|
|
| // Cache miss: Fall-through and let caller handle the miss by
|
| // entering the runtime system.
|
|
|