Changeset 277370 in webkit for trunk/Source/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- May 12, 2021, 8:48:26 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JIT.cpp
r277312 r277370 252 252 253 253 m_pcToCodeOriginMapBuilder.appendItem(label(), CodeOrigin(m_bytecodeIndex)); 254 255 #if ENABLE(OPCODE_SAMPLING)256 if (m_bytecodeIndex > 0) // Avoid the overhead of sampling op_enter twice.257 sampleInstruction(currentInstruction);258 #endif259 254 260 255 m_labels[m_bytecodeIndex.offset()] = label(); … … 748 743 Label beginLabel(this); 749 744 750 sampleCodeBlock(m_codeBlock);751 #if ENABLE(OPCODE_SAMPLING)752 sampleInstruction(m_codeBlock->instructions().begin());753 #endif754 755 745 int frameTopOffset = stackPointerOffsetFor(m_codeBlock) * sizeof(Register); 756 746 unsigned maxFrameSize = -frameTopOffset;
Note:
See TracChangeset
for help on using the changeset viewer.