Chromium Code Reviews

Unified Diff: src/ia32/lithium-codegen-ia32.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/ia32/lithium-codegen-ia32.cc
===================================================================
--- src/ia32/lithium-codegen-ia32.cc (revision 12182)
+++ src/ia32/lithium-codegen-ia32.cc (working copy)
@@ -305,6 +305,14 @@
Comment(";;; @%d: %s.", current_instruction_, instr->Mnemonic());
instr->CompileToNative(this);
}
+#ifdef ENABLE_VTUNE_JIT_INTERFACE
+ if (instr->HasPointerMap()) {
+ LPointerMap* pointers = instr->pointer_map();
+ if (pointers->position() != RelocInfo::kNoPosition) {
+ RecordPosition(pointers->position());
+ }
+ }
+#endif
}
EnsureSpaceForLazyDeopt();
return !is_aborted();

Powered by Google App Engine