Changeset 157327 in webkit for trunk/Source/JavaScriptCore/dfg/DFGInPlaceAbstractState.cpp
- Timestamp:
- Oct 11, 2013, 6:35:49 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGInPlaceAbstractState.cpp
r156047 r157327 160 160 if (block->bytecodeBegin != m_graph.m_plan.osrEntryBytecodeIndex) 161 161 continue; 162 for (size_t i = 0; i < m_graph.m_plan.mustHandleValues.size(); ++i) { 163 AbstractValue value; 164 value.setMostSpecific(m_graph, m_graph.m_plan.mustHandleValues[i]); 165 int operand = m_graph.m_plan.mustHandleValues.operandForIndex(i); 162 for (size_t i = 0; i < m_graph.m_mustHandleAbstractValues.size(); ++i) { 163 AbstractValue value = m_graph.m_mustHandleAbstractValues[i]; 164 int operand = m_graph.m_mustHandleAbstractValues.operandForIndex(i); 166 165 block->valuesAtHead.operand(operand).merge(value); 167 166 #if DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE)
Note:
See TracChangeset
for help on using the changeset viewer.