Chromium Code Reviews

Unified Diff: src/mark-compact.cc

Issue 10824032: Enables V8 integration with the Intel VTune performance analysis tool. This allows the VTune profi… (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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_) {

Powered by Google App Engine