| Index: src/ic/ppc/stub-cache-ppc.cc
|
| diff --git a/src/ic/ppc/stub-cache-ppc.cc b/src/ic/ppc/stub-cache-ppc.cc
|
| index 0e1d330fda2280e19ea873e98c785be1a9ff1320..45a620ccfcd3466db069478e8e069b311a5e59b3 100644
|
| --- a/src/ic/ppc/stub-cache-ppc.cc
|
| +++ b/src/ic/ppc/stub-cache-ppc.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) {
|
| @@ -163,8 +162,8 @@ void StubCache::GenerateProbe(MacroAssembler* masm, Code::Kind ic_kind,
|
| Operand((kPrimaryTableSize - 1) << kCacheIndexShift));
|
|
|
| // 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.
|
| __ sub(scratch, scratch, name);
|
| @@ -173,8 +172,8 @@ void StubCache::GenerateProbe(MacroAssembler* masm, Code::Kind ic_kind,
|
| Operand((kSecondaryTableSize - 1) << kCacheIndexShift));
|
|
|
| // 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.
|
|
|