Changeset 121382 in webkit for trunk/Source/JavaScriptCore/dfg/DFGDisassembler.cpp
- Timestamp:
- Jun 27, 2012, 4:16:10 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGDisassembler.cpp
r120834 r121382 44 44 m_graph.m_dominators.computeIfNecessary(m_graph); 45 45 46 dataLog("Generated JIT code for DFG CodeBlock %p :\n", m_graph.m_codeBlock);46 dataLog("Generated JIT code for DFG CodeBlock %p, instruction count = %u:\n", m_graph.m_codeBlock, m_graph.m_codeBlock->instructionCount()); 47 47 dataLog(" Code at [%p, %p):\n", linkBuffer.debugAddress(), static_cast<char*>(linkBuffer.debugAddress()) + linkBuffer.debugSize()); 48 48 … … 60 60 NodeIndex lastNodeIndexForDisassembly = block->at(0); 61 61 for (size_t i = 0; i < block->size(); ++i) { 62 if (!m_graph[block->at(i)].willHaveCodeGen ())62 if (!m_graph[block->at(i)].willHaveCodeGenOrOSR()) 63 63 continue; 64 64 MacroAssembler::Label currentLabel;
Note:
See TracChangeset
for help on using the changeset viewer.