| Index: src/mips/ic-mips.cc
|
| diff --git a/src/mips/ic-mips.cc b/src/mips/ic-mips.cc
|
| index db52fa2ea1ccecd3b8953ffec6b80883ebd6a4e5..7b15953533c698d0b35ff0902a4d36e69ecf44c6 100644
|
| --- a/src/mips/ic-mips.cc
|
| +++ b/src/mips/ic-mips.cc
|
| @@ -348,9 +348,7 @@ void LoadIC::GenerateMegamorphic(MacroAssembler* masm,
|
| // -----------------------------------
|
|
|
| // Probe the stub cache.
|
| - Code::Flags flags = Code::ComputeFlags(
|
| - Code::HANDLER, MONOMORPHIC, extra_state,
|
| - Code::NORMAL, Code::LOAD_IC);
|
| + Code::Flags flags = Code::ComputeHandlerFlags(Code::LOAD_IC, extra_state);
|
| masm->isolate()->stub_cache()->GenerateProbe(
|
| masm, flags, a0, a2, a3, t0, t1, t2);
|
|
|
| @@ -1182,7 +1180,7 @@ void KeyedStoreIC::GenerateSlow(MacroAssembler* masm) {
|
|
|
|
|
| void StoreIC::GenerateMegamorphic(MacroAssembler* masm,
|
| - ExtraICState extra_ic_state) {
|
| + ExtraICState extra_state) {
|
| // ----------- S t a t e -------------
|
| // -- a0 : value
|
| // -- a1 : receiver
|
| @@ -1191,9 +1189,7 @@ void StoreIC::GenerateMegamorphic(MacroAssembler* masm,
|
| // -----------------------------------
|
|
|
| // Get the receiver from the stack and probe the stub cache.
|
| - Code::Flags flags = Code::ComputeFlags(
|
| - Code::HANDLER, MONOMORPHIC, extra_ic_state,
|
| - Code::NORMAL, Code::STORE_IC);
|
| + Code::Flags flags = Code::ComputeHandlerFlags(Code::STORE_IC, extra_state);
|
| masm->isolate()->stub_cache()->GenerateProbe(
|
| masm, flags, a1, a2, a3, t0, t1, t2);
|
|
|
|
|