Changeset 165098 in webkit for trunk/Source/JavaScriptCore/dfg/DFGFixupPhase.cpp
- Timestamp:
- Mar 4, 2014, 11:25:02 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGFixupPhase.cpp
r165085 r165098 433 433 break; 434 434 } 435 if (node->child1()->shouldSpeculateMisc() && node->child2()->shouldSpeculateMisc()) {436 fixEdge<MiscUse>(node->child1());437 fixEdge<MiscUse>(node->child2());438 break;439 }440 435 break; 441 436 } … … 458 453 node->setArrayMode( 459 454 node->arrayMode().refine( 460 m_graph, node ,455 m_graph, node->origin.semantic, 461 456 node->child1()->prediction(), 462 457 node->child2()->prediction(), … … 516 511 node->setArrayMode( 517 512 node->arrayMode().refine( 518 m_graph, node ,513 m_graph, node->origin.semantic, 519 514 child1->prediction(), 520 515 child2->prediction(), … … 602 597 node->setArrayMode( 603 598 node->arrayMode().refine( 604 m_graph, node ,599 m_graph, node->origin.semantic, 605 600 node->child1()->prediction() & SpecCell, 606 601 SpecInt32, … … 1756 1751 1757 1752 arrayMode = arrayMode.refine( 1758 m_graph, node , node->child1()->prediction(), node->prediction());1753 m_graph, node->origin.semantic, node->child1()->prediction(), node->prediction()); 1759 1754 1760 1755 if (arrayMode.type() == Array::Generic) {
Note:
See TracChangeset
for help on using the changeset viewer.