Title: [194293] trunk/Source/_javascript_Core
- Revision
- 194293
- Author
- [email protected]
- Date
- 2015-12-18 13:52:07 -0800 (Fri, 18 Dec 2015)
Log Message
verboseDFGByteCodeParsing option should show the bytecode it is parsing.
https://bugs.webkit.org/show_bug.cgi?id=152434
Reviewed by Michael Saboff.
* dfg/DFGByteCodeParser.cpp:
(JSC::DFG::ByteCodeParser::parseBlock):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (194292 => 194293)
--- trunk/Source/_javascript_Core/ChangeLog 2015-12-18 21:29:18 UTC (rev 194292)
+++ trunk/Source/_javascript_Core/ChangeLog 2015-12-18 21:52:07 UTC (rev 194293)
@@ -1,3 +1,13 @@
+2015-12-18 Keith Miller <[email protected]>
+
+ verboseDFGByteCodeParsing option should show the bytecode it is parsing.
+ https://bugs.webkit.org/show_bug.cgi?id=152434
+
+ Reviewed by Michael Saboff.
+
+ * dfg/DFGByteCodeParser.cpp:
+ (JSC::DFG::ByteCodeParser::parseBlock):
+
2015-12-18 Csaba Osztrogonác <[email protected]>
[ARM] Add the missing setupArgumentsWithExecState functions after r193974
Modified: trunk/Source/_javascript_Core/dfg/DFGByteCodeParser.cpp (194292 => 194293)
--- trunk/Source/_javascript_Core/dfg/DFGByteCodeParser.cpp 2015-12-18 21:29:18 UTC (rev 194292)
+++ trunk/Source/_javascript_Core/dfg/DFGByteCodeParser.cpp 2015-12-18 21:52:07 UTC (rev 194293)
@@ -3202,7 +3202,7 @@
OpcodeID opcodeID = interpreter->getOpcodeID(currentInstruction->u.opcode);
if (Options::verboseDFGByteCodeParsing())
- dataLog(" parsing ", currentCodeOrigin(), "\n");
+ dataLog(" parsing ", currentCodeOrigin(), ": ", opcodeID, "\n");
if (m_graph.compilation()) {
addToGraph(CountExecution, OpInfo(m_graph.compilation()->executionCounterFor(
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes