Lines Matching defs:CmpLHS
578 Instruction *CmpLHS = dyn_cast<Instruction>(CI->getOperand(0));
579 PHINode *CmpPHI = dyn_cast<PHINode>(CmpLHS);
583 while (!CmpPHI && CmpLHS && isa<BinaryOperator>(CmpLHS) &&
584 isa<Constant>(CmpLHS->getOperand(1))) {
586 if (!L->contains(CmpLHS))
588 InstChain.push_back(cast<BinaryOperator>(CmpLHS));
589 CmpLHS = dyn_cast<Instruction>(CmpLHS->getOperand(0));
590 if (CmpLHS)
591 CmpPHI = dyn_cast<PHINode>(CmpLHS);