Changeset 251669 in webkit for trunk/Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp
- Timestamp:
- Oct 28, 2019, 1:44:03 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp
r251584 r251669 15296 15296 15297 15297 m_out.appendTo(slowPath, continuation); 15298 results.append(m_out.anchor(m_out.call (Int32, m_out.operation(operationToInt32), doubleValue)));15298 results.append(m_out.anchor(m_out.callWithoutSideEffects(Int32, operationToInt32, doubleValue))); 15299 15299 m_out.jump(continuation); 15300 15300 … … 15336 15336 15337 15337 LBasicBlock lastNext = m_out.appendTo(slowPath, continuation); 15338 ValueFromBlock slowResult = m_out.anchor( 15339 m_out.call(Int32, m_out.operation(operationToInt32SensibleSlow), doubleValue)); 15338 ValueFromBlock slowResult = m_out.anchor(m_out.callWithoutSideEffects(Int32, operationToInt32SensibleSlow, doubleValue)); 15340 15339 m_out.jump(continuation); 15341 15340 … … 16030 16029 m_out.appendTo(doubleCase, continuation); 16031 16030 16032 LValue possibleResult = m_out.call( 16033 Int64, m_out.operation(operationConvertBoxedDoubleToInt52), boxedValue); 16031 LValue possibleResult = m_out.callWithoutSideEffects(Int64, operationConvertBoxedDoubleToInt52, boxedValue); 16034 16032 FTL_TYPE_CHECK( 16035 16033 jsValueValue(boxedValue), edge, SpecInt32Only | SpecAnyIntAsDouble,
Note:
See TracChangeset
for help on using the changeset viewer.