Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1285)

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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
This is Rietveld 408576698