Index: src/mark-compact.cc |
=================================================================== |
--- src/mark-compact.cc (revision 12182) |
+++ src/mark-compact.cc (working copy) |
@@ -689,9 +689,13 @@ |
#ifdef ENABLE_GDB_JIT_INTERFACE |
if (FLAG_gdbjit) { |
// If GDBJIT interface is active disable compaction. |
- compacting_collection_ = false; |
+ compacting_ = false; |
} |
#endif |
+// For now, set compacting to false when vtune is running. |
+// Ideally we want to communicate the code movement. |
+if (VTUNERUNNING) |
+ compacting_ = false; |
danno
2012/08/02 12:38:11
Can you extend siggi's SetJitCodeEventHandler API
|
// Clear marking bits if incremental marking is aborted. |
if (was_marked_incrementally_ && abort_incremental_marking_) { |