| Index: src/ic/x87/stub-cache-x87.cc
|
| diff --git a/src/ic/x87/stub-cache-x87.cc b/src/ic/x87/stub-cache-x87.cc
|
| index b238e5fff6853e5e3cdfe7825e56fda6f8c81d0f..9cbdfef6a174401b77dfe3c13777756402b399d6 100644
|
| --- a/src/ic/x87/stub-cache-x87.cc
|
| +++ b/src/ic/x87/stub-cache-x87.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 name, Register receiver,
|
| + Code::Flags flags, StubCache::Table table, Register name,
|
| + Register receiver,
|
| // Number of the cache entry pointer-size scaled.
|
| Register offset, Register extra) {
|
| ExternalReference key_offset(isolate->stub_cache()->key_reference(table));
|
| @@ -186,8 +185,7 @@ void StubCache::GenerateProbe(MacroAssembler* masm, Code::Kind ic_kind,
|
| DCHECK(kCacheIndexShift == kPointerSizeLog2);
|
|
|
| // Probe the primary table.
|
| - ProbeTable(isolate(), masm, ic_kind, flags, kPrimary, name, receiver, offset,
|
| - extra);
|
| + ProbeTable(isolate(), masm, flags, kPrimary, name, receiver, offset, extra);
|
|
|
| // Primary miss: Compute hash for secondary probe.
|
| __ mov(offset, FieldOperand(name, Name::kHashFieldOffset));
|
| @@ -199,8 +197,7 @@ void StubCache::GenerateProbe(MacroAssembler* masm, Code::Kind ic_kind,
|
| __ and_(offset, (kSecondaryTableSize - 1) << kCacheIndexShift);
|
|
|
| // Probe the secondary table.
|
| - ProbeTable(isolate(), masm, ic_kind, flags, kSecondary, name, receiver,
|
| - offset, extra);
|
| + ProbeTable(isolate(), masm, flags, kSecondary, name, receiver, offset, extra);
|
|
|
| // Cache miss: Fall-through and let caller handle the miss by
|
| // entering the runtime system.
|
|
|