Home | History | Annotate | Download | only in compiler

Lines Matching refs:arith

304   Node* arith = phi->InputAt(1);
306 if (arith->opcode() == IrOpcode::kJSAdd ||
307 arith->opcode() == IrOpcode::kSpeculativeNumberAdd) {
309 } else if (arith->opcode() == IrOpcode::kJSSubtract ||
310 arith->opcode() == IrOpcode::kSpeculativeNumberSubtract) {
317 if (arith->InputAt(0) != phi) {
318 if (arith->InputAt(0)->opcode() != IrOpcode::kJSToNumber ||
319 arith->InputAt(0)->InputAt(0) != phi) {
323 Node* incr = arith->InputAt(1);
325 InductionVariable(phi, arith, incr, initial, zone(), arithmeticType);