| Index: src/ic/x64/ic-x64.cc
|
| diff --git a/src/ic/x64/ic-x64.cc b/src/ic/x64/ic-x64.cc
|
| index bf4ad96f69ca3ea57c27f883c8074cecd70ad987..f3535ddfc1f1b7d968e2a61621d80793f1666db9 100644
|
| --- a/src/ic/x64/ic-x64.cc
|
| +++ b/src/ic/x64/ic-x64.cc
|
| @@ -301,7 +301,7 @@ void KeyedLoadIC::GenerateMegamorphic(MacroAssembler* masm,
|
| GenerateFastArrayLoad(masm, receiver, key, rax, rbx, rax, &slow,
|
| language_mode);
|
| Counters* counters = masm->isolate()->counters();
|
| - __ IncrementCounter(counters->keyed_load_generic_smi(), 1);
|
| + __ IncrementCounter(counters->ic_keyed_load_generic_smi(), 1);
|
| __ ret(0);
|
|
|
| __ bind(&check_number_dictionary);
|
| @@ -319,7 +319,7 @@ void KeyedLoadIC::GenerateMegamorphic(MacroAssembler* masm,
|
|
|
| __ bind(&slow);
|
| // Slow case: Jump to runtime.
|
| - __ IncrementCounter(counters->keyed_load_generic_slow(), 1);
|
| + __ IncrementCounter(counters->ic_keyed_load_generic_slow(), 1);
|
| KeyedLoadIC::GenerateRuntimeGetProperty(masm, language_mode);
|
|
|
| __ bind(&check_name);
|
| @@ -366,7 +366,7 @@ void KeyedLoadIC::GenerateMegamorphic(MacroAssembler* masm,
|
| GenerateGlobalInstanceTypeCheck(masm, rax, &slow);
|
|
|
| GenerateDictionaryLoad(masm, &slow, rbx, key, rax, rdi, rax);
|
| - __ IncrementCounter(counters->keyed_load_generic_symbol(), 1);
|
| + __ IncrementCounter(counters->ic_keyed_load_generic_symbol(), 1);
|
| __ ret(0);
|
|
|
| __ bind(&index_name);
|
| @@ -667,7 +667,7 @@ void LoadIC::GenerateMiss(MacroAssembler* masm) {
|
| // The return address is on the stack.
|
|
|
| Counters* counters = masm->isolate()->counters();
|
| - __ IncrementCounter(counters->load_miss(), 1);
|
| + __ IncrementCounter(counters->ic_load_miss(), 1);
|
|
|
| LoadIC_PushArgs(masm);
|
|
|
| @@ -698,7 +698,7 @@ void LoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm,
|
| void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) {
|
| // The return address is on the stack.
|
| Counters* counters = masm->isolate()->counters();
|
| - __ IncrementCounter(counters->keyed_load_miss(), 1);
|
| + __ IncrementCounter(counters->ic_keyed_load_miss(), 1);
|
|
|
| LoadIC_PushArgs(masm);
|
|
|
| @@ -774,11 +774,11 @@ void StoreIC::GenerateNormal(MacroAssembler* masm) {
|
| __ movp(dictionary, FieldOperand(receiver, JSObject::kPropertiesOffset));
|
| GenerateDictionaryStore(masm, &miss, dictionary, name, value, r8, r9);
|
| Counters* counters = masm->isolate()->counters();
|
| - __ IncrementCounter(counters->store_normal_hit(), 1);
|
| + __ IncrementCounter(counters->ic_store_normal_hit(), 1);
|
| __ ret(0);
|
|
|
| __ bind(&miss);
|
| - __ IncrementCounter(counters->store_normal_miss(), 1);
|
| + __ IncrementCounter(counters->ic_store_normal_miss(), 1);
|
| GenerateMiss(masm);
|
| }
|
|
|
|
|