Commit 6c7a5d12 authored by vegorov@chromium.org's avatar vegorov@chromium.org

Avoid write-barriers when initializing newly created Code object.

R=erik.corry@gmail.com

Review URL: http://codereview.chromium.org/8365029

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9738 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 5bb6d386
...@@ -279,14 +279,17 @@ class RelocInfo BASE_EMBEDDED { ...@@ -279,14 +279,17 @@ class RelocInfo BASE_EMBEDDED {
// this relocation applies to; // this relocation applies to;
// can only be called if IsCodeTarget(rmode_) || rmode_ == RUNTIME_ENTRY // can only be called if IsCodeTarget(rmode_) || rmode_ == RUNTIME_ENTRY
INLINE(Address target_address()); INLINE(Address target_address());
INLINE(void set_target_address(Address target)); INLINE(void set_target_address(Address target,
WriteBarrierMode mode = UPDATE_WRITE_BARRIER));
INLINE(Object* target_object()); INLINE(Object* target_object());
INLINE(Handle<Object> target_object_handle(Assembler* origin)); INLINE(Handle<Object> target_object_handle(Assembler* origin));
INLINE(Object** target_object_address()); INLINE(Object** target_object_address());
INLINE(void set_target_object(Object* target)); INLINE(void set_target_object(Object* target,
WriteBarrierMode mode = UPDATE_WRITE_BARRIER));
INLINE(JSGlobalPropertyCell* target_cell()); INLINE(JSGlobalPropertyCell* target_cell());
INLINE(Handle<JSGlobalPropertyCell> target_cell_handle()); INLINE(Handle<JSGlobalPropertyCell> target_cell_handle());
INLINE(void set_target_cell(JSGlobalPropertyCell* cell)); INLINE(void set_target_cell(JSGlobalPropertyCell* cell,
WriteBarrierMode mode = UPDATE_WRITE_BARRIER));
// Read the address of the word containing the target_address in an // Read the address of the word containing the target_address in an
......
...@@ -88,10 +88,10 @@ int RelocInfo::target_address_size() { ...@@ -88,10 +88,10 @@ int RelocInfo::target_address_size() {
} }
void RelocInfo::set_target_address(Address target) { void RelocInfo::set_target_address(Address target, WriteBarrierMode mode) {
Assembler::set_target_address_at(pc_, target); Assembler::set_target_address_at(pc_, target);
ASSERT(IsCodeTarget(rmode_) || rmode_ == RUNTIME_ENTRY); ASSERT(IsCodeTarget(rmode_) || rmode_ == RUNTIME_ENTRY);
if (host() != NULL && IsCodeTarget(rmode_)) { if (mode == UPDATE_WRITE_BARRIER && host() != NULL && IsCodeTarget(rmode_)) {
Object* target_code = Code::GetCodeFromTargetAddress(target); Object* target_code = Code::GetCodeFromTargetAddress(target);
host()->GetHeap()->incremental_marking()->RecordWriteIntoCode( host()->GetHeap()->incremental_marking()->RecordWriteIntoCode(
host(), this, HeapObject::cast(target_code)); host(), this, HeapObject::cast(target_code));
...@@ -117,11 +117,13 @@ Object** RelocInfo::target_object_address() { ...@@ -117,11 +117,13 @@ Object** RelocInfo::target_object_address() {
} }
void RelocInfo::set_target_object(Object* target) { void RelocInfo::set_target_object(Object* target, WriteBarrierMode mode) {
ASSERT(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT); ASSERT(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
Memory::Object_at(pc_) = target; Memory::Object_at(pc_) = target;
CPU::FlushICache(pc_, sizeof(Address)); 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()->GetHeap()->incremental_marking()->RecordWrite(
host(), &Memory::Object_at(pc_), HeapObject::cast(target)); host(), &Memory::Object_at(pc_), HeapObject::cast(target));
} }
...@@ -151,12 +153,13 @@ JSGlobalPropertyCell* RelocInfo::target_cell() { ...@@ -151,12 +153,13 @@ 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); ASSERT(rmode_ == RelocInfo::GLOBAL_PROPERTY_CELL);
Address address = cell->address() + JSGlobalPropertyCell::kValueOffset; Address address = cell->address() + JSGlobalPropertyCell::kValueOffset;
Memory::Address_at(pc_) = address; Memory::Address_at(pc_) = address;
CPU::FlushICache(pc_, sizeof(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 // TODO(1550) We are passing NULL as a slot because cell can never be on
// evacuation candidate. // evacuation candidate.
host()->GetHeap()->incremental_marking()->RecordWrite( host()->GetHeap()->incremental_marking()->RecordWrite(
......
...@@ -7666,6 +7666,8 @@ void Code::Relocate(intptr_t delta) { ...@@ -7666,6 +7666,8 @@ void Code::Relocate(intptr_t delta) {
void Code::CopyFrom(const CodeDesc& desc) { void Code::CopyFrom(const CodeDesc& desc) {
ASSERT(Marking::Color(this) == Marking::WHITE_OBJECT);
// copy code // copy code
memmove(instruction_start(), desc.buffer, desc.instr_size); memmove(instruction_start(), desc.buffer, desc.instr_size);
...@@ -7685,16 +7687,17 @@ void Code::CopyFrom(const CodeDesc& desc) { ...@@ -7685,16 +7687,17 @@ void Code::CopyFrom(const CodeDesc& desc) {
RelocInfo::Mode mode = it.rinfo()->rmode(); RelocInfo::Mode mode = it.rinfo()->rmode();
if (mode == RelocInfo::EMBEDDED_OBJECT) { if (mode == RelocInfo::EMBEDDED_OBJECT) {
Handle<Object> p = it.rinfo()->target_object_handle(origin); Handle<Object> p = it.rinfo()->target_object_handle(origin);
it.rinfo()->set_target_object(*p); it.rinfo()->set_target_object(*p, SKIP_WRITE_BARRIER);
} else if (mode == RelocInfo::GLOBAL_PROPERTY_CELL) { } else if (mode == RelocInfo::GLOBAL_PROPERTY_CELL) {
Handle<JSGlobalPropertyCell> cell = it.rinfo()->target_cell_handle(); Handle<JSGlobalPropertyCell> cell = it.rinfo()->target_cell_handle();
it.rinfo()->set_target_cell(*cell); it.rinfo()->set_target_cell(*cell, SKIP_WRITE_BARRIER);
} else if (RelocInfo::IsCodeTarget(mode)) { } else if (RelocInfo::IsCodeTarget(mode)) {
// rewrite code handles in inline cache targets to direct // rewrite code handles in inline cache targets to direct
// pointers to the first instruction in the code object // pointers to the first instruction in the code object
Handle<Object> p = it.rinfo()->target_object_handle(origin); Handle<Object> p = it.rinfo()->target_object_handle(origin);
Code* code = Code::cast(*p); Code* code = Code::cast(*p);
it.rinfo()->set_target_address(code->instruction_start()); it.rinfo()->set_target_address(code->instruction_start(),
SKIP_WRITE_BARRIER);
} else { } else {
it.rinfo()->apply(delta); it.rinfo()->apply(delta);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment