Changeset 220219 in webkit for trunk/Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp
- Timestamp:
- Aug 3, 2017, 12:17:13 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp
r220118 r220219 4675 4675 4676 4676 m_out.storePtr( 4677 m_out.constIntPtr(scratchSize), m_out.absolute(scratchBuffer->a ctiveLengthPtr()));4677 m_out.constIntPtr(scratchSize), m_out.absolute(scratchBuffer->addressOfActiveLength())); 4678 4678 4679 4679 LValue result = vmCall( … … 4682 4682 m_out.constIntPtr(m_node->numChildren())); 4683 4683 4684 m_out.storePtr(m_out.intPtrZero, m_out.absolute(scratchBuffer->a ctiveLengthPtr()));4684 m_out.storePtr(m_out.intPtrZero, m_out.absolute(scratchBuffer->addressOfActiveLength())); 4685 4685 4686 4686 setJSValue(result); … … 4837 4837 } 4838 4838 4839 m_out.storePtr(m_out.constIntPtr(scratchSize), m_out.absolute(scratchBuffer->a ctiveLengthPtr()));4839 m_out.storePtr(m_out.constIntPtr(scratchSize), m_out.absolute(scratchBuffer->addressOfActiveLength())); 4840 4840 LValue result = vmCall(Int64, m_out.operation(operationNewArrayWithSpreadSlow), m_callFrame, m_out.constIntPtr(buffer), m_out.constInt32(m_node->numChildren())); 4841 m_out.storePtr(m_out.constIntPtr(0), m_out.absolute(scratchBuffer->a ctiveLengthPtr()));4841 m_out.storePtr(m_out.constIntPtr(0), m_out.absolute(scratchBuffer->addressOfActiveLength())); 4842 4842 4843 4843 setJSValue(result);
Note:
See TracChangeset
for help on using the changeset viewer.