Index: src/x64/assembler-x64-inl.h |
diff --git a/src/x64/assembler-x64-inl.h b/src/x64/assembler-x64-inl.h |
index 10f0b886da57d37638400c3fc3df9d402dc6df07..f7b87ec041b079f18d947bb816179b82e4ea018d 100644 |
--- a/src/x64/assembler-x64-inl.h |
+++ b/src/x64/assembler-x64-inl.h |
@@ -238,12 +238,12 @@ int RelocInfo::target_address_size() { |
} |
-void RelocInfo::set_target_address(Address target) { |
+void RelocInfo::set_target_address(Address target, WriteBarrierMode mode) { |
ASSERT(IsCodeTarget(rmode_) || rmode_ == RUNTIME_ENTRY); |
if (IsCodeTarget(rmode_)) { |
Assembler::set_target_address_at(pc_, target); |
Object* target_code = Code::GetCodeFromTargetAddress(target); |
- if (host() != NULL) { |
+ if (mode == UPDATE_WRITE_BARRIER && host() != NULL) { |
host()->GetHeap()->incremental_marking()->RecordWriteIntoCode( |
host(), this, HeapObject::cast(target_code)); |
} |
@@ -282,11 +282,13 @@ Address* RelocInfo::target_reference_address() { |
} |
-void RelocInfo::set_target_object(Object* target) { |
+void RelocInfo::set_target_object(Object* target, WriteBarrierMode mode) { |
ASSERT(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT); |
Memory::Object_at(pc_) = target; |
CPU::FlushICache(pc_, sizeof(Address)); |
- if (host() != NULL && target->IsHeapObject()) { |
+ if (mode == UPDATE_WRITE_BARRIER && |
+ host() != NULL && |
+ target->IsHeapObject()) { |
host()->GetHeap()->incremental_marking()->RecordWrite( |
host(), &Memory::Object_at(pc_), HeapObject::cast(target)); |
} |
@@ -310,12 +312,14 @@ JSGlobalPropertyCell* RelocInfo::target_cell() { |
} |
-void RelocInfo::set_target_cell(JSGlobalPropertyCell* cell) { |
+void RelocInfo::set_target_cell(JSGlobalPropertyCell* cell, |
+ WriteBarrierMode mode) { |
ASSERT(rmode_ == RelocInfo::GLOBAL_PROPERTY_CELL); |
Address address = cell->address() + JSGlobalPropertyCell::kValueOffset; |
Memory::Address_at(pc_) = address; |
CPU::FlushICache(pc_, sizeof(Address)); |
- if (host() != NULL) { |
+ if (mode == UPDATE_WRITE_BARRIER && |
+ host() != NULL) { |
// TODO(1550) We are passing NULL as a slot because cell can never be on |
// evacuation candidate. |
host()->GetHeap()->incremental_marking()->RecordWrite( |