| Index: src/ia32/ic-ia32.cc
|
| diff --git a/src/ia32/ic-ia32.cc b/src/ia32/ic-ia32.cc
|
| index 53742dc8913dcb3bc37842bd4b7389fa4e311802..0b85829809db588fae2aa45b43b250c4b0fd5015 100644
|
| --- a/src/ia32/ic-ia32.cc
|
| +++ b/src/ia32/ic-ia32.cc
|
| @@ -952,7 +952,7 @@ void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm,
|
| void CallICBase::GenerateMonomorphicCacheProbe(MacroAssembler* masm,
|
| int argc,
|
| Code::Kind kind,
|
| - Code::ExtraICState extra_state) {
|
| + ExtraICState extra_state) {
|
| // ----------- S t a t e -------------
|
| // -- ecx : name
|
| // -- edx : receiver
|
| @@ -1061,7 +1061,7 @@ void CallICBase::GenerateNormal(MacroAssembler* masm, int argc) {
|
| void CallICBase::GenerateMiss(MacroAssembler* masm,
|
| int argc,
|
| IC::UtilityId id,
|
| - Code::ExtraICState extra_state) {
|
| + ExtraICState extra_state) {
|
| // ----------- S t a t e -------------
|
| // -- ecx : name
|
| // -- esp[0] : return address
|
| @@ -1132,7 +1132,7 @@ void CallICBase::GenerateMiss(MacroAssembler* masm,
|
|
|
| void CallIC::GenerateMegamorphic(MacroAssembler* masm,
|
| int argc,
|
| - Code::ExtraICState extra_state) {
|
| + ExtraICState extra_state) {
|
| // ----------- S t a t e -------------
|
| // -- ecx : name
|
| // -- esp[0] : return address
|
| @@ -1249,7 +1249,7 @@ void KeyedCallIC::GenerateMegamorphic(MacroAssembler* masm, int argc) {
|
| __ bind(&lookup_monomorphic_cache);
|
| __ IncrementCounter(counters->keyed_call_generic_lookup_cache(), 1);
|
| CallICBase::GenerateMonomorphicCacheProbe(masm, argc, Code::KEYED_CALL_IC,
|
| - Code::kNoExtraICState);
|
| + kNoExtraICState);
|
| // Fall through on miss.
|
|
|
| __ bind(&slow_call);
|
| @@ -1327,7 +1327,7 @@ void LoadIC::GenerateMegamorphic(MacroAssembler* masm) {
|
|
|
| // Probe the stub cache.
|
| Code::Flags flags = Code::ComputeFlags(
|
| - Code::HANDLER, MONOMORPHIC, Code::kNoExtraICState,
|
| + Code::HANDLER, MONOMORPHIC, kNoExtraICState,
|
| Code::NORMAL, Code::LOAD_IC);
|
| masm->isolate()->stub_cache()->GenerateProbe(
|
| masm, flags, edx, ecx, ebx, eax);
|
|
|