Home | History | Annotate | Download | only in compiler

Lines Matching refs:node2

412 bool IsEquivalentPhi(Node* node1, Node* node2) {
413 if (node1 == node2) return true;
414 if (node1->opcode() != IrOpcode::kPhi || node2->opcode() != IrOpcode::kPhi ||
415 node1->op()->ValueInputCount() != node2->op()->ValueInputCount()) {
420 Node* input2 = NodeProperties::GetValueInput(node2, i);