Changeset 129948 in webkit for trunk/Source/JavaScriptCore/dfg
- Timestamp:
- Sep 28, 2012, 1:57:47 PM (13 years ago)
- Location:
- trunk/Source/JavaScriptCore/dfg
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r129713 r129948 228 228 nodeIndex = nodePtr->child1().index(); 229 229 230 return injectLazyOperandSpeculation(addToGraph(GetLocal, OpInfo(nodePtr->variableAccessData()), nodeIndex)); 230 NodeIndex newGetLocal = injectLazyOperandSpeculation( 231 addToGraph(GetLocal, OpInfo(nodePtr->variableAccessData()), nodeIndex)); 232 m_currentBlock->variablesAtTail.local(operand) = newGetLocal; 233 return newGetLocal; 231 234 } 232 235 -
trunk/Source/JavaScriptCore/dfg/DFGConstantFoldingPhase.cpp
r126715 r129948 180 180 else { 181 181 ASSERT(m_graph[tailNodeIndex].op() == Flush 182 || m_graph[tailNodeIndex].op() == SetLocal); 182 || m_graph[tailNodeIndex].op() == SetLocal 183 || node.variableAccessData()->isCaptured()); 183 184 } 184 185 }
Note:
See TracChangeset
for help on using the changeset viewer.