| Index: src/ia32/assembler-ia32-inl.h
|
| ===================================================================
|
| --- src/ia32/assembler-ia32-inl.h (revision 6800)
|
| +++ src/ia32/assembler-ia32-inl.h (working copy)
|
| @@ -49,20 +49,24 @@
|
| if (rmode_ == RUNTIME_ENTRY || IsCodeTarget(rmode_)) {
|
| int32_t* p = reinterpret_cast<int32_t*>(pc_);
|
| *p -= delta; // Relocate entry.
|
| + CPU::FlushICache(p, sizeof(uint32_t));
|
| } else if (rmode_ == JS_RETURN && IsPatchedReturnSequence()) {
|
| // Special handling of js_return when a break point is set (call
|
| // instruction has been inserted).
|
| int32_t* p = reinterpret_cast<int32_t*>(pc_ + 1);
|
| *p -= delta; // Relocate entry.
|
| + CPU::FlushICache(p, sizeof(uint32_t));
|
| } else if (rmode_ == DEBUG_BREAK_SLOT && IsPatchedDebugBreakSlotSequence()) {
|
| // Special handling of a debug break slot when a break point is set (call
|
| // instruction has been inserted).
|
| int32_t* p = reinterpret_cast<int32_t*>(pc_ + 1);
|
| *p -= delta; // Relocate entry.
|
| + CPU::FlushICache(p, sizeof(uint32_t));
|
| } else if (IsInternalReference(rmode_)) {
|
| // absolute code pointer inside code object moves with the code object.
|
| int32_t* p = reinterpret_cast<int32_t*>(pc_);
|
| *p += delta; // Relocate entry.
|
| + CPU::FlushICache(p, sizeof(uint32_t));
|
| }
|
| }
|
|
|
| @@ -111,6 +115,7 @@
|
| void RelocInfo::set_target_object(Object* target) {
|
| ASSERT(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
|
| Memory::Object_at(pc_) = target;
|
| + CPU::FlushICache(pc_, sizeof(Address));
|
| }
|
|
|
|
|
| @@ -141,6 +146,7 @@
|
| ASSERT(rmode_ == RelocInfo::GLOBAL_PROPERTY_CELL);
|
| Address address = cell->address() + JSGlobalPropertyCell::kValueOffset;
|
| Memory::Address_at(pc_) = address;
|
| + CPU::FlushICache(pc_, sizeof(Address));
|
| }
|
|
|
|
|
| @@ -189,12 +195,14 @@
|
| RelocInfo::Mode mode = rmode();
|
| if (mode == RelocInfo::EMBEDDED_OBJECT) {
|
| visitor->VisitPointer(target_object_address());
|
| + CPU::FlushICache(pc_, sizeof(Address));
|
| } else if (RelocInfo::IsCodeTarget(mode)) {
|
| visitor->VisitCodeTarget(this);
|
| } else if (mode == RelocInfo::GLOBAL_PROPERTY_CELL) {
|
| visitor->VisitGlobalPropertyCell(this);
|
| } else if (mode == RelocInfo::EXTERNAL_REFERENCE) {
|
| visitor->VisitExternalReference(target_reference_address());
|
| + CPU::FlushICache(pc_, sizeof(Address));
|
| #ifdef ENABLE_DEBUGGER_SUPPORT
|
| } else if (Debug::has_break_points() &&
|
| ((RelocInfo::IsJSReturn(mode) &&
|
| @@ -214,12 +222,14 @@
|
| RelocInfo::Mode mode = rmode();
|
| if (mode == RelocInfo::EMBEDDED_OBJECT) {
|
| StaticVisitor::VisitPointer(target_object_address());
|
| + CPU::FlushICache(pc_, sizeof(Address));
|
| } else if (RelocInfo::IsCodeTarget(mode)) {
|
| StaticVisitor::VisitCodeTarget(this);
|
| } else if (mode == RelocInfo::GLOBAL_PROPERTY_CELL) {
|
| StaticVisitor::VisitGlobalPropertyCell(this);
|
| } else if (mode == RelocInfo::EXTERNAL_REFERENCE) {
|
| StaticVisitor::VisitExternalReference(target_reference_address());
|
| + CPU::FlushICache(pc_, sizeof(Address));
|
| #ifdef ENABLE_DEBUGGER_SUPPORT
|
| } else if (Debug::has_break_points() &&
|
| ((RelocInfo::IsJSReturn(mode) &&
|
|
|