Changeset 251534 in webkit for trunk/Source/JavaScriptCore/jit/JITInlines.h
- Timestamp:
- Oct 24, 2019, 2:06:58 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITInlines.h
r251468 r251534 126 126 ALWAYS_INLINE void JIT::updateTopCallFrame() 127 127 { 128 #if USE(JSVALUE32_64) 129 const Instruction* instruction = m_codeBlock->instructions().at(m_bytecodeIndex.offset()).ptr(); 130 uint32_t locationBits = CallSiteIndex(BytecodeIndex(bitwise_cast<uint32_t>(instruction))).bits(); 131 #else 128 132 uint32_t locationBits = CallSiteIndex(m_bytecodeIndex).bits(); 133 #endif 129 134 store32(TrustedImm32(locationBits), tagFor(CallFrameSlot::argumentCount)); 130 135
Note:
See TracChangeset
for help on using the changeset viewer.