Index: src/ia32/assembler-ia32-inl.h |
=================================================================== |
--- src/ia32/assembler-ia32-inl.h (revision 9327) |
+++ src/ia32/assembler-ia32-inl.h (working copy) |
@@ -89,8 +89,13 @@ |
void RelocInfo::set_target_address(Address target) { |
+ Assembler::set_target_address_at(pc_, target); |
ASSERT(IsCodeTarget(rmode_) || rmode_ == RUNTIME_ENTRY); |
- Assembler::set_target_address_at(pc_, target); |
+ if (host() != NULL && IsCodeTarget(rmode_)) { |
+ Object* target_code = Code::GetCodeFromTargetAddress(target); |
+ host()->GetHeap()->incremental_marking()->RecordWriteIntoCode( |
+ host(), this, HeapObject::cast(target_code)); |
+ } |
} |
@@ -116,6 +121,10 @@ |
ASSERT(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT); |
Memory::Object_at(pc_) = target; |
CPU::FlushICache(pc_, sizeof(Address)); |
+ if (host() != NULL && target->IsHeapObject()) { |
+ host()->GetHeap()->incremental_marking()->RecordWrite( |
+ host(), &Memory::Object_at(pc_), HeapObject::cast(target)); |
+ } |
} |
@@ -147,6 +156,12 @@ |
Address address = cell->address() + JSGlobalPropertyCell::kValueOffset; |
Memory::Address_at(pc_) = address; |
CPU::FlushICache(pc_, sizeof(Address)); |
+ if (host() != NULL) { |
+ // TODO(1550) We are passing NULL as a slot because cell can never be on |
+ // evacuation candidate. |
+ host()->GetHeap()->incremental_marking()->RecordWrite( |
+ host(), NULL, cell); |
+ } |
} |
@@ -161,6 +176,11 @@ |
ASSERT((IsJSReturn(rmode()) && IsPatchedReturnSequence()) || |
(IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence())); |
Assembler::set_target_address_at(pc_ + 1, target); |
+ if (host() != NULL) { |
+ Object* target_code = Code::GetCodeFromTargetAddress(target); |
+ host()->GetHeap()->incremental_marking()->RecordWriteIntoCode( |
+ host(), this, HeapObject::cast(target_code)); |
+ } |
} |