Changeset 155820 in webkit for trunk/Source/JavaScriptCore/dfg/DFGOSRExitCompiler.cpp
- Timestamp:
- Sep 15, 2013, 11:53:23 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGOSRExitCompiler.cpp
r153200 r155820 34 34 #include "DFGOSRExitPreparation.h" 35 35 #include "LinkBuffer.h" 36 #include "OperandsInlines.h" 36 37 #include "Operations.h" 37 38 #include "RepatchBuffer.h" … … 39 40 40 41 namespace JSC { namespace DFG { 42 43 static CString shortOperandsDump(const Operands<ValueRecovery>& operands) 44 { 45 DumpContext context; 46 StringPrintStream out; 47 out.print(inContext(operands, &context)); 48 return out.toCString(); 49 } 41 50 42 51 extern "C" { … … 102 111 shouldShowDisassembly(), 103 112 patchBuffer, 104 ("DFG OSR exit #%u (%s, %s) from %s ",113 ("DFG OSR exit #%u (%s, %s) from %s, with operands = %s", 105 114 exitIndex, toCString(exit.m_codeOrigin).data(), 106 exitKindToString(exit.m_kind), toCString(*codeBlock).data())); 115 exitKindToString(exit.m_kind), toCString(*codeBlock).data(), 116 shortOperandsDump(operands).data())); 107 117 } 108 118
Note:
See TracChangeset
for help on using the changeset viewer.