Changeset 244811 in webkit for trunk/Source/JavaScriptCore/dfg/DFGDisassembler.cpp
- Timestamp:
- Apr 30, 2019, 4:37:27 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGDisassembler.cpp
r244764 r244811 75 75 void Disassembler::dumpHeader(PrintStream& out, LinkBuffer& linkBuffer) 76 76 { 77 out.print("Generated DFG JIT code for ", CodeBlockWithJITType(m_graph.m_codeBlock, JITType::DFGJIT), ", instruction count = ", m_graph.m_codeBlock->instructionCount(), ":\n");77 out.print("Generated DFG JIT code for ", CodeBlockWithJITType(m_graph.m_codeBlock, JITType::DFGJIT), ", instructions size = ", m_graph.m_codeBlock->instructionsSize(), ":\n"); 78 78 out.print(" Optimized with execution counter = ", m_graph.m_profiledBlock->jitExecuteCounter(), "\n"); 79 79 out.print(" Code at [", RawPointer(linkBuffer.debugAddress()), ", ", RawPointer(static_cast<char*>(linkBuffer.debugAddress()) + linkBuffer.size()), "):\n");
Note:
See TracChangeset
for help on using the changeset viewer.