Home | History | Annotate | Download | only in compiler

Lines Matching full:node1

303 bool IsEquivalentPhi(Node* node1, Node* node2) {
304 if (node1 == node2) return true;
305 if (node1->opcode() != IrOpcode::kPhi || node2->opcode() != IrOpcode::kPhi ||
306 node1->op()->ValueInputCount() != node2->op()->ValueInputCount()) {
309 for (int i = 0; i < node1->op()->ValueInputCount(); ++i) {
310 Node* input1 = NodeProperties::GetValueInput(node1, i);