Index: src/x64/code-stubs-x64.cc |
diff --git a/src/x64/code-stubs-x64.cc b/src/x64/code-stubs-x64.cc |
index 602d3a01a926e18ea923affd85d4d832fcb9f148..077bf030f7b4e183e70ac0266fc2b3fa0c412172 100644 |
--- a/src/x64/code-stubs-x64.cc |
+++ b/src/x64/code-stubs-x64.cc |
@@ -1343,8 +1343,8 @@ static void GenerateRecordCallTarget(MacroAssembler* masm) { |
// rdx : slot in feedback vector (Smi) |
// rdi : the function to call |
Isolate* isolate = masm->isolate(); |
- Label initialize, done, miss, megamorphic, not_array_function, |
- done_no_smi_convert; |
+ Label initialize, done, miss, megamorphic, not_array_function; |
+ Label done_initialize_count, done_increment_count; |
// Load the cache state into r11. |
__ SmiToInteger32(rdx, rdx); |
@@ -1358,7 +1358,7 @@ static void GenerateRecordCallTarget(MacroAssembler* masm) { |
// type-feedback-vector.h). |
Label check_allocation_site; |
__ cmpp(rdi, FieldOperand(r11, WeakCell::kValueOffset)); |
- __ j(equal, &done, Label::kFar); |
+ __ j(equal, &done_increment_count, Label::kFar); |
__ CompareRoot(r11, Heap::kmegamorphic_symbolRootIndex); |
__ j(equal, &done, Label::kFar); |
__ CompareRoot(FieldOperand(r11, HeapObject::kMapOffset), |
@@ -1382,7 +1382,7 @@ static void GenerateRecordCallTarget(MacroAssembler* masm) { |
__ LoadNativeContextSlot(Context::ARRAY_FUNCTION_INDEX, r11); |
__ cmpp(rdi, r11); |
__ j(not_equal, &megamorphic); |
- __ jmp(&done); |
+ __ jmp(&done_increment_count); |
__ bind(&miss); |
@@ -1408,17 +1408,29 @@ static void GenerateRecordCallTarget(MacroAssembler* masm) { |
CreateAllocationSiteStub create_stub(isolate); |
CallStubInRecordCallTarget(masm, &create_stub); |
- __ jmp(&done_no_smi_convert); |
+ __ jmp(&done_initialize_count); |
__ bind(¬_array_function); |
CreateWeakCellStub weak_cell_stub(isolate); |
CallStubInRecordCallTarget(masm, &weak_cell_stub); |
- __ jmp(&done_no_smi_convert); |
+ |
+ __ bind(&done_initialize_count); |
+ // Initialize the call counter. |
+ __ SmiToInteger32(rdx, rdx); |
+ __ Move(FieldOperand(rbx, rdx, times_pointer_size, |
+ FixedArray::kHeaderSize + kPointerSize), |
+ Smi::FromInt(1)); |
+ __ jmp(&done); |
+ |
+ __ bind(&done_increment_count); |
+ |
+ // Increment the call count for monomorphic function calls. |
+ __ SmiAddConstant(FieldOperand(rbx, rdx, times_pointer_size, |
+ FixedArray::kHeaderSize + kPointerSize), |
+ Smi::FromInt(1)); |
__ bind(&done); |
__ Integer32ToSmi(rdx, rdx); |
- |
- __ bind(&done_no_smi_convert); |
} |