Lines Matching full:phi_operand
2035 * This method detects if phi is an induction variable, with phi_operand as
2038 * It cheks is phi_operand has the form "phi + constant".
2044 HValue* phi_operand) {
2045 if (!phi_operand->representation().IsInteger32()) return 0;
2047 if (phi_operand->IsAdd()) {
2048 HAdd* operation = HAdd::cast(phi_operand);
2056 } else if (phi_operand->IsSub()) {
2057 HSub* operation = HSub::cast(phi_operand);