| Index: src/arm/ic-arm.cc
|
| ===================================================================
|
| --- src/arm/ic-arm.cc (revision 8507)
|
| +++ src/arm/ic-arm.cc (working copy)
|
| @@ -494,7 +494,7 @@
|
| NORMAL,
|
| argc);
|
| Isolate::Current()->stub_cache()->GenerateProbe(
|
| - masm, flags, r1, r2, r3, r4, r5);
|
| + masm, flags, r1, r2, r3, r4, r5, r6);
|
|
|
| // If the stub cache probing failed, the receiver might be a value.
|
| // For value objects, we use the map of the prototype objects for
|
| @@ -533,7 +533,7 @@
|
| // Probe the stub cache for the value object.
|
| __ bind(&probe);
|
| Isolate::Current()->stub_cache()->GenerateProbe(
|
| - masm, flags, r1, r2, r3, r4, r5);
|
| + masm, flags, r1, r2, r3, r4, r5, r6);
|
|
|
| __ bind(&miss);
|
| }
|
| @@ -833,7 +833,7 @@
|
| NOT_IN_LOOP,
|
| MONOMORPHIC);
|
| Isolate::Current()->stub_cache()->GenerateProbe(
|
| - masm, flags, r0, r2, r3, r4, r5);
|
| + masm, flags, r0, r2, r3, r4, r5, r6);
|
|
|
| // Cache miss: Jump to runtime.
|
| GenerateMiss(masm);
|
| @@ -1481,7 +1481,7 @@
|
| strict_mode);
|
|
|
| Isolate::Current()->stub_cache()->GenerateProbe(
|
| - masm, flags, r1, r2, r3, r4, r5);
|
| + masm, flags, r1, r2, r3, r4, r5, r6);
|
|
|
| // Cache miss: Jump to runtime.
|
| GenerateMiss(masm);
|
|
|