Changeset 155783 in webkit for trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp
- Timestamp:
- Sep 14, 2013, 1:21:18 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp
r155745 r155783 1372 1372 } 1373 1373 1374 void SpeculativeJIT::compilePeepHoleInt egerBranch(Node* node, Node* branchNode, JITCompiler::RelationalCondition condition)1374 void SpeculativeJIT::compilePeepHoleInt32Branch(Node* node, Node* branchNode, JITCompiler::RelationalCondition condition) 1375 1375 { 1376 1376 BasicBlock* taken = branchNode->takenBlock(); … … 1416 1416 1417 1417 if (node->isBinaryUseKind(Int32Use)) 1418 compilePeepHoleInt egerBranch(node, branchNode, condition);1418 compilePeepHoleInt32Branch(node, branchNode, condition); 1419 1419 else if (node->isBinaryUseKind(NumberUse)) 1420 1420 compilePeepHoleDoubleBranch(node, branchNode, doubleCondition); … … 3585 3585 3586 3586 if (node->isBinaryUseKind(Int32Use)) { 3587 compileInt egerCompare(node, condition);3587 compileInt32Compare(node, condition); 3588 3588 return false; 3589 3589 } … … 3728 3728 if (branchIndexInBlock != UINT_MAX) { 3729 3729 Node* branchNode = m_block->at(branchIndexInBlock); 3730 compilePeepHoleInt egerBranch(node, branchNode, MacroAssembler::Equal);3730 compilePeepHoleInt32Branch(node, branchNode, MacroAssembler::Equal); 3731 3731 use(node->child1()); 3732 3732 use(node->child2()); … … 3735 3735 return true; 3736 3736 } 3737 compileInt egerCompare(node, MacroAssembler::Equal);3737 compileInt32Compare(node, MacroAssembler::Equal); 3738 3738 return false; 3739 3739 }
Note:
See TracChangeset
for help on using the changeset viewer.