| Index: src/arm/ic-arm.cc
|
| ===================================================================
|
| --- src/arm/ic-arm.cc (revision 4776)
|
| +++ src/arm/ic-arm.cc (working copy)
|
| @@ -300,7 +300,8 @@
|
| // Probe the stub cache.
|
| Code::Flags flags =
|
| Code::ComputeFlags(Code::CALL_IC, NOT_IN_LOOP, MONOMORPHIC, NORMAL, argc);
|
| - StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);
|
| + Isolate::Current()->stub_cache()->GenerateProbe(masm, flags, r1, r2, r3,
|
| + no_reg);
|
|
|
| // If the stub cache probing failed, the receiver might be a value.
|
| // For value objects, we use the map of the prototype objects for
|
| @@ -339,7 +340,8 @@
|
|
|
| // Probe the stub cache for the value object.
|
| __ bind(&probe);
|
| - StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);
|
| + Isolate::Current()->stub_cache()->GenerateProbe(masm, flags, r1, r2, r3,
|
| + no_reg);
|
|
|
| // Cache miss: Jump to runtime.
|
| __ bind(&miss);
|
| @@ -497,7 +499,8 @@
|
| Code::Flags flags = Code::ComputeFlags(Code::LOAD_IC,
|
| NOT_IN_LOOP,
|
| MONOMORPHIC);
|
| - StubCache::GenerateProbe(masm, flags, r0, r2, r3, no_reg);
|
| + Isolate::Current()->stub_cache()->GenerateProbe(masm, flags, r0, r2, r3,
|
| + no_reg);
|
|
|
| // Cache miss: Jump to runtime.
|
| GenerateMiss(masm);
|
| @@ -1737,7 +1740,8 @@
|
| Code::Flags flags = Code::ComputeFlags(Code::STORE_IC,
|
| NOT_IN_LOOP,
|
| MONOMORPHIC);
|
| - StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);
|
| + Isolate::Current()->stub_cache()->GenerateProbe(masm, flags, r1, r2, r3,
|
| + no_reg);
|
|
|
| // Cache miss: Jump to runtime.
|
| GenerateMiss(masm);
|
|
|