Changeset 274024 in webkit for trunk/Source/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- Mar 5, 2021, 6:25:48 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JIT.cpp
r272580 r274024 273 273 if (UNLIKELY(Options::traceBaselineJITExecution())) { 274 274 CodeBlock* codeBlock = m_codeBlock; 275 probe ([=] (Probe::Context& ctx) {275 probeDebug([=] (Probe::Context& ctx) { 276 276 dataLogLn("JIT [", bytecodeOffset, "] ", opcodeNames[opcodeID], " cfr ", RawPointer(ctx.fp()), " @ ", codeBlock); 277 277 }); … … 544 544 unsigned bytecodeOffset = m_bytecodeIndex.offset(); 545 545 CodeBlock* codeBlock = m_codeBlock; 546 probe ([=] (Probe::Context& ctx) {546 probeDebug([=] (Probe::Context& ctx) { 547 547 dataLogLn("JIT [", bytecodeOffset, "] SLOW ", opcodeNames[opcodeID], " cfr ", RawPointer(ctx.fp()), " @ ", codeBlock); 548 548 });
Note:
See TracChangeset
for help on using the changeset viewer.