Modified: trunk/Source/_javascript_Core/ChangeLog (137400 => 137401)
--- trunk/Source/_javascript_Core/ChangeLog 2012-12-12 02:05:29 UTC (rev 137400)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-12-12 02:19:25 UTC (rev 137401)
@@ -1,5 +1,12 @@
2012-12-11 Filip Pizlo <[email protected]>
+ Unreviewed. Fix build with DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE).
+
+ * bytecode/CodeBlock.cpp:
+ (JSC::CodeBlock::tallyFrequentExitSites):
+
+2012-12-11 Filip Pizlo <[email protected]>
+
Profiler should show bytecode dumps as they would have been visible to the JITs, including the profiling data that the JITs would see
https://bugs.webkit.org/show_bug.cgi?id=104647
Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp (137400 => 137401)
--- trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp 2012-12-12 02:05:29 UTC (rev 137400)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp 2012-12-12 02:19:25 UTC (rev 137401)
@@ -3282,7 +3282,7 @@
continue;
#if DFG_ENABLE(DEBUG_VERBOSE)
- dataLog("OSR exit #", i, " (bc#", exit.m_codeOrigin.bytecodeIndex, ", @", exit.m_nodeIndex, ", ", DFG::exitKindToString(exit.m_kind), ") for ", *this, " occurred frequently: counting as frequent exit site.\n");
+ dataLog("OSR exit #", i, " (bc#", exit.m_codeOrigin.bytecodeIndex, ", @", exit.m_nodeIndex, ", ", exit.m_kind, ") for ", *this, " occurred frequently: counting as frequent exit site.\n");
#endif
}
}